.iachat_panel_background{
    z-index: 1000;
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    display: none;
}

.iachat_panel_background.shadow {
    background: #00000080;
}
.iachat_panel_background.active{
    display: block;
}

.iachat_panel{
    z-index: 1001;
    position: fixed;
    width: 58px;
    height: 58px;
    background-repeat: no-repeat;
    background-size: 57%;
    border-radius: 100px;
    background-position: center;
    cursor: pointer;
}

.iachat_panel.animation:not(.open):before,.iachat_panel.animation:not(.open):after{
    content: " ";
    display: block;
    position: absolute;
    border: 50%;
    border: 2px solid;
    left: -20px;
    right: -20px;
    top: -20px;
    bottom: -20px;
    border-radius: 50%;
    animation: animate 1.5s linear infinite;
    opacity: 0;
    backface-visibility: hidden;
}

.iachat_panel.animation:after {
    animation-delay: .5s;
}

@keyframes animate {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

@media screen and (min-width: 992px){
    .iachat_panel.animation_no_pc:after, .iachat_panel.animation_no_pc:before{
        animation: none !important;
    }
}
@media screen and (min-width: 768px) and (max-width: 991px){
    .iachat_panel.animation_no_tablet:after,.iachat_panel.animation_no_tablet:before{
        animation: none !important;
    }
}
@media screen and (max-width: 767px){
    .iachat_panel.animation_no_mobile:after, .iachat_panel.animation_no_mobile:before{
        animation: none !important;
    }
}

.iachat_panel_call_to_action{
    z-index: 999;
    position: fixed;
    width: 300px;
    border: 2px solid;
    padding: 10px;
    border-radius: 5px;
    background-color: white;
    opacity: 0;
    pointer-events: none;
    display: flex;
    align-items: center;
}

.iachat_panel_call_to_action_image {
    width: 48px;
    min-width: 48px;
    height: 48px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 50px;
    margin-right: 10px;
}

.iachat_panel_call_to_action.active{
    opacity: 1;
    pointer-events: auto;
}

@media screen and (min-width: 992px){
    .iachat_panel_call_to_action.deactivation_pc{
        opacity: 0 !important;
        pointer-events: none !important;
    }
}
@media screen and (min-width: 768px) and (max-width: 991px){
    .iachat_panel_call_to_action.deactivation_tablet{
        opacity: 0 !important;
        pointer-events: none !important;
    }
}
@media screen and (max-width: 767px){
    .iachat_panel_call_to_action.deactivation_mobile{
        opacity: 0 !important;
        pointer-events: none !important;
    }
}



.iachat_panel_call_to_action:before{
    content: "";
    border: 10px solid transparent;
    width: 0;
    position: absolute;
    top: 50%;
    margin-top: -10px;
}

@media screen and (max-width: 767px){
    .iachat_panel_call_to_action{
        width: 280px;
    }
    .iachat_panel_call_to_action:before{
        margin-top: 0;
        top: 100%;
        transform: rotate(90deg);
    }
}

.iachat_panel_call_to_action_title {
    font-size: 16px;
    font-weight: 600;
}
.iachat_panel_call_to_action_description {
    font-size: 14px;
    line-height: normal;
}

.iachat_panel_close_call_to_action{
    position: absolute;
    top: 5px;
    right: 5px;
    width: 15px;
    height: 15px;
    cursor: pointer;
}


.iachat_panel_close_call_to_action:before{
    content: '';
    width: 100%;
    height: 2px;
    background-color: #00000080;
    position: absolute;
    transform: rotateZ(45deg);
    top: 6px;
}

.iachat_panel_close_call_to_action:after{
    content: '';
    width: 100%;
    height: 2px;
    background-color: #00000080;
    position: absolute;
    transform: rotateZ(-45deg);
    top: 6px;
}
.iachat_panel_all_soc_blocks {
    position: fixed;
    width: 58px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    z-index: 1001;
    pointer-events: none;
}
.iachat_panel_soc_block{
    width: 48px;
    height: 48px;
    border-radius: 50px;
    background-position: center;
    background-size: 50%;
    background-repeat: no-repeat;
    position: absolute;
    top: calc(100% - 48px);
    transition: 0.5s;
}

.iachat_panel_help {
    position: absolute;
    width: max-content;
    top: calc(50% - 11px);
    text-decoration: none;
    color: white;
    background-color: #00000080;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
}

.iachat_panel_all_soc_blocks.open{
    pointer-events: auto;
}

.iachat_panel_all_soc_blocks.open .iachat_panel_help.open{
    opacity: 1;
    pointer-events: auto;
}

.iachat_panel_help.left{
    left: 140%;
    padding: 0 10px 0 5px;
}

.iachat_panel_help.right{
    right: 140%;
    padding: 0 5px 0 10px;
}

.iachat_panel_help:before{
    content: "";
    border: 12px solid transparent;
    width: 0;
    position: absolute;
    top: 50%;
    margin-top: -12px;
}

.iachat_panel_help.left:before{
    border-right-color: #00000080;
    left: -24px;
}
.iachat_panel_help.right:before{
    border-left-color: #00000080;
    right: -24px;
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    .iachat_panel_help.left_tablet{
        left: 140% !important;
        right: auto !important;
    }

    .iachat_panel_help.right_tablet{
        right: 140% !important;
        left: auto !important;
    }
    .iachat_panel_help.left_tablet:before{
        border-right-color: #00000080 !important;
        border-left-color: transparent !important;
        left: -24px !important;
        right: auto !important;
    }
    .iachat_panel_help.right_tablet:before{
        border-left-color: #00000080 !important;
        border-right-color: transparent !important;
        right: -24px !important;
        left: auto !important;
    }
}

@media screen and (max-width: 767px) {
    .iachat_panel_help.left_mobile{
        left: 140% !important;
        right: auto !important;
    }

    .iachat_panel_help.right_mobile{
        right: 140% !important;
        left: auto !important;
    }
    .iachat_panel_help.left_mobile:before{
        border-right-color: #00000080 !important;
        border-left-color: transparent !important;
        left: -24px !important;
        right: auto !important;
    }
    .iachat_panel_help.right_mobile:before{
        border-left-color: #00000080 !important;
        border-right-color: transparent !important;
        right: -24px !important;
        left: auto !important;
    }
}


.iachat_panel_soc_block:hover > .iachat_panel_help{
    opacity: 1;
    pointer-events: auto;
}

.iachat_panel_all_soc_blocks.open .iachat_panel_soc_block:nth-child(1){
    top: 0;
}
.iachat_panel_all_soc_blocks.open .iachat_panel_soc_block:nth-child(2){
    top: 50px;
}
.iachat_panel_all_soc_blocks.open .iachat_panel_soc_block:nth-child(3){
    top: 100px;
}
.iachat_panel_all_soc_blocks.open .iachat_panel_soc_block:nth-child(4){
    top: 150px;
}
.iachat_panel_all_soc_blocks.open .iachat_panel_soc_block:nth-child(5){
    top: 200px;
}
.iachat_panel_all_soc_blocks.open .iachat_panel_soc_block:nth-child(6){
    top: 250px;
}
.iachat_panel_all_soc_blocks.open .iachat_panel_soc_block:nth-child(7){
    top: 300px;
}
.iachat_panel_all_soc_blocks.open .iachat_panel_soc_block:nth-child(8){
    top: 350px;
}
.iachat_panel_all_soc_blocks.open .iachat_panel_soc_block:nth-child(9){
    top: 400px;
}

.iachat_panel_all_soc_blocks.open .iachat_panel_soc_block:nth-child(10){
    top: 450px;
}
