.questions-overlay {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0);
    pointer-events: none;
    z-index: 40;
    transition: background-color ease 0.5s;
}

body.questions-open .questions-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    pointer-events: all;
}

body.questions-open {
    overflow: hidden;
}

.component.questions {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    pointer-events: none;
    z-index: 5;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    z-index:90;
}

.component.questions .content {
    width: 100%;
    max-width: 900px;
    pointer-events: all;
    max-height: 100%;
}

.component.questions .content .header {
    height: 40px;
    display: flex;
    justify-content: flex-end;
    font-size: 25px;
    font-weight: 700;
}

.component.questions .content .header .wrapper {
    width: 100%;
    max-width: 500px;
    background-color: var(--blue01);
    display: flex;
    justify-content: space-between;
}

.component.questions .content .header .wrapper > * {
    height: 100%;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.component.questions .content .header .question {
    color: var(--white);
    padding-left: 20px;
    flex: 1;
}

.component.questions .content .header .close {
    opacity: 0;
    background: var(--white);
    color: var(--blue01);
    padding: 0 20px;
    transition: opacity ease 0.5s;
}

body.questions-open .component.questions .content .header .close {
    opacity: 1;
}

.component.questions .content .body {
    display: flex;
    background: var(--white);
    gap: 20px;
    padding: 0 20px;
    overflow: hidden;
    height: 0;
    max-height: calc(100vh - 174px);
}

body.questions-open .component.questions .content .body {
    overflow-y: auto;
}

.component.questions .content .body .person {
    display: flex;
    flex-direction: column;
    max-width: 300px;
    gap: 20px;
}

.component.questions .content .body .person p {
    margin: 0;
}

.component.questions .content .body .person .contact .name {
    font-size: 20px;
}

.component.questions .content .body .person .contact .number {
    font-size: 30px;
    color: var(--red01);
}

.component.questions .content .body .form {
    flex: 1;
}

.component.questions .content .body .form .submit {
	justify-content: flex-end;
	padding-right: 47px;
	background: url(/media/udnpax0r/right-arrow-3.png) no-repeat center right;
}

@media (max-width: 768px) {
    .component.questions .content .header .wrapper {
        max-width: 100%;
    }

    .component.questions .body {
        flex-direction: column;
    }

    .component.questions .content .body .person {
        max-width: 100%;
        height: auto;
    }

    .component.questions .content .form .form-field {
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .component.questions .content .header {
        font-size: 20px;
    }
}
