.zobot_opener{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
    opacity: 1;
    visibility: visible;
    transition: all .28s ease;
}

.zobot_opener h2,
.zobot_opener p{
    width: 100%;
}

.zobot_opener p{
    font-size: 12px;
}

.zobot_opener button{
    margin: 16px auto;
}

.zobot_opener .open_contact_form{
    text-decoration: underline;
    cursor: pointer;
}

.zobot_opener + .contact-form{
    opacity: 0;
    height: 0;
    overflow: hidden;
    visibility: hidden;
    pointer-events: none;
    transition: all .28s ease;
}

.zobot_opener.contact_form_opened + .contact-form{
    opacity: 1;
    height: fit-content;
    overflow: initial;
    visibility: visible;
    pointer-events: initial;
}

.zobot_opener.contact_form_opened{
    height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.back_to_bot{
    cursor: pointer;
    color: #000;
    margin-bottom: 32px;
}

.back_to_bot span{
    margin-left: 4px;
    text-decoration: underline;
}