@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
:root {
    --font-family: "Inter", sans-serif;
}
body{
    overflow-x: hidden;
    width: 100vw;
    background-color: #F4F4F6;
    margin: 0;
    font-family: 'Roboto', sans-serif;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.hidden{
    display: none!important;
}
.wrap{
    flex: 1;
}
.success__content{
    width: 361px;
    background: white;
    margin: 110px auto 26px;
    padding: 56px 39px 24px;
    border-radius: 24px;
    box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -2px rgba(0, 0, 0, 0.05);
    text-align: center;
    position: relative;
}
.error__content{
    width: 361px;
    background: white;
    margin: 110px auto 26px;
    padding: 56px 39px 24px;
    border-radius: 24px;
    box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -2px rgba(0, 0, 0, 0.05);
    text-align: center;
    position: relative;
}
.success__content .QR{
    width: 253px;
    height: 253px;
    margin: auto;
    text-align: center;
}
h1{
    font-family: var(--font-family);
    font-size: 28px;
    font-weight: 700;
    line-height: 32px;
    text-align: center;
    margin: 0;
    margin-bottom: 16px;
}
.icons{
    position: absolute;
    top: -31px;
    margin: auto;
    left: 0;
    right: 0;
    text-align: center;
}
.icons img:nth-child(2){
    margin-left: -14px;
}
.subtitle{
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    text-align: center;
    color: #6A7181;
}
.error{
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    text-align: center;
    color: #6A7181;
}
.mobileOnly{
    display: none;
}
.error_wrap{
    border: 1px solid #E6E7EA;
    border-radius: 12px;
    padding: 24px;
}
h3{
    font-family: var(--font-family);
    font-size: 20px;
    font-weight: 700;
    line-height: 26px;
    text-align: center;
    margin: 8px 0;
}
footer{
    width: 100%;
    padding-bottom: 10px;
}
footer strong{
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 590;
    line-height: 20px;
    display: block;
    text-align: center;
    color:#0F172A;
}
footer div{
    font-family: var(--font-family);
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    text-align: center;
    color:#6A7181;
}
.openPage, button{
    width: 100%;
    padding: 18px;
    border-radius: 12px;
    text-align: center;
    background: #F5DB00;
    font-size: 16px;
    font-weight: 600;
    border: none;
    margin-top: 16px;
    cursor: pointer;
    color: black;
    text-decoration: none;
}
.openPage:hover,
.openPage:active,
.openPage:focus,
button:hover,
button:active,
button:focus{
    background: #e7cf05;
    text-decoration: none;
}
.callback-url,
.time {
    display: none;
}

@media only screen and (max-width: 560px) {
    .mobileOnly{
        display: block;
    }
    .success__content{
        margin-top: 60px;
    }
}
@media only screen and (max-width: 400px) {
    .success__content {
        width: 95%;
    }
}