@charset "UTF-8";

/*
primary: #00f261
secondary: #112c40
gragio-chiaro: f7f7f7
*/
#test {
    color: red;
}

.example {
    display: grid;
    transition: all 0.5s;
    user-select: none;
    background: linear-gradient(to bottom, white, black);
}

#postTitle {
    background-color: lightblue;
}

/*  ***************************************************************
    SWITCH  
***************************************************************** */
.switch {
    position: relative;
    height: 42px;
    width: 350px;
    margin: 5px 0 20px 0;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 3px;
    -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3), 0 1px rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3), 0 1px rgba(255, 255, 255, 0.1);
}

.switch-label {
    position: relative;
    z-index: 2;
    float: left;
    width: 175px;
    line-height: 26px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
    text-align: center;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.45);
    cursor: pointer;
    font-size: 24px;
    line-height: 42px;
}

.switch-label:active {
    font-weight: bold;
}

.switch-label-off {
    padding-left: 2px;
}

.switch-label-on {
    padding-right: 2px;
}

.switch-input {
    display: none;
}

.switch-input:checked+.switch-label {
    font-weight: bold;
    color: rgba(0, 0, 0, 0.65);
    text-shadow: 0 1px rgba(255, 255, 255, 0.25);
    -webkit-transition: 0.15s ease-out;
    -moz-transition: 0.15s ease-out;
    -ms-transition: 0.15s ease-out;
    -o-transition: 0.15s ease-out;
    transition: 0.15s ease-out;
    -webkit-transition-property: color, text-shadow;
    -moz-transition-property: color, text-shadow;
    -ms-transition-property: color, text-shadow;
    -o-transition-property: color, text-shadow;
    transition-property: color, text-shadow;
}

.switch-input:checked+.switch-label-on~.switch-selection {
    left: 175px;
    /* Note: left: 50%; doesn't transition in WebKit */
}

.switch-selection {
    position: absolute;
    z-index: 1;
    top: 2px;
    left: 2px;
    display: block;
    width: 175px;
    height: 38px;
    border-radius: 3px;
    background-color: #00F261;
    -webkit-box-shadow: inset 0 1px rgba(255, 255, 255, 0.5), 0 0 2px rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.5), 0 0 2px rgba(0, 0, 0, 0.2);
    -webkit-transition: left 0.15s ease-out;
    -moz-transition: left 0.15s ease-out;
    -ms-transition: left 0.15s ease-out;
    -o-transition: left 0.15s ease-out;
    transition: left 0.15s ease-out;
}

.required {
    color: red;
}

div.dicitura {
    font-size: small;
}

.form-group {
    margin-bottom: 15px;
}



.alert-box {
    padding: 10px;
    margin-bottom: 15px;
    background: #f7f7f7;
    border-radius: 5px;
}

/*  ***************************************************************
    Buttons
***************************************************************** */
.ugt-btn {
    padding: 10px 18px;
    display: inline-block;
    margin: 0;
    transition: all 0.23s ease-in-out 0s;
    box-sizing: border-box;
    font-size: 13px;
    border: none;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

.ugt-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed !important;
}

.ugt-btn-sm {
    font-size: 18px;
    padding: 12px 22px;
}

.ugt-btn-lg {
    font-size: 20px;
    padding: 15px 25px;
}

.ugt-btn-primary {
    color: #fff;
    background-color: #00f261;
}

.ugt-btn-primary:hover {
    background-color: #00b84a;
    cursor: pointer;
}

.woocommerce .ugt-btn-secondary {
    background: #fff !important;
    border: transparent !important;
    color: #112c40 !important;
}

.ugt-btn-secondary {
    background: #fff !important;
    border: transparent !important;
    color: #112c40 !important;
}

.ugt-btn-secondary:hover,
.ugt-btn-secondary:focus {
    background-color: #c9c9c9 !important;
    color: #112c40 !important;
}

.ugt-btn-secondary-outline.active {
    background-color: #112c40 !important;
    color: #fff !important;
}

.woocommerce .ugt-btn-secondary-outline {
    background: #fff !important;
    border: 1px solid #112c40 !important;
    color: #112c40 !important;
}

.ugt-btn-secondary-outline {
    background: #fff !important;
    border: 1px solid #112c40 !important;
    color: #112c40 !important;
}

.ugt-btn-secondary-outline:hover,
.ugt-btn-secondary-outline:focus {
    background-color: #c9c9c9 !important;
    color: #112c40 !important;
}

.ugt-btn-secondary-outline.active {
    background-color: #112c40 !important;
    color: #fff !important;
}

/*  ***************************************************************
    FAQ
***************************************************************** */
.entry-content .faq-list,
.entry-content .faq-list li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.entry-content .faq-list ul {
    margin-left: 0;
}

.entry-content .faq-list li {
    border: none;
    border-radius: 3px;
    background: #fff;
    margin-bottom: 15px;
    -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;
    -webkit-box-shadow: 0px 5px 30px 0px rgba(38, 50, 56, 0.15);
    -moz-box-shadow: 0px 5px 30px 0px rgba(38, 50, 56, 0.15);
    box-shadow: 0px 5px 30px 0px rgba(38, 50, 56, 0.15);
}

.entry-content .faq-list li:hover {
    -webkit-box-shadow: 0px 3px 10px 0px rgba(38, 50, 56, 0.15);
    -moz-box-shadow: 0px 3px 10px 0px rgba(38, 50, 56, 0.15);
    box-shadow: 0px 3px 10px 0px rgba(38, 50, 56, 0.15);
}

.entry-content .faq-list li .question {
    display: block;
    font-weight: 500;
    border: none;
    padding: 25px 35px 22px 60px;
    position: relative;
}

.entry-content .faq-list li .question.on {
    background: #F5F7F8;
    border-top-right-radius: 3px;
    border-top-left-radius: 3px;
    color: #263238;
}

.entry-content .faq-list li .question:before {
    content: "";
    font-family: "dashicons";
    color: #CFD8DC;
    left: 25px;
    margin-right: 10px;
    position: absolute;
    top: 29px;
}

.entry-content .faq-list li .question.on:before {
    content: "";
    font-family: "dashicons";
}

.single-post .entry-content .faq-list li .answer {
    border-top: 1px solid #ECEFF1;
    display: none;
    font-size: 16px;
    padding: 25px 35px 25px;
}

.ugt-card {
    background: #fff;
    border-radius: 5px;
    border: 2px solid #000;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
    padding: 20px;
    position: relative;
    justify-content: center;
}

/*  ***************************************************************
    Sezione ricompensa
***************************************************************** */
.ugt-section-reward {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.ugt-section-reward .ugt-card {
    margin: 15px;
    text-align: center;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1 1 300px;
    max-width: 480px;
    transition: all 0.23s ease-in-out 0s;
}

.ugt-section-reward .ugt-card.active {
    box-shadow: 0 7px 18px 0 rgba(0, 0, 0, 0.5);
}

.ugt-section-reward .ugt-card .ugt-card-body {
    flex-grow: 1;
}

.ugt-section-reward .ugt-card-footer button {
    display: block;
    width: 100%;
}

.ugt-section-reward-head {
    text-align: center;
}

.ugt-section-reward-foot {
    text-align: center;
    margin-bottom: 60px;
}

.ugt-section-reward-result .ugt-card {
    min-height: 0;
}

/*  ***************************************************************
    Typo
***************************************************************** */
.ugt-h1 {
    font-size: 40px;
}

.ugt-h2 {
    font-size: 32px;
}

.ugt-h3 {
    font-size: 28px;
}

.ugt-h4 {
    font-size: 24px;
}

.ugt-h5 {
    font-size: 20px;
}

.ugt-h6 {
    font-size: 16px;
}

.ugt-text-bold {
    font-weight: bold;
}

/*
.label-tabella {
    font-family: "Muli";
    font-weight: 800;
    font-size: 16px;
    color: #112c40;
  }
  */

.ugt-table-data th {
    font-weight: 800;
    font-size: 16px;
    color: #112c40;
    text-align: left;
}

.ugt-table-data td {
    text-align: right;
}

@media screen and (max-width: 680px) {
    .ugt-table-data {
        display: block;
    }
    .ugt-table-data th {
        padding-top: 15px;
        padding-bottom: 0px;
    }
    .ugt-table-data td {
        padding-top: 0px;
        padding-bottom: 15px;
    }
    .ugt-table-data th, .ugt-table-data td {
        display: block;
        text-align: left;
        padding-left: 0;
        padding-right: 0;
    }
}



/*  ***************************************************************
    Grid
***************************************************************** */
.ugt-container-fluid {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.ugt-row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.ugt-col {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;

    position: relative;
    padding-right: 15px;
    padding-left: 15px;
}

/*  ***************************************************************
    Override template
***************************************************************** */
/* /**
*   Single prodotto

.woocommerce #content div.product div.summary,
.woocommerce div.product div.summary,
.woocommerce-page #content div.product div.summary,
.woocommerce-page div.product div.summary {
    float: none !important;
    width: 100% !important;
}

.ugt-product-row {
    justify-content: center;
}

.ugt-product-content {
    flex-grow: 1;
    flex-basis: auto;
    padding-left: 0;
}
@media screen and (max-width: 680px) {
    .ugt-product-content {
        padding-right: 0;
        padding-left: 0;
    }
}

.ugt-product-sidebar {
    flex-basis: 380px;
    flex-grow: 0;
}

#copisteria-info p {
    margin-bottom: 15px;
}
.ugt-consto-stampa {
    display: flex;
    align-items: center;
}
.ugt-consto-stampa .price {
    font-size: 34px;
    margin-left: 10px;
    font-weight: bold;
}

#cart-buttons button {
    display: block;
    width: 100%;
    margin-bottom: 10px;
}
#cart-buttons a {
    display: block;
    width: 100%;
    margin-bottom: 10px;
}
*/

/*  ***************************************************************
    Carrello
***************************************************************** */
.product-quantity input {
    border: 0;
}
.product-quantity input::-webkit-outer-spin-button,
.product-quantity input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}

.product-quantity input[type=number] {
    -moz-appearance:textfield; /* Firefox */
}

/* .woocommerce-product-gallery__image--placeholder{
    display: none;
}

.woocommerce-product-gallery{
    display: none;
} */

.woocommerce-cart table.cart .product-price {
    width: 140px;
}

.product-quantity{
    display: none;
}

.ugt-product-content{
    flex-grow: 1;
    flex-basis: 400px;
    padding-left: 0;
}

#pageloader {
    background: rgba( 255, 255, 255, 0.8 );
    display: none;
    height: 100vh;
    width: 100vw;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.ugt-show{
    display: flex !important;
    align-items: center;
    justify-content: center;
} 

