.popup_window {
    position: fixed;
    max-width: 900px;
    width: 100%;
    height: auto;
    left: calc(50% - 900px/2 + 0.5px);
    bottom: 24px;
    z-index: 10000;
    background: #FFFFFF;
    border: 2px solid #4DC3FF;
    box-shadow: 4px 4px 18px rgba(0, 0, 0, 0.2);
    border-radius: 6px;
}

.popup_window * {
    box-sizing: border-box;
}

.popup_window__container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    height: 100%;
    padding: 20px 30px;
}
  
.popup_window__text, .popup_window__link, .popup_window__description {
    font-family: 'Roboto',sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 140%;
    color: #000000;
    margin: 0;
}
  
.popup_window__link {
    color: #4DC3FF;
}
  
.popup_window__description {
    font-weight: 400;
    color: #333333;
}
  
.popup_window__link:hover {
    color: #333333;
    text-decoration: underline;
}
  
.popup_window__button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 125px;
    height: 50px;
    border: none;
    font-family: 'PT Sans Caption',sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    background: #ea4646;
    color: white;
    border: none;
    padding: 11px 10px;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
    background: #DC1616;
    border-radius: 50px;
}

.footer-row-custom {
    padding-left: .75rem;
    padding-right: .75rem;
}

.footer-row-custom a {
    margin-right: 20px;
}

@media (max-width: 900px) {
    .popup_window {
        width: calc(100% - 40px);
        left: 20px;
        right: 20px;
    }
    .popup_window__button {
        min-width: 130px;
        font-size: 14px;
    }
}
  
@media (max-width: 680px) {
    .popup_window__container {
        width: 100%;
    }
    .popup_window__text, .popup_window__link, .popup_window__description {
        font-size: 14px;
    }
    .popup_window__button {
        font-size: 14px;
    }
    .footer-row-custom {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}
@media (max-width: 480px) {
    .popup_window__button {
        width: 117px;
        height: 38px;
    }
}
@media (max-width: 360px) {
    .popup_window__container {
        flex-direction: column;
    }
    .popup_window__text, .popup_window__link, .popup_window__description {
        width: 202px;
        font-size: 13px;
    }
    .popup_window__button {
        width: 113px;
        font-size: 13px;
    }
}
