table{
    width: 100%;
    margin:30px 0px;
}
table th, table td{
    border: 1px solid;
    padding: 5px 10px;
}
table tr td {
    width: 50%;
}
@media only screen and (max-width: 600px) {
    table td, table tr, table a{
        font-size: 14px;
    }
}
@media only screen and (max-width: 400px) {
    table td, table tr, table a{
    }
}
.fixed_chat {
    position: fixed;
    bottom: 70px;
    inset-inline-end: 30px;
    background-color: #25d366;
    border-radius: 30px;
    z-index: 20;
    place-content: center;
    place-items: center;
    display: flex;
    border: 0px;
    cursor: pointer;
    transition: 0.15s all ease-in;
    width: 60px;
    height: 60px;
    z-index: 100;
    border-radius: 30px;
    float: right;
    opacity: 1;
    outline: none;
}
.top-button{
    bottom: 145px;
    background-color: #1299da;

}

.fixed_form svg {
    width: 40px;
    height: 30px;
    fill: white;
}
.fixed_form svg path{
    stroke: white;

}
.fixed_chat_before{
    bottom: 145px;

}
@media only screen and (max-width: 900px) {
    .fixed_chat {
        width: 60px;
        height: 60px;
   }
}
@media only screen and (max-width: 600px) {

}
.fixed_chat svg {
    position: relative;
    z-index: 5;
    margin-left: 1px;
}
@media only screen and (max-width: 900px) {
    .fixed_chat svg {
        height: 25px;
        width: 26px;
   }
}
@media only screen and (max-width: 600px) {
    .fixed_chat svg {
        height: 22px;
        width: 22px;
   }
}
.fixed_chat:after {
    content: "";
    background-color: inherit;
    display: block;
    position: absolute;
    border-radius: inherit;
    z-index: 0;
    left: -3px;
    opacity: 0;
    right: -3px;
    top: -3px;
    bottom: -3px;
    border-radius: 50%;
    animation: pulse 1.5s linear infinite;
}
.fixed_chat:before {
    content: "";
    background-color: inherit;
    display: block;
    position: absolute;
    border-radius: inherit;
    z-index: 0;
    left: -3px;
    opacity: 0;
    right: -3px;
    top: -3px;
    bottom: -3px;
    border-radius: 50%;
    animation: pulseBefore 1s linear infinite;
}
.fixed_chat:hover {
    box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, .3);
}
@media only screen and (max-width: 900px) {
    .fixed_chat {
        right: 20px;
        bottom: 65px;
   }
    .top-button{
        bottom: 145px;
    }
}
@media only screen and (max-width: 500px) {
    .fixed_chat {
        right: 10px;
   }
}
@keyframes pulse {
    0% {
        transform: scale(0.5);
        opacity: 0;
   }
    50% {
        opacity: 0.5;
   }
    100% {
        transform: scale(1.2);
        opacity: 0;
   }
}
@keyframes pulseBefore {
    0% {
        transform: scale(1);
        opacity: 0;
   }
    50% {
        opacity: 0.6;
   }
    100% {
        transform: scale(1.2);
        opacity: 0;
   }
}
