@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500&family=Roboto+Condensed:wght@300;400;700&display=swap');
/*
    font-family: 'Poppins', sans-serif;
    font-family: 'Roboto Condensed', sans-serif;
*/

.loader {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 50%;
    margin-left: -30px;
    border: 10px solid #dadada; /* Light grey */
    border-top: 10px solid #212121; /* Blue */
    border-radius: 50%;
    width:60px;
    height: 60px;
    animation: spin 2s linear infinite;
    display: none;
    opacity: .5;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.loaderOn{
    display:block;
}
.loaderOff{
    display:none;
}

/* GENERAL */

body {
    height: 100vh;
    background-color: #212121;
    margin: 0;
    padding: 0;
    align-items: center;
    justify-content: center;
    display:grid;
    overflow-x: hidden;
    overflow-y: auto;
}
.vipcard_wrapper {
    position: relative;
    width: 40vw;
    height: fit-content;
    background-color: #fffdf0;
    border-radius: .25rem;
    margin: auto;
    padding: 20px;
    align-items: center;
    justify-content: center;
    display: block;
    filter: drop-shadow(0px 0px 10px black);
}
.vipcard_inner_wrapper {
    position: relative;
    margin: 0 auto;
}
.narrower_wrapper {
    position: relative;
    width: 90%;
    margin: 0 auto;
}
.vipcard_img_fluid {
    max-width: 50%;
    float: none;
    display: block;
    margin:  0 auto;
    padding: 15px;
}
.tblStep {
    margin: 10px auto;
}

/* TYPOGRAPHY, COLORS, SIZES BUTTONS */

h1 {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 4rem;
    text-align: center;
    margin: 0 auto 10px auto;
    color: #ff0000;
    line-height: 4rem;
}
h2 {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 2.2rem;
    font-weight: 400;
    text-align: center;
    margin: 10px auto 0 auto;
    color: #212121;
}
h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    text-align: center;
    font-weight: 400;
    margin: 0 auto;
}
p {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.1rem;
    text-align: center;
    margin: 10px auto 0 auto;
}
a {
    text-decoration: none;
    color: #212121;
    font-weight: 600;
}
.pink_text {
    color: #ff0000;
}
.grey_text {
    color: #212121;
}
.mb-2 {
    margin-bottom: 5px;
}
.mb-0 {
    margin-bottom: 0 !important;
}
.button_click {
    position: relative;
    min-width: 140px;
    max-width: 140px;
    margin: 20px auto;
    width: fit-content;
    background-color: #ff0000;
    color: #ffffff;
    display: block;
    padding: 10px 20px;
    text-align: center;
    text-transform: uppercase;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.5rem;
    filter: drop-shadow(0px 0px 3px rgba(0,0,0,.6));
    cursor: pointer;
    transition: .3s linear all;
}
.button_click:hover {
    background-color: #212121;
    color: #ffffff;
    transition: .3s linear all;
}
.button_click_small {
    position: relative;
    margin: 20px auto;
    width: fit-content;
    background-color: #212121;
    color: #ffffff;
    display: block;
    padding: 8px 12px;
    text-align: center;
    text-transform: uppercase;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: .9rem;
    filter: drop-shadow(0px 0px 3px rgba(0,0,0,.6));
    cursor: pointer;
    transition: .3s linear all;
}
.button_click_small:hover {
    background-color: #ff0000;
    color: #ffffff;
    transition: .3s linear all;
}
input[type="submit" i]:disabled {
    position: relative;
    margin: 0 auto;
    width: fit-content;
    text-transform: uppercase;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.0rem;
    background-color: #212121;
    display: block;
    padding: 10px 20px;
    color: #ffffff;
    border: none;
    opacity: .5;
}
input[type="submit" i] {
    margin: 0 auto;
    width: fit-content;
    text-transform: uppercase;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.0rem;
    background-color: #ff0000;
    padding: 10px 20px;
    display: block;
    color: #ffffff;
    opacity: 1;
    cursor: pointer;
    border: none;
    transition: .3s linear all;
}
input[type="submit" i]:hover {
    background-color: #212121;
    color: #ffffff;
    transition: .3s linear all;
}
:focus-visible {
    outline: none;
}
.button_click_no_margins {
    margin: 10px auto 0px auto;
    width: fit-content;
    text-transform: uppercase;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.4rem;
    background-color: #ff0000;
    padding: 10px 20px;
    display: block;
    color: #ffffff;
    opacity: 1;
    cursor: pointer;
    border: none;
    transition: .3s linear all;
}
.button_click_no_margins:hover {
    background-color: #212121;
    color: #ffffff;
    transition: .3s linear all;
}
.marcaOn {
    text-color: #ff0000;
}
.marcaOff {
    text-color: #212121;
}

/* SIZES & FORM */

.vipcard_form {
    position: relative;
    margin: 20px auto 0 auto;
    font-family: 'Roboto Condensed', sans-serif;
}
.vipcard_form fieldset {
    border: none;
}
.vipcard_form label {
    font-size: 1rem;
}
.form_row {
    position: relative;
    display: flex;
    width: 100%;
    padding: 10px 0;
    align-items: center;
}
.col-25 {
    position: relative;
    width: 25%;
}
.col-75 {
    position: relative;
    width: 75%;
}
select, input {
    position: relative;
    width: 100%;
    padding: 5px;
    border-radius: 0;
    border: 1px solid #c1c1c1;
    color: #777777;
}
.select_narrow, .input_narrow {
    width: calc(100% - 35px) !important;
}
.tblStep{
    width: 100%;
}
.stepOFF {
    background-color: #a0a0a0;
}
.stepON {
    background-color: #696969;
}
.tblStep, th, td {
    border: none;
    padding: 5px;
    text-align: center;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: .8rem;
    color: #ffffff;
}
label {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: .9rem;
}
#idFrmInviaParrucchiereConPass {
    margin-bottom: 0;
}
#checkboxes {
    text-align: center;
}
input.inCheck {
    width: auto;
}


/* multi select marche inizio */
.multiselect {
    width: 100%;
}
.selectBox {
    position: relative;
}
.selectBox select {
    width: 100%;
    font-weight: bold;
}
.overSelect {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}
#checkboxes label {
    display: inline-block;
    text-align: center;
    align-items: center;
    justify-content: center;
    float: none;
    margin: 2px auto;
    padding: 2px;
}
#checkboxes {
    display: none;
    border: 1px #dadada solid;
}
#checkboxes label:hover {
    background-color: transparent;
}
.marca_on {
    background-color: #ff0000;
}
.marca_off {
    background-color: transparent;
}
.gRefresh{
    position: relative;
    width: 30px;
    height: 30px;
    background-color: #ff0000;
    color: #ffffff;
    line-height: 30px;
    float: right;
    text-align: center;
    cursor: pointer;
    display: none;
}


/* MEDIA */

@media (max-width: 500px){
    .col-25 {
        position: relative;
        width: 40%;
    }
    .vipcard_wrapper {
        position: relative;
        width: 85% !important;
    }
    .vipcard_wrapper {
        padding: 10px;
    }
    .tblStep, th, td {
        font-size: .7rem;
    }
    h1 {
        font-size: 3rem;
    }
    h2 {
        font-size: 1.6rem;
    }
    h3 {
        font-size: 1rem;
    }
    .vipcard_form label {
        font-size: .9rem;
    }
}
.fa-trash-can{
    color: red;
    display: none;
    margin-left: 10px
}
.gCampoObbligatorio{ background-color: #ecf1f1 !important; }