@font-face {
    font-family: 'Manrope, sans-serif';
    font-style: normal;
    font-weight: 300;
    src: local('Manrope, sans-serif'), url('../fonts/Manrope.woff2') format('woff2');
}

@font-face {
    font-family: 'helveticaneuecyr';
    font-style: normal;
    font-weight: 200;
    src: local('HelveticaNeueCyr'), url('../fonts/HelveticaNeueCyr-UltraLight.woff') format('woff')
}

@font-face {
    font-family: 'helveticaneuecyr';
    font-style: normal;
    font-weight: 300;
    src: local('HelveticaNeueCyr'), url('../fonts/HelveticaNeueCyr-Light.woff') format('woff')
}

.section-primary {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    margin-top: 30px;
    overflow-x: hidden;

}

/* HEADER RULES */
.logo img {
    width: 250px;

}

h1.title {
    padding-bottom: 5px;
    font-size: 22px;
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    font-family: 'HelveticaNeueCyr', sans-serif;
    line-height: 25px;
}

h3.title {
    padding-bottom: 5px;
    font-size: 18px;
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    font-family: 'HelveticaNeueCyr', sans-serif;
    line-height: 25px;
}

.title-secondary {
    padding-bottom: 5px;
}

.borderBottomBlack {
    border-bottom: 1px solid #000000;
}

.section-primary {
    margin-bottom: 3%;
}

h3 {
    font-size: 18px;
    margin-bottom: 20px;
    margin-top: 20px;
    text-align: left;
    text-transform: uppercase;
    font-weight: 300;
    letter-spacing: 1.5px;
    font-family: 'HelveticaNeueCyr', sans-serif;
}

span.number {
    padding-right: 5px;

}

.question {
    margin-top: 30px;
}

label, textarea,
p {
    font-size: 13px;
    font-family: "Manrope, sans-serif", sans-serif;
    font-weight: 300;
    line-height: 25px;
    letter-spacing: 1.5px;
	color: #000000;
}


li {
    text-align: left;
    margin-top: 20px;
	color: #000000;
}

textarea {
    width: 100%;
    margin-top: 20px;
    min-height: 160px;
    height: 160px;
    padding: 10px;
    resize: none!important;
}

textarea:focus-visible {
    outline: none;
}

p {
    text-align: left;
}

/* -------------------------------------------------------------------------- */
/*                           SWEET ALERT CUSTOM CSS                           */
/* -------------------------------------------------------------------------- */

/* div:where(.swal2-container) .swal2-html-container {

    font-family: "Manrope, sans-serif", sans-serif;
    font-size: 0.8rem !important;

} */
.swal2-title {
    padding-bottom: 5px;
    font-size: 20px!important;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    font-family: 'HelveticaNeueCyr', sans-serif;
}

.swal2-html-container {
    font-size: 13px!important;
    font-family: "Manrope, sans-serif", sans-serif;
    font-weight: 300;
    line-height: 25px;
    letter-spacing: 1.5px;
}

div:where(.swal2-container) div:where(.swal2-popup) {
    display: none;
    position: relative;
    box-sizing: border-box;
    grid-template-columns: minmax(0, 100%);
    max-width: 100%;
    padding: 0 0 1.25em;
    border: none;
    border-radius: 5px;
    background: #fff;
    color: #545454;
    font-family: inherit;
    font-size: 1rem;
}

.swal2-html-container h3{
    font-size: 16px;
}

div:where(.swal2-container).swal2-center>.swal2-popup{
    padding-top:30px;
    border-radius: 0;
    transition-delay: 0.1s!important;
    transition-duration: 0.5s!important;
    transition-property: all!important;
    transition-timing-function: ease!important;
	animation-duration: 0s!important;
}

.largeModal{
    width: 60vw!important;
    height: 80vh!important;
}
.iconCustomModal{
    border:none!important;
    color:#000000!important;
}
/* BUTTON RULES */

.button-send {
    background: transparent;
    border: none;
    color: #000000;
    font-weight: 300;
    letter-spacing: 1.3px;
    padding: 0;
    overflow: hidden;
    margin-top: 20px;
    cursor: pointer;
    margin-bottom: 20px;
    position: relative;
}

.button-send:before {
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -1px;
    left: 0;
    background-color: #000;
    visibility: hidden;
    transition: width 0.4s ease-in-out;
}

.button-send:hover:before {
    visibility: visible;
    width: 100%;
}

.button-send:disabled {
    color: #c1c1c1;
}

.lineEffectBlack {
    display: inline-block;
    padding-bottom: 5px;
}


.lineEffectBlack:after {
    border-bottom: .5px solid #000;
    content: "";
    display: block;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    transition: -webkit-transform .4s ease-in-out;
    transition: transform .4s ease-in-out;
    transition: transform .4s ease-in-out, -webkit-transform .4s ease-in-out;
}

.lineEffectBlack:hover:after {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

/* disabled line effect */
.button-send:disabled.lineEffectBlack:hover:before {
    visibility: hidden;
}

.button-send:disabled.lineEffectBlack:hover:after {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
}





/* LAST SECTION RULES */
a {
    position: relative;
    text-decoration: none;
    color: #000;
}

a:before {
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -1px;
    left: 0;
    background-color: #000;
    visibility: hidden;
    transition: width 0.4s ease-in-out;
}

a:hover:before {
    visibility: visible;
    width: 100%;
}


.container-button {
    display: flex;
    flex-direction: row-reverse;
    max-width: 800px;
    margin: 0 auto;
}



/* FORM RULES */

form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
    width: 100%;
}

.section-form {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.section {
    margin: 20px;
    width: 100%;
}



label {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    line-height: 0;
}

.input-group {
    display: flex;
    margin-bottom: 10px;
}

.group-rating {
    margin-bottom: 20px;
}

input[type="checkbox"] {
    /* modifica checkbox predefinito */
    flex-shrink: 0;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 13px;
    height: 13px;
    border: 1px solid #000000;
    outline: none;
    cursor: pointer;
    transition: background-color 0.3s, border-color 0.3s;
    /* Personalizza l'aspetto della checkbox selezionata */
    background-color: #ffffff;
    /* Align the checkbox to the left */
    float: left;
    margin-right: 20px;
}

input[type="checkbox"]:checked {
    /* background-color: #767676;
    border-color: #767676;
    background-image: url('https://svgsilh.com/svg/297738-ffffff.svg'); */
    background-color: #ffffff;
    border-color: #000000;
    background-image: url('https://svgsilh.com/svg/297738-000000.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 80%;
}

input[type=text] {
    background-color: initial;
    border: none;
    border-bottom: 1px solid #000;
    border-radius: 0;
    box-shadow: none;
    color: #000;
    display: inline-block;
    outline: none;
    padding: 10px 0;
    width: 100%;
    margin-bottom: 20px;
}

input[type=text]::placeholder {
    color: #000;
}

input[type=text].personalInformation {
    font-size: 13px;
    width: 47.5%;
}

input[type=text].personalInformation:first-child{
    margin-right: 2.5%;
    margin-left: 0;
}

input[type=text].personalInformation:last-child{
    margin-left: 2.5%;
    margin-right: 0;
}


#personal-info-question {
    display: flex;
    padding-top: 50px;
}
#property-question {
    display: flex;
}
#property-question input {
    margin-left:0;
}

input[type=text].personalInformation::placeholder {
    text-transform: uppercase;
    font-size: 12px;
    color:#c1c1c1;
}

.paragraph-11 {
    font-family: "Manrope, sans-serif", sans-serif;
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 1.5px;
}

.paragraph-11 a {
    text-decoration: none;
    color: #000000;
}

.question-form label {
    display: flex;
    align-items: center;
}

.question-form label p {
    margin: 0;
}



/* FEEDBACK RULES */

.hidden-message {
    display: none;
}


.feedback-message {
    background-color: rgb(178, 233, 178);
    color: green;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    padding: 10px;
    border: 1px solid rgb(6, 190, 6);
}

.form-group {
    display: flex;
}

/* STAR-RATING */

.rating {
    display: inline-flex;
    flex-direction: row-reverse;
    justify-content: flex-start;
    align-items: center;
    margin-left: auto;
}


.rating__data {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}



label.rating__star {
    color: #c1c1c1;
    transition: color 0.1s cubic-bezier(0, 0, 0.2, 1), transition 0.24s cubic-bezier(0, 0, 0.2, 1), opacity 0.24s cubic-bezier(0, 0, 0.2, 1);
    will-change: color, transform;
    display: inline;
}

.rating__star svg {
    width: 24px;
    height: 24px;
    margin: 2px;
    fill: currentColor;
    transition: 160ms cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.rating__data:checked~.rating__star {
    color: #000000;
}

.rating__star.rating__star:hover,
.rating__star:hover~.rating__star {
    color: #000000;
}

.rating__star.rating__star:active {
    color: #000000;
    transform: scale(1.2);
    opacity: 0.3;
}

.rating__star1.rating__star1:active {
    color: #000000;
    transform: scale(1.2);
    opacity: 0.3;
}

/* RESPONSIVE RULES */

/* Versione mobile */
@media (max-width: 767px) {
    body{
        padding-right: 20px;
        padding-left:20px;
        margin-bottom:50px;
    }

    .logo img {
        width: 200px;
        height: 60px;
    }

    h1.title {
        font-size: 18px;
        margin-bottom: 0;
    }

    h3,
    span,
    li,
    p {
        font-size: 13px;
    }

    label, textarea, p {
        line-height: 20px;
    }

    /* h3 {
        margin-left: 20px;
    } */

    .title-line,
    .title-line-secondary {
        width: 100%;
    }

    textarea {
        width: 90%;
        margin-right: 12px;
        padding: 5px 10px 0 10px;
        min-height: 120px;
        height: 120px;
    }

    input[type="checkbox"] {
        width: 15px;
        height: 15px;
        margin-right: 15px;
    }

    .question-form {
        padding-top: 0;
    }
    #personal-info-question {
        display: block;
        padding-top: 30px;
    }

    input[type=text].personalInformation:last-child, input[type=text].personalInformation:first-child{
        margin-left: 0;
        margin-right: 0;
    }

    input[type=text].personalInformation{
        width: 100%;
    }

    .section {
        margin-top: 0;
        padding: 10px 5px 10px 10px;
    }

    .title-secondary {
        margin-left: 0;
    }

    .group-rating {
        display: block;
        text-align: left;
        margin-bottom: 10px;
    }
    .rating {
        margin-top: 5px;
        margin-bottom: 20px;
    }
    .mt-3-mobile{
        margin-top:30px;
    }
    .largeModal{
        width: 80vw!important;
    }
}

/* Versione tablet */
@media (min-width: 768px) and (max-width: 991px) {
    .logo img {
        width: 250px;
        height: 70px;
    }

    .title {
        font-size: 18px;

    }

    h3,
    span,
    li,
    p {
        font-size: 14px;
    }

    /* h3 {
        margin-left: 20px;
    } */

    

    .title-line,
    .title-line-secondary {
        width: 60%;
    }

    textarea {
        width: 75%;
        margin-right: 40px;
    }

    input[type="checkbox"] {
        width: 20px;
        height: 20px;
        margin-right: 25px;

    }



    .title-line-secondary {
        border-bottom: 1px solid #000000;
        padding-bottom: 20px;
        width: 100%;
    }

    select {
        margin-right: 20px;
        margin-left: 10px;
        width: 40px;
    }

    .question-form {
        margin-left: 30px;
    }


}

.mt-6{
	margin-top:6px;
}