.bubble {
    background-color: #3faeba;
    width: 450px;
    height: 450px;
    display: flex;
    padding: 60px;
    border-radius: 50%;
    color: #fff;
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    transition: all 1s;
    z-index: 9999;
    box-sizing: border-box;
    right: -350px;
    border: 1px solid rgba(255,255,255,0.5);
    -webkit-box-shadow:0px 0px 25px -6px #000000, 5px 5px 15px 5px rgb(0 0 0 / 0%);
    box-shadow: 0px 0px 25px -6px #000000, 5px 5px 15px 5px rgb(0 0 0 / 0%);
}

.bubble-cut {
    right: -50px;
    transition: all 1s;
}
#bubble i.rotate {
    transform: rotate(180deg);
    transition: all 1s;
}

.bubble > .contact {
    width: 0px;
    padding-right: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.bubble > .contact > .sym {
    margin-right: 10px;
    font-size: 20px;
}

.bubble > .contact > .contact-text {
    transform: rotate(-90deg);
    padding-bottom: 20px;
    font-size: 20px;
}

.bubble > .inputs {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

.bubble > .inputs-cut {
    display: none;
}

.bubble > .inputs > h3 {
    font-size: 20px;
    margin-right: 25px;
    line-height: 1;
    display: none;
}

.bubble > .inputs > div {
    padding: 3px 0;
    text-align: center;
}
.bubble > .inputs > div > select {
    padding: 5px;
    width: 220px;
    margin-right: 0px;
    background: url('/wp-content/uploads/2021/09/select_custom.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right;
    background-color: #fff;
    border: none;    
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 40px;
}

.bubble > .inputs > div > input {
    padding: 5px;
    color: #b0b0b0;
    width: 220px;
    margin-right: 0px;
}

.bubble > .inputs > div > .email {
    padding: 5px;
    color: #b0b0b0;
    width: 220px;
    margin-right: 0px;
}

.bubble > .inputs > div > .email-error {
    border: 2px solid red;
    transition: all 1s;
}
.bubble > .inputs > div > button {
    color: #fff;
    background-color: transparent;
    border: 2px solid #fff;
    padding: 10px;
    cursor: pointer;
    width: 220px;
    margin-right: 0px;
    font-size: 20px;
    margin-bottom: 5px;
    font-family: 'Nunito';
}
.bubble > .inputs > div > button a{
    text-decoration: none;
    color: white;
    font-family: 'Nunito';
}
.bubble textarea {
    width: 220px;
    height: 70px;
    resize: none!important;
    padding: 5px 15px 5px 5px;
}

.bubble #message::-webkit-input-placeholder {padding-right: 10px;}
.bubble #message:-moz-placeholder { /* Firefox 18- */padding-right: 10px;}
.bubble #message::-moz-placeholder {  /* Firefox 19+ */padding-right: 10px;}
.bubble #message:-ms-input-placeholder {padding-right: 10px;}

.error{
border: 2px solid red!important;
}
input.error
textarea.error,
select.error{
    border: 2px solid red!important;
}
.message-succes{
    display: none;
}
.message-succes.show-message{
    display: flex;
    align-items: center;
    font-size: 1.2em;
    font-weight: bold;
}
.loading{
  display:none;  
}
p.loading-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 75%;
}
p.loading-content img{
  
    width: 50px;
}