:root {
    --color1: #f3a51d;
    --color2: #dedede;
    --color3: #f31d35;
    --color4: #9e9e9e;
    --color5: #fff;
    --footerColor: #d9d9d9;
    --textColor: #1e1e1e;
    --textColor2: #7b7b7b;
    --textColor3: #242424;
    --textColor4: #ff9900;
    --textColor5: rgb(96, 96, 96);
    --textColor6: rgb(119, 119, 119);
    --divider-color: #9e9e9e;
}
body{
    direction: rtl;
}
a{
    text-decoration: none;
}
/*-------------------------------- Contact Us Button ------------------------------*/

.fixed-contact-us {
    z-index: 100;
    left: 13px;
    bottom: 90px;
    position: fixed !important;
}
.fixed-contact-us-content {
    width: 50px;
    height: 50px;
    right: 0;
    background-color: #189d0e;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: relative;
    padding: 10px;
}

.fixed-contact-us-items {
    width: 300px;
    background-color: var(--color5);
    position: absolute;
    left: 0;
    bottom: 80px;
    border-radius: 7px;
    visibility: hidden;
    opacity: 0;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
    transform: translateY(-20px);
    transition: all ease 300ms, transform 300ms, opacity 300ms, -webkit-transform 300ms;
    transition-delay: 100ms;
    padding: 20px;
}
.fixed-contact-us-items::before {
    position: absolute;
    bottom: -8px;
    left: 25px;
    right: auto;
    border-right: 8px solid transparent;
    border-top: 8px solid var(--color5);
    border-left: 8px solid transparent;
    content: "";
}
.fixed-contact-us-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    color: var(--textColor5);
    border-left: 5px solid #189d0e;
    margin: 10px;
    border-radius: 10px;
}
.fixed-contact-us-item:hover {
    background-color: #f0f0f0;
    transition: all ease 300ms;
}
.contact-us-item-icon {
    padding: 10px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
}

.fixed-contact-us-item img{
    width: 50px;
    height: 50px;
}
.contact-us-item-icon svg {
    width: 25px;
    height: 25px;
    color: var(--color5);
}
.fixed-contact-us-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.fixed-contact-us-content:hover .fixed-contact-us-items {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition: all ease 300ms, transform 300ms, opacity 300ms, -webkit-transform 300ms;
    transition-delay: 100ms;
}

.fixed-contact-us-icon svg {
    width: 28px;
    height: 28px;
    color: var(--color5);
    margin-bottom: 5px;
}
.fixed-contact-us-icon p {
    font-size: 10px;
    line-height: 10px;
    font-weight: bold;
    margin: 0;
    color: var(--color5);
}
.online-badge {
    position: absolute;
    background-color: #35ac19;
    top: 6px;
    right: -6px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    z-index: 1;
}
.pulsation {
    width: 100%;
    height: 100%;
    background-color: var(--color1);
    border-radius: 50px;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    z-index: -1;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    -webkit-animation: arcu-pulse 2s infinite;
    animation: arcu-pulse 2s infinite;
    webkit-animation-duration: 2s;
    animation-duration: 2s;
}
.fixed-contact-us .pulsation:nth-of-type(2n) {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}
.whatsapp {
    background-color: #4eb625;
}
.telegram {
    background-color: #20afde;
}
.call-color {
    background-color: #1ebea5;
}

@keyframes arcu-pulse {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
    100% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
        opacity: 0;
    }
}