.chat-close {
    position: absolute;
    right: 30px;
    top: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    opacity: .9;
    background-color: transparent;
    cursor: pointer;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 0;
}
.text-string
{
    margin-top:10px;
}

.chat-close::after, .chat-close::before {
    background-color: #49134c;
    height: 21px;
    position: absolute;
    content: " ";
    width: 2px;
}

.chat-close::before {
    -webkit-transform: rotate(
            45deg);
    transform: rotate(
            45deg);
}

.chat-close::after {
    -webkit-transform: rotate(
            -45deg);
    transform: rotate(
            -45deg);
}

.info_wrap {
    display: none;
    position: fixed;
    z-index: 300;
    right: 0;
    top: 0;
    width: 550px;
    padding: 80px 40px 40px;
    box-shadow: 0 9px 0 0 #fff, 0 -9px 0 0 #fff, 12px 0 15px -4px rgb(0 0 0 / 10%), -12px 0 15px -4px rgb(0 0 0 / 10%);
    background: white;
    font-family: GothamPro;
    letter-spacing: -.25px;
    color: #231f20;
}

.info_wrap h3 {
    font-weight: 500;
    font-size: 25px;
    line-height: 25px;
    margin-bottom: 40px;
}

.info_wrap p {
    font-weight: 400;
    font-size: 15px;
    line-height: 15px;
    margin-bottom: 25px;
}

@media screen and (max-width: 767px) {
    .info_wrap {
        width: 100%;
    }
}