﻿@import url('open-iconic/font/css/open-iconic-bootstrap.min.css');
@import url('../fonts/raleway.css');
/*@import url('../fonts/lobster.css');*/
@import url('https://fonts.googleapis.com/css2?family=Lobster&display=swap');
@font-face {
    font-family: 'Material Icons';
    font-style: normal;
    font-weight: 400;
    src: local("Material Icons"), local("MaterialIcons-Regular"), url("../fonts/MaterialIcons-Regular.woff") format("woff");
}

/*html, body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    height: 100%;
}*/

html, body {
    font-family: 'raleway', sans-serif;
    font-weight: 500;
    height: 100%;
}

.box-nodata {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: rgba(240,240,240,1);
    padding: 30px;
    z-index: 44444;
}
    .box-nodata h2 {
        color: #e96208;
    }

.centered {
    position: fixed;
    top: 50%;
    left: 50%;
    /* bring your own prefixes */
    transform: translate(-50%, -50%);
}

a, .btn-link {
    color: #0366d6;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

app {
    position: relative;
    display: flex;
    flex-direction: column;
}

.top-row {
    height: 3.5rem;
    display: flex;
    align-items: center;
}

.top-row2 {
    height: 3.5rem;
    display: flex;
    align-items: center;
}

.main {
    flex: 1;
}

    .main .top-row {
        background-color: #f7f7f7;
        border-bottom: 1px solid #d6d5d5;
        justify-content: flex-end;
    }

        .main .top-row > a, .main .top-row .btn-link {
            white-space: nowrap;
            margin-left: 1.5rem;
        }

        .main .top-row a:first-child {
            overflow: hidden;
            text-overflow: ellipsis;
        }

.sidebar {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

    .sidebar .top-row {
        background-color: rgba(0,0,0,0.4);
    }

    .sidebar .navbar-brand {
        font-size: 1.1rem;
    }

    .sidebar .oi {
        width: 2rem;
        font-size: 1.1rem;
        vertical-align: text-top;
        top: -2px;
    }

    .sidebar .nav-item {
        font-size: 0.9rem;
        padding-bottom: 0.5rem;
    }

        .sidebar .nav-item:first-of-type {
            padding-top: 1rem;
        }

        .sidebar .nav-item:last-of-type {
            padding-bottom: 1rem;
        }

        .sidebar .nav-item a {
            color: #d7d7d7;
            border-radius: 4px;
            height: 3rem;
            display: flex;
            align-items: center;
            line-height: 3rem;
        }

            .sidebar .nav-item a.active {
                background-color: rgba(255,255,255,0.25);
                color: white;
            }

            .sidebar .nav-item a:hover {
                background-color: rgba(255,255,255,0.1);
                color: white;
            }

.content {
    padding-top: 1.1rem;
}

.navbar-toggler {
    background-color: rgba(255, 255, 255, 0.1);
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid red;
}

.validation-message {
    color: red;
}

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

@media (max-width: 767.98px) {
    .main .top-row:not(.auth) {
        display: none;
    }

    .main .top-row.auth {
        justify-content: space-between;
    }

    .main .top-row a, .main .top-row .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 768px) {
    app {
        flex-direction: row;
    }

    .sidebar {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .main .top-row {
        position: sticky;
        top: 0;
    }

    .main > div {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }

    .navbar-toggler {
        display: none;
    }

    .sidebar .collapse {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
}

.buttonhome-section {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
}

.loading-section {
    text-align: center;
    /*height: 80vh;*/
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: rgba(240,240,240,1);
    padding: 30px;
    z-index: 44444;
}

    .loading-section h2 {
        color: #e96208;
    }

.loader-dot {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background-color: #e96208;
    display: inline-block;
    -webkit-animation: grow 2.1s infinite ease-in-out both;
    animation: grow 2.1s infinite ease-in-out both;
}

    .loader-dot.dot1 {
        -webkit-animation-delay: -0.96s;
        animation-delay: -0.96s;
    }

    .loader-dot.dot2 {
        -webkit-animation-delay: -0.48s;
        animation-delay: -0.48s;
    }

.error-section {
    text-align: center;
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .error-section h2 {
        color: #cf2254;
    }

@-webkit-keyframes grow {
    0%, 80%, 100% {
        -webkit-transform: scale(0)
    }

    40% {
        -webkit-transform: scale(1.0)
    }
}

.tb-icon-container {
    position: relative;
}

    /* these rules position the icon. Update with your own selector if you add HTML elements for click events */
    .tb-icon-container .k-icon {
        position: absolute;
        z-index: 1;
        top: 0;
        left: 0.5em;
    }

    /* no floating label */
    .tb-icon-container input.k-textbox,
    /* for the floating label */
    .tb-icon-container .k-textbox input,
    .tb-icon-container .k-state-empty .k-label {
        padding-left: 2em;
    }

    /* this rule also positions the icon for the floating label scenario, tweak it with your own selectors if you use other HTML */
    .tb-icon-container.with-label .k-icon {
        top: 0.5em;
    }

/* iPhone X in landscape */
@media only screen and (min-device-width : 375px) and (max-device-width : 812px) and (-webkit-device-pixel-ratio : 3) and (orientation : landscape) {
    /* STYLES GO HERE */
}

/* iPhone X in portrait */
@media only screen and (min-device-width : 375px) and (max-device-width : 812px) and (-webkit-device-pixel-ratio : 3) and (orientation : portrait) {
    /* STYLES GO HERE */
}

/* iPhone 6, 7, & 8 in landscape */
@media only screen and (min-device-width : 375px) and (max-device-width : 667px) and (orientation : landscape) {
    /* STYLES GO HERE */
}

/* iPhone 6, 7, & 8 in portrait */
@media only screen and (min-device-width : 375px) and (max-device-width : 667px) and (orientation : portrait) {
    /* STYLES GO HERE */
}

/* iPhone 6, 7, & 8 Plus in landscape */
@media only screen and (min-device-width : 414px) and (max-device-width : 736px) and (orientation : landscape) {
    /* STYLES GO HERE */
}

/* iPhone 6, 7, & 8 Plus in portrait */
@media only screen and (min-device-width : 414px) and (max-device-width : 736px) and (orientation : portrait) {
    /* STYLES GO HERE */
}

/* iPhone 5 & 5S in landscape */
@media only screen and (min-device-width : 320px) and (max-device-width : 568px) and (orientation : landscape) { /* STYLES GO HERE */
}

/* iPhone 5 & 5S in portrait */
@media only screen and (min-device-width : 320px) and (max-device-width : 568px) and (orientation : portrait) { /* STYLES GO HERE */
}


lesson-info {
    border-radius: 0.5rem;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    background: linear-gradient(rgba(0,0,0,0.7) 30%, rgba(0,0,0,0) 80%);
    padding: 1rem 1rem;
    color: #fff2cc;
    cursor: pointer;
    text-shadow: 0 2px 2px rgba(0,0,0,0.5);
    line-height: 1.25rem;
}

.lesson-info .title {
    color: black;
    font-size: 1.4rem;
    display: block;
    margin: 0.2rem 0 0.4rem 0;
    font-family: 'Playfair Display', italic;
}

.lesson-info .price {
    position: absolute;
    bottom: 0.5rem;
    right: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    padding: 0rem 0.7rem;
    border-radius: 4px;
    background-color: #08af08;
    color: white;
    line-height: 2rem;
}

/*.price::before {
    content: '€';
    font-weight: 300;
    font-size: 1.2rem;
    margin-right: 0.2rem;
}*/


.button-home {
    width: 300px;
    margin: 3px 0;
}

/* Colori */
.button-color1 {
    border-color: #3c342e !important;
    background-color: #3c342e !important;
    color: #fff !important;
}

    .button-color1:hover {
        color: #fff !important;
        background-color: #e96208 !important;
    }

    .button-color1:disabled,
    .button-color1[disabled] {
        color: #fff !important;
        background-color: #aaaaaa !important;
    }

.button-color2 {
    border-color: #cf2254 !important;
    background-color: #cf2254 !important;
    color: #fff !important;
}

    .button-color2:hover {
        color: #fff !important;
        background-color: #e96208 !important;
    }

    .button-color2:disabled {
        color: #fff !important;
        background-color: #aaaaaa !important;
    }

.button-color3 {
    border-color: #d9531e !important;
    background-color: #d9531e !important;
    color: #fff !important;
}

    .button-color3:hover {
        color: #fff !important;
        background-color: #e96208 !important;
    }

    .button-color3:disabled {
        color: #fff !important;
        background-color: #aaaaaa !important;
    }

.button-color4 {
    border-color: #0094d9 !important;
    background-color: #0094d9 !important;
    color: #fff !important;
}

    .button-color4:hover {
        color: #fff !important;
        background-color: #e96208 !important;
    }

    .button-color4:disabled {
        color: #fff !important;
        background-color: #aaaaaa !important;
    }

.button-color5 {
    border-color: #0069b4 !important;
    background-color: #0069b4 !important;
    color: #fff !important;
}

    .button-color5:hover {
        color: #fff !important;
        background-color: #e96208 !important;
    }

    .button-color5:disabled {
        color: #fff !important;
        background-color: #aaaaaa !important;
    }

.button-color6 {
    border-color: #0082cb !important;
    background-color: #0082cb !important;
    color: #fff !important;
}

    .button-color6:hover {
        color: #fff !important;
        background-color: #e96208 !important;
    }

    .button-color6:disabled {
        color: #fff !important;
        background-color: #aaaaaa !important;
    }

.button-color7 {
    border-color: #3e4f5c !important;
    background-color: #3f5769 !important;
    color: #fff !important;
}

    .button-color7:hover {
        color: #fff !important;
        background-color: #e96208 !important;
    }

    .button-color7:disabled,
    .button-color7[disabled] {
        color: #fff !important;
        background-color: #aaaaaa !important;
    }

.button-color8 {
    border-color: #3e4f5c !important;
    background-color: #3e4f5c !important;
    color: #fff !important;
}

    .button-color8:hover {
        color: #fff !important;
        background-color: #e96208 !important;
    }

.button-color9 {
    border-color: #978b87 !important;
    background-color: #978b87 !important;
    color: #fff !important;
}

    .button-color9:hover {
        color: #fff !important;
        background-color: #e96208 !important;
    }

.button-color10 {
    border-color: #867874 !important;
    background-color: #867874 !important;
    color: #fff !important;
}

    .button-color10:hover {
        color: #fff !important;
        background-color: #e96208 !important;
    }

.button-color11 {
    border-color: #746661 !important;
    background-color: #746661 !important;
    color: #fff !important;
}

    .button-color11:hover {
        color: #fff !important;
        background-color: #e96208 !important;
    }

.button-color12 {
    border-color: #5c5048 !important;
    background-color: #5c5048 !important;
    color: #fff !important;
}

    .button-color12:hover {
        color: #fff !important;
        background-color: #e96208 !important;
    }

.button-color13 {
    border-color: #e1dcd9 !important;
    background-color: #e1dcd9 !important;
    color: #000 !important;
}

    .button-color13:hover {
        color: #fff !important;
        background-color: #e96208 !important;
    }

.button-color14 {
    border-color: #c5bbb6 !important;
    background-color: #c5bbb6 !important;
    color: #000 !important;
}

    .button-color14:hover {
        color: #fff !important;
        background-color: #e96208 !important;
    }

.button-color15 {
    border-color: #b0a6a2 !important;
    background-color: #b0a6a2 !important;
    color: #fff !important;
}

    .button-color15:hover {
        color: #fff !important;
        background-color: #e96208 !important;
    }

.button-color16 {
    border-color: #a89d99 !important;
    background-color: #a89d99 !important;
    color: #fff !important;
}

    .button-color16:hover {
        color: #fff !important;
        background-color: #e96208 !important;
    }

.button-color17 {
    border-color: #9f9490 !important;
    background-color: #9f9490 !important;
    color: #fff !important;
}

    .button-color17:hover {
        color: #fff !important;
        background-color: #e96208 !important;
    }

.button-color18 {
    border-color: #e1e1e1 !important;
    background-color: #e1e1e1 !important;
    color: #fff !important;
}

    .button-color18:hover {
        color: #fff !important;
        background-color: #e96208 !important;
    }

.button-color19 {
    border-color: #e96208 !important;
    background-color: #e96208 !important;
    color: #fff !important;
}

    .button-color19:hover {
        color: #fff !important;
        background-color: #e96208 !important;
    }

    .button-color19:disabled {
        color: #fff !important;
        background-color: #aaaaaa !important;
    }

.button-color20 {
    border-color: #919da9 !important;
    background-color: #9faab4 !important;
    color: #fff !important;
}

    .button-color20:hover {
        color: #fff !important;
        background-color: #e96208 !important;
    }

    .button-color20:disabled {
        color: #fff !important;
        background-color: #aaaaaa !important;
    }

@media(hover: hover) and (pointer: fine) {
    .button-color1:hover {
        color: #fff !important;
        background-color: #e96208 !important;
    }

    .button-color2:hover {
        color: #fff !important;
        background-color: #e96208 !important;
    }

    .button-color18:hover {
        color: #fff !important;
        background-color: #e96208 !important;
    }

    .button-color19:hover {
        color: #fff !important;
        background-color: #e96208 !important;
    }
}

.black {
    color: #000 !important
}

.dark {
    color: #333 !important
}

.white {
    color: #fff !important
}

.red {
    color: #f00 !important
}

.red2 {
    color: #e08374 !important
}

.light-red {
    color: #f77 !important
}

.blue {
    color: #478fca !important
}

.light-blue {
    color: #93cbf9 !important
}

.green {
    color: #69aa46 !important
}

.light-green {
    color: #b0d877 !important
}

.orange {
    color: #ff892a !important
}

.orange2 {
    color: #feb902 !important
}

.light-orange {
    color: #fcac6f !important
}

.purple {
    color: #a069c3 !important
}

.pink {
    color: #c6699f !important
}

.pink2 {
    color: #d6487e !important
}

.brown {
    color: #a52a2a !important
}

.grey {
    color: #777 !important
}

.light-grey {
    color: #bbb !important
}

.color15 {
    color: #b0a6a2 !important
}

.iconborder {
    margin-right: 5px;
    margin-left: 5px
}

/*.some-page-wrapper {
    margin: 15px;
    background-color: red;
}*/

.rowlezioni {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
}

.column {
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
    flex: 1;
}

.ten-column {
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
    flex: 75;
}

.calendario-column {
    height: 60px;
    margin-right: 10px;
}

.lezioni-column {
    height: 100%;
}

.header-title {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
}

.button-info {
    background-color: transparent !important;
}

.loader-size-title {
    display: block;
    margin-bottom: 10px;
}

.loader-container {
    text-align: center;
    width: 250px;
    display: inline-table;
    padding-top: 10px;
}





.track-order-body {
    flex-grow: 1;
    display: flex;
}

.track-order-details {
    overflow-y: auto;
    padding: 1.5rem 3rem;
    flex-grow: 1;
}

.track-order-map {
    width: 350px;
    flex-shrink: 0;
}

.blink_me {
    animation: blinker 1s linear infinite;
    font-size: 10px;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

/*Radzen notifiche*/
/*.material-icons, .ui-datatable .fa-chevron-circle-right, .ui-datatable .fa-chevron-circle-down, .ui-sortable-column .fa, .ui-datatable-header .fa-plus, .ui-datatable-loading-content .fa-circle-o-notch,
.pi,
.ui-menuitem .ui-menuitem-icon {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 1.5em;
    display: inline-block;
    width: 1em;
    height: 1em;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'liga';
}*/

/* Preferred icon size */
.rzi, .rz-column-drag, .rz-datatable-loading-content .rzi-circle-o-notch, .rz-datatable-header .rzi-plus, .rz-sortable-column .rzi-grid-sort, .rz-datatable .rzi-chevron-circle-down, .rz-datatable .rzi-chevron-circle-right, .rz-fileupload-row .rz-button .rzi-close, .rz-fileupload-row .rz-paginator-element .rzi-close,
.rz-fileupload-row .rz-button .rzi-times,
.rz-fileupload-row .rz-paginator-element .rzi-times,
.rz-fileupload-row .rz-button .rz-icon-trash,
.rz-fileupload-row .rz-paginator-element .rz-icon-trash, .rz-menuitem .rz-menuitem-icon {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 1.25rem;
    display: inline-block;
    width: 1em;
    height: 1em;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    /* Support for all WebKit browsers. */
    -webkit-font-smoothing: antialiased;
    /* Support for Safari and Chrome. */
    text-rendering: optimizeLegibility;
    /* Support for Firefox. */
    -moz-osx-font-smoothing: grayscale;
    /* Support for IE. */
    font-feature-settings: 'liga';
}

.rz-growl {
    position: fixed;
    top: 100px;
    right: 20px;
    min-width: 20rem;
}

.rz-growl-item {
    border-radius: 4px;
    padding: 1rem 1.25rem;
}

.rz-growl-message-success .rz-growl-item {
    background-color: #5dbf74;
}

.rz-growl-message-warn .rz-growl-item {
    background-color: #e6c54f;
}

.rz-growl-message-error .rz-growl-item {
    background-color: #f9777f;
}

.rz-growl-message-info .rz-growl-item {
    background-color: #68d5c8;
}

.rz-growl-item {
    margin: 1rem 0;
    color: #ffffff;
}

    .rz-growl-item p {
        color: inherit;
    }

.rz-growl-icon-close {
    float: right;
}

    .rz-growl-icon-close:before {
        content: "close";
    }

.rz-growl-image {
    float: left;
    margin: 0 0.625rem 0 0;
}

    .rz-growl-image.pi-check:before {
        content: "check";
    }

    .rz-growl-image.pi-exclamation-triangle:before {
        content: "warning";
    }

    .rz-growl-image.pi-info-circle:before {
        content: "info";
    }

    .rz-growl-image.pi-times:before {
        content: "error";
    }

.rz-growl-title {
    font-weight: bold;
}

.rz-growl-message p {
    /*display: inline-block;*/
    margin-bottom: 0;
}

/*.rz-growl {
    position: fixed;
    top: 100px;
    right: 20px;
    min-width: 20rem;
}

.rz-growl-item {
    border-radius: 4px;
    padding: 1rem 1.25rem;
}

.rz-growl-message-success .rz-growl-item {
    background-color: #5dbf74;
}

.rz-growl-message-warn .rz-growl-item {
    background-color: #e6c54f;
}

.rz-growl-message-error .rz-growl-item {
    background-color: #f9777f;
}

.rz-growl-message-info .rz-growl-item {
    background-color: #68d5c8;
}

.rz-growl-item {
    margin: 1rem 0;
    color: #ffffff;
}

    .rz-growl-item p {
        color: inherit;
    }

.rz-growl-icon-close {
    float: right;
}

    .rz-growl-icon-close:before {
        content: "close";
    }

.rz-growl-image {
    float: left;
    margin: 0 0.625rem 0 0;
}

    .rz-growl-image.rzi-check:before {
        content: "check";
    }

    .rz-growl-image.rzi-exclamation-triangle:before {
        content: "warning";
    }

    .rz-growl-image.rzi-info-circle:before {
        content: "info";
    }

    .rz-growl-image.rzi-times:before {
        content: "error";
    }

.rz-growl-title {
    font-weight: bold;
}

.rz-growl-message p {
    display: inline-block;
    margin-bottom: 0;
}*/

.container_barcode {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.testo-locandina {
    font-family: 'lobster', cursive;
    font-size: 2rem;
}

.bordo-locandina {
    border: 2px;
    border-radius: 20px;
    box-shadow: none;
    margin-bottom: 10px;
    margin-right: 5px;
}