.footerElementsHolder {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-content: center;
    align-items: center;
    background: #ffffff;
    border-radius: 6px;
    padding: 5px;
    width: 80%;
    box-shadow: 0 0 0px 1px #c1c1c1;
}

.inputIcons {
    color: var(--footer-button-icon-color);
    text-align: center;
}

.sendMessage {
    background: var(--main-color);
    border-radius: var(--footer-button-icon-radius);
    width: var(--footer-button-icon-width);
    height: var(--footer-button-icon-height);
    /* position: absolute; */
    /* right: var(--footer-button-horizontal-position); */
    /* bottom: var(--footer-button-vertical-position); */
    position: relative;
    display: flex;
    /* padding: 0; */
    border: 3px solid var(--main-color);
    align-content: center;
    align-items: center;
    text-align: center;
    justify-content: space-around;
    padding: 3px;
    padding-left: 8px;
}
.sendMessage img {
    width: 100% !important;
    width: 38px !important;
    position: absolute;
}
.sendMessage i {
    color: var(--white-color);
    font-size: 23px !important;
}


.chatbox-popup .chatbox-popup__footer {
    box-sizing: border-box;
    display: flex;
    width: 100%;
    /* height: 10%; */
    padding: 10px;
    border-top: var(--footer-border-top) !important;
    align-items: center;
    justify-content: space-evenly;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
    /* background: var(--main-color); */
    background: #F9F9F9;
    /* background: rgba( 255, 255, 255, 0.25 ); */
    /* backdrop-filter: blur(4px); */
    /* border-radius: 10px; */
    /* border: 1px solid rgba( 255, 255, 255, 0.18 ); */
    flex-direction: row;
    align-content: center;
}

.writeMessage {
    width: 88% !important;
    outline: none !important;
    border: none;
    padding: 0 8px;
}

.active {
    background: none !important;
}

.pixMenu {
    position: relative;
    display: block;
    width: 30px;
    height: 30px;
    margin: 0 17px 0px 17px;
}

.pixMenu .pix {
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: var(--main-color);
    border-radius: 100%;
    transition: 0.2s ease-in-out;
}

.pixMenu .pix:nth-of-type(1) {
    transform: translate(0px, 0px);
}

.pixMenu .pix:nth-of-type(2) {
    transform: translate(12px, 0px);
}

.pixMenu .pix:nth-of-type(3) {
    transform: translate(24px, 0px);
}

.pixMenu .pix:nth-of-type(4) {
    transform: translate(0px, 12px);
}

.pixMenu .pix:nth-of-type(5) {
    transform: translate(12px, 12px);
}

.pixMenu .pix:nth-of-type(6) {
    transform: translate(24px, 12px);
}

.pixMenu .pix:nth-of-type(7) {
    transform: translate(0px, 24px);
}

.pixMenu .pix:nth-of-type(8) {
    transform: translate(12px, 24px);
}

.pixMenu .pix:nth-of-type(9) {
    transform: translate(24px, 24px);
}

.pixMenu:hover .pix {
    background-color: var(--secondary-color);
}

.pixMenu:hover .pix:nth-of-type(1) {
    transform: translate(-6px, -6px);
}

.pixMenu:hover .pix:nth-of-type(3) {
    transform: translate(30px, -6px);
}

.pixMenu:hover .pix:nth-of-type(7) {
    transform: translate(-6px, 30px);
}

.pixMenu:hover .pix:nth-of-type(9) {
    transform: translate(30px, 30px);
}


.pixMenu.active .pix:nth-of-type(1) {
    transform: translate(-4px, -4px);
}

.pixMenu.active .pix:nth-of-type(2) {
    transform: translate(4px, 4px);
}

.pixMenu.active .pix:nth-of-type(3) {
    transform: translate(28px, -4px);
}

.pixMenu.active .pix:nth-of-type(4) {
    transform: translate(4px, 20px);
}

.pixMenu.active .pix:nth-of-type(6) {
    transform: translate(20px, 4px);
}

.pixMenu.active .pix:nth-of-type(7) {
    transform: translate(-4px, 28px);
}

.pixMenu.active .pix:nth-of-type(8) {
    transform: translate(20px, 20px);
}

.pixMenu.active .pix:nth-of-type(9) {
    transform: translate(28px, 28px);
}


.pixMenu.active:hover .pix:nth-of-type(1) {
    transform: translate(-6px, -6px);
}

.pixMenu.active:hover .pix:nth-of-type(2) {
    transform: translate(3px, 3px);
}

.pixMenu.active:hover .pix:nth-of-type(3) {
    transform: translate(30px, -6px);
}

.pixMenu.active:hover .pix:nth-of-type(6) {
    transform: translate(21px, 3px);
}


.pixMenu.active:hover .pix:nth-of-type(4) {
    transform: translate(3px, 21px);
}

.pixMenu.active:hover .pix:nth-of-type(7) {
    transform: translate(-6px, 30px);
}

.pixMenu.active:hover .pix:nth-of-type(8) {
    transform: translate(21px, 21px);
}

.pixMenu.active:hover .pix:nth-of-type(9) {
    transform: translate(30px, 30px);
}

.menuBtnHolder {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-around;
    align-items: center;
}
.menuIll{
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    border: 2px solid white;
    border-radius: 15px;
    padding: 5px;
}
.menuBtn {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.iconHolder {
    background: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    flex-wrap: nowrap;
    flex-direction: row;
}

.iconHolder i {
    font-size: 35px;
    color: var(--main-color);
}
.menuText{
    color: white;
    /*font-weight: bold;*/
    border: 1px solid white;
    border-radius: 15px;
    padding: 2%;
    width: 100px;
}

.menuText:hover{
    color: var(--main-color);
    background: white;
    /*font-weight: bold;*/
    border: 1px solid white;
    border-radius: 15px;
    padding: 2%;
    width: 100px;
}

