@font-face
{
    font-family: 'Arial';
    src: url('./assets/arial.ttf');
}

*
{
    margin: 0;
    padding: 0;
}

html,
body
{
    font-family: 'Arial', serif;
    font-weight: 400;
    height: 100%;
    box-sizing: border-box;
}
.wrapper
{
    display: flex;
    flex-direction: column;
    max-width: 990px;
    height: calc(100% - 30px);
    margin: 0 auto;
    padding: 15px;
}
.content
{
    flex: 1 0 auto;
}

/* HEADER */
.header
{
    margin-bottom: 30px;
}
.header__title
{
    font-size: 32px;
    line-height: 36.8px;
}
.header__title--rejected
{
    color: #E74E0D;
}
.header__title--complited::after
{
    content: '';
    margin-left: 5px;
    display: inline-block;
    width: 37px;
    height: 37px;
    background: url('./assets/done.svg') center no-repeat;
    transform: translateY(5px);
}
.header__subtitle
{
    font-size: 18px;
    line-height: 26px;
    color: #57606C;
}

/* BILL */
.bill
{
    margin-bottom: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(390px, 1fr));
    gap: 20px;
}
.bill__wrp
{
    padding: 18px;
    border-radius: 15px;
    background-color: #F5F6F6;
}
.bill__title
{
    font-size: 16px;
    line-height: 26px;
    color: #57606C;
}
.bill__info
{
    display: flex;
    align-items: left;
    flex-direction: column;
    gap: 5px;
    font-size: 24px;
    line-height: 26px;
    max-height: 150px;
    overflow: auto;
}
.bill__value
{
    display: flex;
    align-items: center;
    gap: 5px;
}
.bill__img
{
    border-radius: 50%;
    width: 26px;
    height: 26px;
    object-fit: cover;
}
.bill__link
{
    display: block;
    text-decoration: none;
    width: 26px;
    height: 26px;
}
.bill__link--tg
{
    background: url('./assets/telegram.svg') center no-repeat;
}
.bill__link--vk
{
    background: url('./assets/vkontakte.svg') center no-repeat;
}
.bill__link--email
{
    background: url('./assets/email.svg') center no-repeat;
}
.bill__link--facebook
{
    background: url('./assets/facebook.svg') center no-repeat;
}
.bill__link--instagram
{
    background: url('./assets/instagram.png') center no-repeat;
}
.bill__link--whatsapp
{
    background: url('./assets/whatsapp.svg') center no-repeat;
}
.bill__link--viber
{
    background: url('./assets/viber.svg') center no-repeat;
}
.bill__link--phone
{
    background: url('./assets/phone.svg') center no-repeat;
}

/* COMMENTARY */
.commentary
{
    margin-bottom: 20px;
    word-wrap: break-word;
    text-wrap: wrap;
}
.commentary__title
{
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 26px;
}
.commentary__text
{
    font-size: 16px;
    line-height: 26px;
}

/* FAQ */
.faq
{
    margin-top: 30px;
    border: 1px solid #E74E0D;
    border-radius: 15px;
    background-color: #FADCCF;
    padding: 20px;
}
.faq__list
{
    margin-top: 10px;
    margin-left: 15px;
}
.faq__element
{
    font-size: 16px;
    line-height: 20px;
}

.iframe
{
    margin: 0 auto;
    width: 100%;
    min-height: 505px;
    background-color: #F5F6F6;
    border-radius: 15px;
}
.btn
{
    display: block;
    width: 100%;
    max-width: 350px;
    padding: 8px;
    margin: 0 auto;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    line-height: 24px;
    cursor: pointer;
}
.btn--primary
{
    color: #FFF;
    background-color: #4365AE;
}
.btn--secondary
{
    color: #4365AE;
    background-color: #F4F6F9;
}

/* FOOTER */
.footer {
    margin: 20px auto 0;
    flex: 0 0 auto;
}
.footer__list
{
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 15px;
    list-style: none;
}
.footer__link
{
    text-decoration: none;
    color: #4365AE;
}
