.popup-block {
    animation: modalShow 1s both;
    margin-bottom: 15px;
    padding: 20px 60px;
    position: relative;
    border: solid rgb(46, 170, 252) 2px;
    border-radius: 10px;
    background-color: rgb(239, 244, 255);
}

.popup-block__button {
    color: rgb(94, 94, 94);
    cursor: pointer;
    transform: rotate(45deg);
    font-size: 28px;
    position: absolute;
    top: 5px;
    right: 20px;
}
.popup-calc {
    top: 5.5% !important;
}

.popup-block__title-link {
    color: rgb(46, 170, 252) !important;
    font-size: 14px;
}

.popup-block__title-link:hover {
    color: rgb(0, 102, 255)!important;
}

.popup-block__title {
    margin: 0;
    font-size: 24px;
}

.popup-block__text {
    margin: 0;
    font-size: 14px;
}

.popup-block--disable {
    display: none;
}

@keyframes modalHide {
 
    from { opacity:1;}
    to {  opacity:0; display: none;}
  }
  @keyframes modalShow {
 
    from { opacity:0; }
    to {  opacity:1; }
  }


.popup-block__i {
    text-align: center;
    width: 25px;
    height: 25px;
    color: rgb(255, 255, 255);
    background-color: rgb(0, 102, 255);
    border-radius: 50%;
    font-size: 20px;
    position: absolute;
    top: 25px;
    left: 20px;
}

