.sd-lbottom-block {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 1230px;
    margin: 0 auto;
    background: #5042a7;
    color: #fff;
    border-radius: 10px 10px 0 0;
    z-index: 9999;
    transform: translateY(150%);
    transition: all 0.2s;
 }
 .sd-lbottom-block__active {
    transform: translateY(0) !important;
 }
 .sd-lbottom-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px 30px;
    text-align: center;
 }
 .sd-lbottom-block__icon {
    position: relative;
 }
 .sd-lbottom-block__icon svg {
    width: 140px;
    height: 140px;
    fill: #7e72d3;
    position: relative;
    margin: 0 auto;
 }
 .sd-lbottom-block__text {
    font-size: 18px;
    line-height: var(--lne-14);
    margin: 5px 0 20px;
 }
 .sd-lbottom-block__go {
    width: 200px;
 }
 .sd-lbottom-block__go .btn {
    background: #fff;
    display: block;
    width: 150px;
    height: 50px;
    line-height: 50px;
    padding: 0;
    border-radius: 5px;
    -webkit-box-shadow: 0 3px 15px 5px rgb(0 0 0 / 5%);
    -moz-box-shadow: 0 3px 15px 5px rgba(0, 0, 0, 0.05);
    box-shadow: 0 3px 15px 5px rgb(0 0 0 / 5%);
    font-size: 16px;
    color: #444444;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
 }
 .sd-lbottom-block__close {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    padding: 0;
    border: none;
    border-radius: 0;
    fill: rgba(255, 255, 255, 0.5);
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
 }
 .sd-lbottom-block__close svg {
    width: 20px;
    height: 20px;
 }
 @media (min-width: 992px) {
    .sd-lbottom-block {
       left: 10px;
       right: 10px;
       bottom: 30px;
       border-radius: 10px;
    }
    .sd-lbottom-inner {
       height: 100px;
       flex-direction: row;
       padding: 0;
       text-align: left;
    }
    .sd-lbottom-block__icon {
       width: 230px;
       text-align: center;
    }
    .sd-lbottom-block__icon svg {
       position: absolute;
       top: -70px;
       left: 0;
       right: 0;
       text-align: center;
    }
    .sd-lbottom-block__text {
       width: calc(100% - 430px);
       font-size: 22px;
       margin: 0;
    }
 }
 @media (max-width: 991px) {
    .sd-lbottom-block__go .btn {
       width: 200px;
    }
 }