.p_bigPhone_block {
    display: none;
    position: fixed;
    top: 0;
    transform: translateY(170px);
    right: 10px;
    transition: .5s;
    z-index: 50;
    background: #fff;
    margin: 0 20px 20px 20px;
    padding: 10px 20px;
    border-radius: 9px;
    box-shadow: 0 4px 4px 0 #999;
}

.p_bigPhone_block--show {
    display: block;
}

.p_bigPhone_block:first-child {
    display: none;
}

.p_bigPhone_block.fixed {
    position: fixed;
    transform: translateY(10px);
    z-index: 50;
}

.p_bigPhone_block__mobileIcon {
    display: none;
}

.p_bigPhone_block .cloneSource {
    display: flex;
}

.p_bigPhone_block .bigPhone {
    display: flex;
    flex-direction: column;
    font-weight: 500;
    margin-right: 10px;
}

.p_bigPhone_block .bigPhone .phone {
    font-weight: 400;
    font-size: 13px;
    color: #707070;
    white-space: nowrap;
}

.p_bigPhone_block .bigPhone .phone a {
    font-size: 17px;
    font-weight: normal;
}

.p_bigPhone_block .bigPhone .caption {
    white-space: nowrap;
    margin-bottom: 0.2em;
}

.p_bigPhone_block__closeBut {
    position: absolute;
    cursor: pointer;
    top: 0;
    right: 0;
    padding: 0px 5px;
    color: #000;
    transition: .2s color;
    font-size: 20px;
}

.p_bigPhone_block__closeBut:hover {
    color: #999;
}

.p_bigPhone_block:not(:first-child) {
    text-align: center;
}

@media screen and (max-width: 760px) {
    .p_bigPhone_block:not(:first-child) {
        display: flex;
        justify-content: center;
        position: relative;
        transform: translate(0);
        right: 0;
    }

    .p_bigPhone_block:not(:first-child) __mobileIcon {
        display: none;
    }

    .p_bigPhone_block:not(:first-child) .caption {
        text-align: center;
        white-space: normal;
    }

    .p_bigPhone_block:first-child {
        display: flex;
        position: fixed;
        z-index: 50;
        right: 10px;
        border-radius: 10em;
        transition: opacity 1s;
        padding: 5px;
        margin: 0;
        max-height: 50px;
        overflow: hidden;
        opacity: 0;
    }

    .p_bigPhone_block:first-child .p_bigPhone_block__mobileIcon {
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 50px;
        height: 50px;
        min-width: 50px;
        box-sizing: border-box;
        font-size: 30px;
        color: #fff;
        background: teal;
        border-radius: 10em;
    }

    .p_bigPhone_block:first-child .p_bigPhone_block__mobileIcon--phone {
        display: flex;
    }

    .p_bigPhone_block:first-child .p_bigPhone_block__mobileIcon--cancel {
        display: none;
    }

    .p_bigPhone_block:first-child .cloneSource {
        align-items: center;
    }

    .p_bigPhone_block:first-child .bigPhone {
        margin: 0;
        opacity: 0;
        width: auto;
        max-width: 0;
        overflow: hidden;
        transition: max-width .5s, opacity 0s;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .p_bigPhone_block:first-child .bigPhone .caption {
        text-align: center;
        white-space: normal;
    }

    .p_bigPhone_block.p_bigPhone_block--active {
        border-radius: 10em 10px 10px 10em;
    }

    .p_bigPhone_block.p_bigPhone_block--active .bigPhone {
        opacity: 1;
        max-width: 250px;
        padding: 0px 20px;
        overflow: hidden;
        transition: max-width .5s, opacity .5s .3s;
    }

    .p_bigPhone_block.p_bigPhone_block--active .bigPhone .caption {
        white-space: normal;
        font-size: 14px;
    }

    .p_bigPhone_block.p_bigPhone_block--active .p_bigPhone_block__mobileIcon {
        background: tomato;
    }

    .p_bigPhone_block.p_bigPhone_block--active .p_bigPhone_block__mobileIcon--phone {
        display: none;
    }

    .p_bigPhone_block.p_bigPhone_block--active .p_bigPhone_block__mobileIcon--cancel {
        display: flex;
    }

    .p_bigPhone_block__closeBut {
        display: none;
    }
}