html{
    font-size:100.01%;
    height:100%;
}
body{
    margin:0;
    font-size:64%;
    font-family:system-ui, -apple-system, BlinkMacSystemFont, "SF UI Text", "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
    color:#000;
    min-height: 100%;
    box-sizing: border-box;
    background:#f4f4f4;
    padding:0;
}
/* GENERAL */
img{
    display:block;
}
a,
a:visited{
    color:#5597b0;
    text-decoration:underline;
}
a:hover{
    text-decoration:none;
}
* {
    transition: all .2s ease-out;
}
.mt-n6 {
    margin-top: -6rem !important;
}
.v-align-middle,
.align-center {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.align-center {
    justify-content: center;
}
.radius-100 {
    border-radius: 100%;
}
.text-ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
}
.stretch {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
}
.main {
    max-width: 1200px;
    padding: 0 30px;
    margin: 0 auto;
}
.bg-holder {
    margin: 0 -30px;
}
.bg-holder .hero {
    max-width: 100%;
    border-radius: 0 0 20px 20px;
}
@media (max-width: 1200px) {
    .main {
        max-width: 100%;
    }
    .bg-holder .hero {
        border-radius: 0;
    }
}
@media (max-width: 576px) {
    .main {
        padding: 0 15px 15px;
    }
    .bg-holder {
        margin: 0 -15px;
    }
}
.logo-holder {
    margin-top: -190px;
}
.logo-holder p {
    margin-top: 90px;
}
.logo {
    border: 1px solid rgba(0,0,0,0.25);
    background: #f9f9f9;
}
.links {
    height: 100px;
    font-size: 18px;
    padding-bottom: 30px;
}
.links a {
    text-decoration: none;
    color: #1c1e21;
    padding: 8px 12px;
    border-radius: 10px;
}
.links a:hover, .links a:focus, .links a:active {
    background: #e3e3e3;
}
.links a + a {
    margin-left: 20px;
}
@media (max-width: 992px) {
    .logo-holder {
        margin-top: -150px;
    }
    .logo-holder p {
        margin-top: 15px;
        text-align: center;
    }
    .logo {
        width: 150px;
        height: 150px;
    }
    .links {
        height: 75px;
        padding-bottom: 20px;
    }
    .links a + a {
        margin-left: 10px;
    }
}
@media (max-width: 756px) {
    .links {
        padding-right: 10px;
    }
    .links a {
        padding: 12px;
    }
    .links a img {
        margin-right: 0 !important;
    }
    .links a span {
        display: none;
    }
    .links a + a {
        margin-left: 0;
    }
}
@media (max-width: 480px) {
    .logo-holder {
        margin-top: -125px;
    }
    .logo {
        width: 100px;
        height: 100px;
    }
    .links {
        padding-right: 0px;
    }
}
h2 {
    font-size: 24px;
    letter-spacing: 0.6px;
}
.bg-white {
    background: #fff;
}
.font-sm {
    font-size: 14px;
}
.font-base {
    font-size: 16px;
}
.payment {
    font-size: 22px;
}
.payment strong,
.payment span,
.payment small {
    display: block;
}
.payment .box {
    padding: 15px 20px;
    margin-bottom: 30px;
    border-radius: 10px;
    border: 1px solid #dadfe4;
    background-color: #fff;
    background-position: right 10px top 10px;
    background-repeat: no-repeat;
    background-size: 40px auto;
}
.payment .box.paypal {
    background-image: url('../images/payment/paypal.svg');
}
.payment .box.bitcoin {
    background-image: url('../images/payment/bitcoin.svg');
}
.payment .box.monobank {
    background-image: url('../images/payment/monobank.svg');
}
.payment .box.privatbank {
    background-image: url('../images/payment/privatbank.svg');
}
.payment .box.usdt {
    background-image: url('../images/payment/usdt.svg');
}
.payment .box.solana {
    background-image: url('../images/payment/solana.svg');
    background-size: 36px auto;
    background-position: right 12px top 10px;
}
.payment > .border-0 {
    border: 0;
}
.payment .box strong {
    font-size: 16px;
    text-transform: uppercase;
    color: #818285;
    letter-spacing: 0.4px;
}
.payment span:not(#usd_swift) {
    white-space: nowrap;
}
.payment small {
    font-size: 60%;
}
.payment span.sm {
    font-size: 18px;
}
@media (max-width: 992px) {
    .payment {
        font-size: 20px;
    }
}
@media (max-width: 480px) {
    .payment .order {
        margin: 0 -30px;
    }
    .payment .box {
        border-left: 0;
        border-right: 0;
        border-radius: 0;
        margin-bottom: 10px;
        background-size: 25px auto !important;
    }
}
@media (max-width: 390px) {
    .payment {
        font-size: 18px;
    }
    .payment .box strong {
        font-size: 14px;
    }
}
/*
iframe {
    height: 635px;
}
@media (min-width: 992px) and (max-width: 1120px) {
    iframe {
        height: calc(((100vw - 60px) / 2 - 30px) * 1.29);
    }
}
@media (max-width: 590px) {
    iframe {
        height: calc((100vw - 60px) * 1.48);
    }
}
*/
.btn {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    padding: 4px 12px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 0;
    transition: all .15s ease-in-out;
    text-decoration: none;
    background-color: white;
    border-color: #00ae8e;
    color: #00ae8e;
    opacity: 0.5;
}
.btn:hover,
.btn.done {
    color: #fff;
    background-color: #00ae8e;
    opacity: 1;
}
.btn.btn-icon {
    padding: 4px 8px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: 30px;
    opacity: 0.5;
}
.btn.btn-icon:hover,
.btn.btn-icon:active,
.btn.btn-icon:focus,
.btn.btn-icon.done {
    opacity: 1;
}
.btn.btn-icon svg {
    fill: #00ae8e;
    margin: 0 -3px;
}
.btn.btn-icon:hover svg,
.btn.btn-icon:active svg,
.btn.btn-icon:focus svg,
.btn.btn-icon.done svg {
    fill: #ffffff;
}
.fb-post,
.instagram-media-holder {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /*border-radius: 10px;*/
    /*border: 1px solid #dadfe4;*/
}
.instagram-media {
    max-width: unset !important;
    width: 100% !important;
    margin: 0 !important;
    border-radius: 10px !important;
}
.fb-post > span {
    /*margin: 0 auto;*/
    margin: -1px;
    display: block;
}
.fb-post iframe {
    display: block;
    background: #fff;
    margin: 0 auto;
}
.fb-post, .fb-post > span, .fb-post iframe {
    width: calc(100% + 2px);
    text-align: center !important;
    /*max-height: 700px;*/
}
.order {
    display: flex;
    flex-direction: column;
}
.order .box {
    order: 3;
}
.order.en .order-en-1,
.order.en-en .order-en-1,
.order.uk .order-uk-1,
.order.uk-uk .order-uk-1,
.order.ru .order-uk-1,
.order.ru-ru .order-uk-1 {
    order: 1;
}
.order.uk .order-uk-2,
.order.uk-uk .order-uk-2,
.order.ru .order-uk-2,
.order.ru-ru .order-uk-2 {
    order: 2;
}

/* REPORT */
.description {
    font-size: 16px;
    max-width: 760px;
    padding: 0 30px 60px;
    margin: 0 auto;
}

@media (max-width: 480px) {
    .description {
        padding: 0 15px 60px;
    }
}

.description p {

}

.description ol {
    padding-left: 0;
    list-style-position: inside;
}

.description ol > li {
    margin-bottom: 20px;
    font-weight: 500;
}

.description ol ul {
    padding-block-start: 5px;
    list-style-position: outside;
    font-weight: normal;
}

.description ol ul li {
    margin-bottom: 5px;
}