﻿.btn {
    white-space: nowrap;
    border: 2px solid transparent;
    border-radius: 4px;
    font-size: 16px;
    line-height: 16px;
    font-weight: 800;
    text-transform: uppercase;
    transition: all .3s ease;
    padding: 14px 20px;
    text-decoration: none;
    text-align: center;
    display: inline-block;
    vertical-align: middle
}

.btn:hover {
    text-decoration: none
}

.btn-big {
    padding: 22px 33px
}

.btn-block {
    display: block;
    width: 100%
}

.btn-green {
    background: var(--surface_active_primary-enabled);
    border-color: var(--surface_active_primary-enabled);
    color: #fff
}

.btn-green:hover {
    background: var(--green-70);
    border-color: var(--green-70);
    color: #fff
}

.btn-green:disabled {
    background: #0bc466;
    border-color: #0bc466;
    color: #fff
}

.btn-white {
    background: #fff;
    border-color: #fff;
    color: #18181e
}

.btn-white:hover {
    background: #e8e8e9;
    border-color: #e8e8e9;
    color: #18181e
}

.btn-black {
    background: #18181e;
    border-color: #18181e;
    color: #fff
}

.btn-black:hover {
    border-color: #46464b;
    background: #46464b;
    color: #fff
}

.btn-gray {
    background: #e8e8e9;
    border-color: #e8e8e9;
    color: #18181e
}

.btn-gray:hover {
    border-color: #d1d1d2;
    background: #d1d1d2;
    color: #18181e
}

.btn-border-black {
    background: transparent;
    border-color: #18181e;
    color: #18181e
}

.btn-border-black:hover {
    background: #18181e;
    border-color: #18181e;
    color: #fff
}

.btn-border-black-solid-bg {
    background: #fff
}

.btn-border-black-solid-bg:hover {
    background: #18181e
}

.btn-border-white {
    background: transparent;
    border-color: #fff;
    color: #fff
}

.btn-border-white:hover {
    background: #e8e8e9;
    border-color: #e8e8e9;
    color: #18181e
}

.btn-border-green {
    background: transparent;
    border-color: #0bc466;
    color: #0bc466
}

.btn-border-green:hover {
    background: #09a355;
    border-color: #09a355;
    color: #fff
}

.btn-border-green-solid-bg {
    background: #fff
}

.btn-border-green-solid-bg:hover {
    background: #09a355
}

.btn-border-gray {
    background: transparent;
    border-color: #e8e8e9;
    color: #18181e
}

.btn-border-gray:hover {
    background: #d1d1d2;
    border-color: #d1d1d2;
    color: #18181e
}

.btn-border-gray-solid-bg {
    background: #fff
}

.btn-border-gray-solid-bg:hover {
    background: #d1d1d2
}

.btn-border-gray-white-text {
    color: #fff
}

.btn-border-gray-white-text:hover {
    color: #18181e
}

.btn-app {
    color: #18181e;
    background: #fff;
    border: 1px solid rgba(24, 24, 30, .3);
    font-size: 20px;
    padding: 8px 24px 6px 50px;
    line-height: 1;
    white-space: nowrap;
    display: inline-block;
    position: relative
}

.btn-app svg {
    position: absolute;
    left: 14px
}

.btn-app small {
    font-size: 10px;
    color: #18181e99;
    text-transform: uppercase;
    display: block
}

.btn-app:hover {
    color: #18181e
}

.dark-theme .btn-black {
    background: #fff;
    border-color: #fff;
    color: #18181e
}

.dark-theme .btn-black:hover {
    background: #e8e8e9;
    border-color: #e8e8e9;
    color: #18181e
}

.modal {
    --bs-modal-zindex: 1055;
    --bs-modal-width: 500px;
    --bs-modal-padding: 1rem;
    --bs-modal-margin: .5rem;
    --bs-modal-color: var(--bs-body-color);
    --bs-modal-bg: var(--bs-body-bg);
    --bs-modal-border-color: var(--bs-border-color-translucent);
    --bs-modal-border-width: var(--bs-border-width);
    --bs-modal-border-radius: var(--bs-border-radius-lg);
    --bs-modal-box-shadow: var(--bs-box-shadow-sm);
    --bs-modal-inner-border-radius: calc(var(--bs-border-radius-lg) - (var(--bs-border-width)));
    --bs-modal-header-padding-x: 1rem;
    --bs-modal-header-padding-y: 1rem;
    --bs-modal-header-padding: 1rem 1rem;
    --bs-modal-header-border-color: var(--bs-border-color);
    --bs-modal-header-border-width: var(--bs-border-width);
    --bs-modal-title-line-height: 1.5;
    --bs-modal-footer-gap: .5rem;
    --bs-modal-footer-bg: ;
    --bs-modal-footer-border-color: var(--bs-border-color);
    --bs-modal-footer-border-width: var(--bs-border-width);
    position: fixed;
    top: 0;
    left: 0;
    z-index: var(--bs-modal-zindex);
    display: none;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: var(--bs-modal-margin);
    pointer-events: none
}

.modal.fade .modal-dialog {
    transform: translateY(-50px);
    transition: transform .3s ease-out
}

@media (prefers-reduced-motion: reduce) {
    .modal.fade .modal-dialog {
        transition: none
    }
}

.modal.show .modal-dialog {
    transform: none
}

.modal.modal-static .modal-dialog {
    transform: scale(1.02)
}

.modal-dialog-scrollable {
    height: calc(100% - var(--bs-modal-margin) * 2)
}

.modal-dialog-scrollable .modal-content {
    max-height: 100%;
    overflow: hidden
}

.modal-dialog-scrollable .modal-body {
    overflow-y: auto
}

.modal-dialog-centered {
    display: flex;
    align-items: center;
    min-height: calc(100% - var(--bs-modal-margin) * 2)
}

.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    color: var(--bs-modal-color);
    pointer-events: auto;
    background-color: var(--bs-modal-bg);
    background-clip: padding-box;
    border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
    border-radius: var(--bs-modal-border-radius);
    outline: 0
}

.modal-backdrop {
    --bs-backdrop-zindex: 1050;
    --bs-backdrop-bg: #000;
    --bs-backdrop-opacity: .5;
    position: fixed;
    top: 0;
    left: 0;
    z-index: var(--bs-backdrop-zindex);
    width: 100vw;
    height: 100vh;
    background-color: var(--bs-backdrop-bg)
}

.modal-backdrop.fade {
    opacity: 0
}

.modal-backdrop.show {
    opacity: var(--bs-backdrop-opacity)
}

.modal-header {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    padding: var(--bs-modal-header-padding);
    border-bottom: var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);
    border-top-left-radius: var(--bs-modal-inner-border-radius);
    border-top-right-radius: var(--bs-modal-inner-border-radius)
}

.modal-header .btn-close {
    padding: calc(var(--bs-modal-header-padding-y) * .5) calc(var(--bs-modal-header-padding-x) * .5);
    margin-top: calc(-.5 * var(--bs-modal-header-padding-y));
    margin-right: calc(-.5 * var(--bs-modal-header-padding-x));
    margin-bottom: calc(-.5 * var(--bs-modal-header-padding-y));
    margin-left: auto
}

.modal-title {
    margin-bottom: 0;
    line-height: var(--bs-modal-title-line-height)
}

.modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: var(--bs-modal-padding)
}

.modal-footer {
    display: flex;
    flex-shrink: 0;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    padding: calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap) * .5);
    background-color: var(--bs-modal-footer-bg);
    border-top: var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);
    border-bottom-right-radius: var(--bs-modal-inner-border-radius);
    border-bottom-left-radius: var(--bs-modal-inner-border-radius)
}

.modal-footer>* {
    margin: calc(var(--bs-modal-footer-gap) * .5)
}

@media (min-width: 576px) {
    .modal {
        --bs-modal-margin: 1.75rem;
        --bs-modal-box-shadow: var(--bs-box-shadow)
    }

    .modal-dialog {
        max-width: var(--bs-modal-width);
        margin-right: auto;
        margin-left: auto
    }

    .modal-sm {
        --bs-modal-width: 300px
    }
}

@media (min-width: 992px) {

    .modal-lg,
    .modal-xl {
        --bs-modal-width: 800px
    }
}

@media (min-width: 1200px) {
    .modal-xl {
        --bs-modal-width: 1140px
    }
}

.modal-fullscreen {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0
}

.modal-fullscreen .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0
}

.modal-fullscreen .modal-header,
.modal-fullscreen .modal-footer {
    border-radius: 0
}

.modal-fullscreen .modal-body {
    overflow-y: auto
}

@media (max-width: 575.98px) {
    .modal-fullscreen-sm-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0
    }

    .modal-fullscreen-sm-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0
    }

    .modal-fullscreen-sm-down .modal-header,
    .modal-fullscreen-sm-down .modal-footer {
        border-radius: 0
    }

    .modal-fullscreen-sm-down .modal-body {
        overflow-y: auto
    }
}

@media (max-width: 767.98px) {
    .modal-fullscreen-md-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0
    }

    .modal-fullscreen-md-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0
    }

    .modal-fullscreen-md-down .modal-header,
    .modal-fullscreen-md-down .modal-footer {
        border-radius: 0
    }

    .modal-fullscreen-md-down .modal-body {
        overflow-y: auto
    }
}

@media (max-width: 991.98px) {
    .modal-fullscreen-lg-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0
    }

    .modal-fullscreen-lg-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0
    }

    .modal-fullscreen-lg-down .modal-header,
    .modal-fullscreen-lg-down .modal-footer {
        border-radius: 0
    }

    .modal-fullscreen-lg-down .modal-body {
        overflow-y: auto
    }
}

@media (max-width: 1199.98px) {
    .modal-fullscreen-xl-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0
    }

    .modal-fullscreen-xl-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0
    }

    .modal-fullscreen-xl-down .modal-header,
    .modal-fullscreen-xl-down .modal-footer {
        border-radius: 0
    }

    .modal-fullscreen-xl-down .modal-body {
        overflow-y: auto
    }
}

@media (max-width: 1399.98px) {
    .modal-fullscreen-xxl-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0
    }

    .modal-fullscreen-xxl-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0
    }

    .modal-fullscreen-xxl-down .modal-header,
    .modal-fullscreen-xxl-down .modal-footer {
        border-radius: 0
    }

    .modal-fullscreen-xxl-down .modal-body {
        overflow-y: auto
    }
}

.dropup,
.dropend,
.dropdown,
.dropstart,
.dropup-center,
.dropdown-center {
    position: relative
}

.dropdown-toggle {
    white-space: nowrap
}

.dropdown-toggle:after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent
}

.dropdown-toggle:empty:after {
    margin-left: 0
}

.dropdown-menu {
    --bs-dropdown-zindex: 1000;
    --bs-dropdown-min-width: 10rem;
    --bs-dropdown-padding-x: 0;
    --bs-dropdown-padding-y: .5rem;
    --bs-dropdown-spacer: .125rem;
    --bs-dropdown-font-size: 1rem;
    --bs-dropdown-color: var(--bs-body-color);
    --bs-dropdown-bg: var(--bs-body-bg);
    --bs-dropdown-border-color: var(--bs-border-color-translucent);
    --bs-dropdown-border-radius: var(--bs-border-radius);
    --bs-dropdown-border-width: var(--bs-border-width);
    --bs-dropdown-inner-border-radius: calc(var(--bs-border-radius) - var(--bs-border-width));
    --bs-dropdown-divider-bg: var(--bs-border-color-translucent);
    --bs-dropdown-divider-margin-y: .5rem;
    --bs-dropdown-box-shadow: var(--bs-box-shadow);
    --bs-dropdown-link-color: var(--bs-body-color);
    --bs-dropdown-link-hover-color: var(--bs-body-color);
    --bs-dropdown-link-hover-bg: var(--bs-tertiary-bg);
    --bs-dropdown-link-active-color: #fff;
    --bs-dropdown-link-active-bg: #0d6efd;
    --bs-dropdown-link-disabled-color: var(--bs-tertiary-color);
    --bs-dropdown-item-padding-x: 1rem;
    --bs-dropdown-item-padding-y: .25rem;
    --bs-dropdown-header-color: #6c757d;
    --bs-dropdown-header-padding-x: 1rem;
    --bs-dropdown-header-padding-y: .5rem;
    position: absolute;
    z-index: var(--bs-dropdown-zindex);
    display: none;
    min-width: var(--bs-dropdown-min-width);
    padding: var(--bs-dropdown-padding-y) var(--bs-dropdown-padding-x);
    margin: 0;
    font-size: var(--bs-dropdown-font-size);
    color: var(--bs-dropdown-color);
    text-align: left;
    list-style: none;
    background-color: var(--bs-dropdown-bg);
    background-clip: padding-box;
    border: var(--bs-dropdown-border-width) solid var(--bs-dropdown-border-color);
    border-radius: var(--bs-dropdown-border-radius)
}

.dropdown-menu[data-bs-popper] {
    top: 100%;
    left: 0;
    margin-top: var(--bs-dropdown-spacer)
}

.dropdown-menu-start {
    --bs-position: start
}

.dropdown-menu-start[data-bs-popper] {
    right: auto;
    left: 0
}

.dropdown-menu-end {
    --bs-position: end
}

.dropdown-menu-end[data-bs-popper] {
    right: 0;
    left: auto
}

@media (min-width: 576px) {
    .dropdown-menu-sm-start {
        --bs-position: start
    }

    .dropdown-menu-sm-start[data-bs-popper] {
        right: auto;
        left: 0
    }

    .dropdown-menu-sm-end {
        --bs-position: end
    }

    .dropdown-menu-sm-end[data-bs-popper] {
        right: 0;
        left: auto
    }
}

@media (min-width: 768px) {
    .dropdown-menu-md-start {
        --bs-position: start
    }

    .dropdown-menu-md-start[data-bs-popper] {
        right: auto;
        left: 0
    }

    .dropdown-menu-md-end {
        --bs-position: end
    }

    .dropdown-menu-md-end[data-bs-popper] {
        right: 0;
        left: auto
    }
}

@media (min-width: 992px) {
    .dropdown-menu-lg-start {
        --bs-position: start
    }

    .dropdown-menu-lg-start[data-bs-popper] {
        right: auto;
        left: 0
    }

    .dropdown-menu-lg-end {
        --bs-position: end
    }

    .dropdown-menu-lg-end[data-bs-popper] {
        right: 0;
        left: auto
    }
}

@media (min-width: 1200px) {
    .dropdown-menu-xl-start {
        --bs-position: start
    }

    .dropdown-menu-xl-start[data-bs-popper] {
        right: auto;
        left: 0
    }

    .dropdown-menu-xl-end {
        --bs-position: end
    }

    .dropdown-menu-xl-end[data-bs-popper] {
        right: 0;
        left: auto
    }
}

@media (min-width: 1400px) {
    .dropdown-menu-xxl-start {
        --bs-position: start
    }

    .dropdown-menu-xxl-start[data-bs-popper] {
        right: auto;
        left: 0
    }

    .dropdown-menu-xxl-end {
        --bs-position: end
    }

    .dropdown-menu-xxl-end[data-bs-popper] {
        right: 0;
        left: auto
    }
}

.dropup .dropdown-menu[data-bs-popper] {
    top: auto;
    bottom: 100%;
    margin-top: 0;
    margin-bottom: var(--bs-dropdown-spacer)
}

.dropup .dropdown-toggle:after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: 0;
    border-right: .3em solid transparent;
    border-bottom: .3em solid;
    border-left: .3em solid transparent
}

.dropup .dropdown-toggle:empty:after {
    margin-left: 0
}

.dropend .dropdown-menu[data-bs-popper] {
    top: 0;
    right: auto;
    left: 100%;
    margin-top: 0;
    margin-left: var(--bs-dropdown-spacer)
}

.dropend .dropdown-toggle:after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid transparent;
    border-right: 0;
    border-bottom: .3em solid transparent;
    border-left: .3em solid
}

.dropend .dropdown-toggle:empty:after {
    margin-left: 0
}

.dropend .dropdown-toggle:after {
    vertical-align: 0
}

.dropstart .dropdown-menu[data-bs-popper] {
    top: 0;
    right: 100%;
    left: auto;
    margin-top: 0;
    margin-right: var(--bs-dropdown-spacer)
}

.dropstart .dropdown-toggle:after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: ""
}

.dropstart .dropdown-toggle:after {
    display: none
}

.dropstart .dropdown-toggle:before {
    display: inline-block;
    margin-right: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid transparent;
    border-right: .3em solid;
    border-bottom: .3em solid transparent
}

.dropstart .dropdown-toggle:empty:after {
    margin-left: 0
}

.dropstart .dropdown-toggle:before {
    vertical-align: 0
}

.dropdown-divider {
    height: 0;
    margin: var(--bs-dropdown-divider-margin-y) 0;
    overflow: hidden;
    border-top: 1px solid var(--bs-dropdown-divider-bg);
    opacity: 1
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
    clear: both;
    font-weight: 400;
    color: var(--bs-dropdown-link-color);
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    border-radius: var(--bs-dropdown-item-border-radius, 0)
}

.dropdown-item:hover,
.dropdown-item:focus {
    color: var(--bs-dropdown-link-hover-color);
    background-color: var(--bs-dropdown-link-hover-bg)
}

.dropdown-item.active,
.dropdown-item:active {
    color: var(--bs-dropdown-link-active-color);
    text-decoration: none;
    background-color: var(--bs-dropdown-link-active-bg)
}

.dropdown-item.disabled,
.dropdown-item:disabled {
    color: var(--bs-dropdown-link-disabled-color);
    pointer-events: none;
    background-color: transparent
}

.dropdown-menu.show {
    display: block
}

.dropdown-header {
    display: block;
    padding: var(--bs-dropdown-header-padding-y) var(--bs-dropdown-header-padding-x);
    margin-bottom: 0;
    font-size: .875rem;
    color: var(--bs-dropdown-header-color);
    white-space: nowrap
}

.dropdown-item-text {
    display: block;
    padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
    color: var(--bs-dropdown-link-color)
}

.dropdown-menu-dark {
    --bs-dropdown-color: #dee2e6;
    --bs-dropdown-bg: #343a40;
    --bs-dropdown-border-color: var(--bs-border-color-translucent);
    --bs-dropdown-box-shadow: ;
    --bs-dropdown-link-color: #dee2e6;
    --bs-dropdown-link-hover-color: #fff;
    --bs-dropdown-divider-bg: var(--bs-border-color-translucent);
    --bs-dropdown-link-hover-bg: rgba(255, 255, 255, .15);
    --bs-dropdown-link-active-color: #fff;
    --bs-dropdown-link-active-bg: #0d6efd;
    --bs-dropdown-link-disabled-color: #adb5bd;
    --bs-dropdown-header-color: #adb5bd
}

.dropdown {
    position: relative
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    padding: 15px 12px;
    margin-top: 10px;
    background: #fff;
    box-shadow: 0 25px 50px #1c304426;
    border-radius: 0;
    border: none;
    z-index: 1001;
    list-style: none
}

.show>.dropdown-menu {
    display: block
}

.loader,
.loader:after {
    border-radius: 50%;
    width: 38px;
    height: 38px
}

.loader {
    display: block;
    margin: 0 auto;
    position: relative;
    border-top: 2px solid #e8e8e9;
    border-right: 2px solid #e8e8e9;
    border-bottom: 2px solid #e8e8e9;
    border-left: 2px solid #18181e;
    transform: translateZ(0);
    animation: load8 1.1s infinite linear
}

@keyframes load8 {
    0% {
        transform: rotate(0)
    }

    to {
        transform: rotate(360deg)
    }
}

.modal-content {
    border: none;
    border-radius: 0
}

.modal-header {
    border: none
}

.modal-header .close {
    font-size: 35px;
    color: #18181e99;
    transition: color .3s ease;
    margin: 0 -9px 0 0;
    line-height: 1;
    padding: 0 9px
}

.modal-header .close:hover {
    color: #18181e
}

.modal-title {
    font-weight: 300
}

.modal-footer {
    border: none
}

@media all and (min-width: 768px) {
    .modal-header {
        padding: 35px
    }

    .modal-header+.modal-body {
        padding-top: 0
    }

    .modal-body {
        padding: 35px
    }

    .modal-title {
        font-size: 25px
    }

    .modal-footer {
        padding: 0 35px 35px
    }
}

@media all and (max-width: 767px) {
    .modal-header {
        padding: 15px
    }

    .modal-header+.modal-body {
        padding-top: 0
    }

    .modal-body {
        padding: 15px
    }

    .modal-title {
        font-size: 20px
    }

    .modal-footer {
        padding: 0 15px 15px
    }
}

.collapse-container .collapse-content {
    display: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease-out, padding .3s ease-out
}

.collapse-header {
    cursor: pointer;
    border-radius: 8px
}

.collapse-header .collapse-arrow svg,
.collapse-header .collapse-arrow-turned,
.collapse-header .collapse-arrow-turned svg {
    transition: transform .3s
}

.collapse-container.open .collapse-header .collapse-arrow svg {
    transform: rotate(180deg)
}

.collapse-container.open .collapse-header .collapse-arrow-turned,
.collapse-container.open .collapse-header .collapse-arrow-turned svg {
    transform: rotate(0)
}

*,
*:before,
*:after {
    box-sizing: border-box
}

@media (prefers-reduced-motion: no-preference) {
    :root {
        scroll-behavior: smooth
    }
}

p {
    margin-top: 0;
    margin-bottom: 1rem
}

ol,
ul {
    padding-left: 2rem;
    margin-top: 0;
    margin-bottom: 1rem
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0
}

b,
strong {
    font-weight: bolder
}

small {
    font-size: .875em
}

code {
    font-size: .875em;
    color: var(--decorative-amaranth);
    word-wrap: break-word
}

figure {
    margin: 0 0 1rem
}

img,
svg {
    vertical-align: middle
}

table {
    caption-side: bottom;
    border-collapse: collapse
}

th {
    text-align: inherit;
    text-align: -webkit-match-parent
}

thead,
tbody,
tfoot,
tr,
td,
th {
    border-color: inherit;
    border-style: solid;
    border-width: 0
}

label {
    display: inline-block
}

button {
    border-radius: 0;
    color: var(--text-strong)
}

input,
button,
optgroup,
textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit
}

button,
[type=button],
[type=reset],
[type=submit] {
    -webkit-appearance: button
}

button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
    cursor: pointer
}

::-moz-focus-inner {
    padding: 0;
    border-style: none
}

fieldset {
    min-width: 0;
    padding: 0;
    margin: 0;
    border: 0
}

::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
:-webkit-datetime-edit-minute,
:-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
    padding: 0
}

iframe {
    border: 0
}

.d-inline {
    display: inline !important
}

.d-inline-block {
    display: inline-block !important
}

.d-block {
    display: block !important
}

.d-table {
    display: table !important
}

.d-flex {
    display: flex !important
}

.flex-wrap {
    flex-wrap: wrap !important
}

.d-none {
    display: none !important
}

.position-relative {
    position: relative !important
}

.justify-content-center {
    justify-content: center !important
}

.justify-content-between {
    justify-content: space-between !important
}

.justify-content-around {
    justify-content: space-around !important
}

.align-items-end {
    align-items: flex-end !important
}

.align-items-center {
    align-items: center !important
}

.m-2 {
    margin: .5rem !important
}

.mt-5 {
    margin-top: 3rem !important
}

.mb-3 {
    margin-bottom: 1rem !important
}

.p-0 {
    padding: 0 !important
}

.p-2 {
    padding: .5rem !important
}

.p-4 {
    padding: 1.5rem !important
}

.pt-5 {
    padding-top: 3rem !important
}

.text-start {
    text-align: left !important
}

.text-center {
    text-align: center !important
}

.text-white {
    color: var(--base-white) !important
}

.text-info {
    color: #0dcaf0 !important
}

.bg-dark {
    background-color: var(--surface-inverted) !important
}

.border {
    border: 1px solid var(--border-weak) !important
}

.rounded {
    border-radius: 8px !important
}

.visible {
    visibility: visible !important
}

@media (min-width: 576px) {
    .d-sm-block {
        display: block !important
    }

    .d-sm-none {
        display: none !important
    }
}

@media (min-width: 768px) {
    .d-md-inline {
        display: inline !important
    }

    .d-md-inline-block {
        display: inline-block !important
    }

    .d-md-block {
        display: block !important
    }

    .d-md-table-cell {
        display: table-cell !important
    }

    .d-md-flex {
        display: flex !important
    }

    .d-md-none {
        display: none !important
    }
}

@media (min-width: 992px) {
    .d-lg-inline {
        display: inline !important
    }

    .d-lg-inline-block {
        display: inline-block !important
    }

    .d-lg-block {
        display: block !important
    }

    .d-lg-grid {
        display: grid !important
    }

    .d-lg-table-cell {
        display: table-cell !important
    }

    .d-lg-flex {
        display: flex !important
    }

    .d-lg-inline-flex {
        display: inline-flex !important
    }

    .d-lg-none {
        display: none !important
    }
}

@media (min-width: 1200px) {
    .d-xl-inline {
        display: inline !important
    }

    .d-xl-inline-block {
        display: inline-block !important
    }

    .d-xl-block {
        display: block !important
    }

    .d-xl-flex {
        display: flex !important
    }

    .d-xl-inline-flex {
        display: inline-flex !important
    }

    .d-xl-none {
        display: none !important
    }
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-top: 0;
    margin-right: -.75rem;
    margin-left: -.75rem
}

.row>* {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: .75rem;
    padding-left: .75rem;
    margin-top: 0
}

.col {
    flex: 1 0 0%
}

.col-1 {
    flex: 0 0 auto;
    width: 8.33333333%
}

.col-2 {
    flex: 0 0 auto;
    width: 16.66666667%
}

.col-3 {
    flex: 0 0 auto;
    width: 25%
}

.col-4 {
    flex: 0 0 auto;
    width: 33.33333333%
}

.col-5 {
    flex: 0 0 auto;
    width: 41.66666667%
}

.col-6 {
    flex: 0 0 auto;
    width: 50%
}

.col-7 {
    flex: 0 0 auto;
    width: 58.33333333%
}

.col-8 {
    flex: 0 0 auto;
    width: 66.66666667%
}

.col-9 {
    flex: 0 0 auto;
    width: 75%
}

.col-10 {
    flex: 0 0 auto;
    width: 83.33333333%
}

.col-11 {
    flex: 0 0 auto;
    width: 91.66666667%
}

.col-12 {
    flex: 0 0 auto;
    width: 100%
}

@media (min-width: 576px) {
    .col-sm {
        flex: 1 0 0%
    }

    .col-sm-1 {
        flex: 0 0 auto;
        width: 8.33333333%
    }

    .col-sm-2 {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-sm-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .col-sm-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .col-sm-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }

    .col-sm-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .col-sm-7 {
        flex: 0 0 auto;
        width: 58.33333333%
    }

    .col-sm-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }

    .col-sm-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .col-sm-10 {
        flex: 0 0 auto;
        width: 83.33333333%
    }

    .col-sm-11 {
        flex: 0 0 auto;
        width: 91.66666667%
    }

    .col-sm-12 {
        flex: 0 0 auto;
        width: 100%
    }
}

@media (min-width: 768px) {
    .col-md {
        flex: 1 0 0%
    }

    .col-md-1 {
        flex: 0 0 auto;
        width: 8.33333333%
    }

    .col-md-2 {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-md-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .col-md-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .col-md-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }

    .col-md-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .col-md-7 {
        flex: 0 0 auto;
        width: 58.33333333%
    }

    .col-md-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }

    .col-md-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .col-md-10 {
        flex: 0 0 auto;
        width: 83.33333333%
    }

    .col-md-11 {
        flex: 0 0 auto;
        width: 91.66666667%
    }

    .col-md-12 {
        flex: 0 0 auto;
        width: 100%
    }
}

@media (min-width: 992px) {
    .col-lg {
        flex: 1 0 0%
    }

    .col-lg-1 {
        flex: 0 0 auto;
        width: 8.33333333%
    }

    .col-lg-2 {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-lg-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .col-lg-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .col-lg-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }

    .col-lg-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .col-lg-7 {
        flex: 0 0 auto;
        width: 58.33333333%
    }

    .col-lg-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }

    .col-lg-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .col-lg-10 {
        flex: 0 0 auto;
        width: 83.33333333%
    }

    .col-lg-11 {
        flex: 0 0 auto;
        width: 91.66666667%
    }

    .col-lg-12 {
        flex: 0 0 auto;
        width: 100%
    }
}

@media (min-width: 1200px) {
    .col-xl {
        flex: 1 0 0%
    }

    .col-xl-1 {
        flex: 0 0 auto;
        width: 8.33333333%
    }

    .col-xl-2 {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-xl-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .col-xl-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .col-xl-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }

    .col-xl-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .col-xl-7 {
        flex: 0 0 auto;
        width: 58.33333333%
    }

    .col-xl-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }

    .col-xl-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .col-xl-10 {
        flex: 0 0 auto;
        width: 83.33333333%
    }

    .col-xl-11 {
        flex: 0 0 auto;
        width: 91.66666667%
    }

    .col-xl-12 {
        flex: 0 0 auto;
        width: 100%
    }
}

.clearfix:after {
    display: block;
    clear: both;
    content: ""
}

.list-unstyled,
.list-inline {
    padding: 0;
    list-style: none
}

.container {
    width: 100%;
    padding-right: .75rem;
    padding-left: .75rem;
    margin-right: auto;
    margin-left: auto
}

@media (min-width: 1200px) {
    .container {
        max-width: 1170px
    }
}

.fade {
    transition: opacity .15s linear
}

@media (prefers-reduced-motion: reduce) {
    .fade {
        transition: none
    }
}

.fade:not(.show) {
    opacity: 0
}

.collapse:not(.show) {
    display: none
}

.collapsing {
    height: 0;
    overflow: hidden;
    transition: height .35s ease
}

@media (prefers-reduced-motion: reduce) {
    .collapsing {
        transition: none
    }
}

.pagination {
    display: flex;
    padding-left: 0
}

.flag-icon {
    background-position: center;
    background-size: cover;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
    height: 24px;
    width: 24px
}

.flag-icon:before {
    opacity: 0
}

.flag-icon-small {
    height: 16px;
    width: 16px
}

.flag-icon-big {
    height: 32px;
    width: 32px
}

.flag-icon-ae-en,
.flag-icon-sca-en,
.flag-icon-sca-ar {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_76)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2012.5H40V27.5H0V12.5Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200V12.5H40V0H0Z'%20fill='%235EAA22'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2027.5V40H40V27.5H0Z'%20fill='%23272727'/%3e%3cpath%20d='M0%20-6.25H15V43.75H0V-6.25Z'%20fill='%23E31D1C'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_76'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-uk {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_152)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200V40H40V0H0Z'%20fill='%232E42A5'/%3e%3cpath%20d='M-4.45398%2032.8567L4.34813%2036.5793L40.1997%209.04726L44.8426%203.51541L35.43%202.27121L20.807%2014.1356L9.03701%2022.1293L-4.45398%2032.8567Z'%20fill='white'/%3e%3cpath%20d='M-3.75%2035.3162L0.838174%2037.5L45%202.5H38.5577L-3.75%2035.3162Z'%20fill='%23F50100'/%3e%3cpath%20d='M44.454%2032.8567L35.6519%2036.5793L-0.19968%209.04726L-4.84259%203.51541L4.57%202.27121L19.193%2014.1356L30.963%2022.1293L44.454%2032.8567Z'%20fill='white'/%3e%3cpath%20d='M45%2035.3141L40.5786%2037.5L21.7204%2022.5L16.4999%2020.8241L-5%203.75H1.20819L22.696%2020.4188L28.4037%2022.4284L45%2035.3141Z'%20fill='%23F50100'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M25%20-2.5H15V15H-2.46558V25H15V42.5H25V25H42.5344V15H25V-2.5Z'%20fill='%23F50100'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M15%2015H-2.46558V25H15V42.5H25V25H42.5344V15H25V-2.5H15V15ZM17.5%200V17.5H0.0344238V22.5H17.5V40H22.5V22.5H40.0344V17.5H22.5V0H17.5Z'%20fill='white'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_152'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-int,
.flag-icon-lat,
.flag-icon-all {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M20.1006%201C30.6494%201.00005%2039.201%209.55185%2039.2012%2020.1006C39.2011%2030.6495%2030.6495%2039.2011%2020.1006%2039.2012C9.55167%2039.2012%201.00004%2030.6495%201%2020.1006C1.00021%209.55182%209.55177%201%2020.1006%201ZM5.30664%2017.0537C5.10501%2018.0378%205.00003%2019.0569%205%2020.1006C5.00004%2028.1208%2011.2528%2034.679%2019.1494%2035.1699V33.4023C19.1494%2032.353%2018.2984%2031.502%2017.249%2031.502C16.2%2031.5017%2015.3498%2030.6516%2015.3496%2029.6025V27.7021C15.3496%2026.6528%2014.4986%2025.8018%2013.4492%2025.8018H12.5449C11.9214%2025.8018%2011.3373%2025.496%2010.9824%2024.9834L5.30664%2017.0537ZM26.75%206.80176C26.7498%208.90036%2025.0479%2010.6016%2022.9492%2010.6016C20.8508%2010.6018%2019.1496%2012.3029%2019.1494%2014.4014V15.0352C19.1493%2015.7347%2018.5823%2016.3017%2017.8828%2016.3018H17.249C16.1998%2016.302%2015.3496%2017.1529%2015.3496%2018.2021C15.3498%2019.2512%2016.2%2020.1013%2017.249%2020.1016H24.8496C25.899%2020.1016%2026.75%2020.9526%2026.75%2022.002V23.9023C26.7502%2026.0009%2028.4512%2027.7021%2030.5498%2027.7021C31.371%2027.7021%2032.0686%2028.2237%2032.334%2028.9531C34.137%2026.4658%2035.2012%2023.4075%2035.2012%2020.1006C35.201%2014.1473%2031.7555%208.99908%2026.75%206.54004V6.80176Z'%20fill='%23111417'/%3e%3c/svg%3e")
}

.flag-icon-ad {
    background-image: url(../image/ad.CzF9SuYL.svg)
}

.flag-icon-ae {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_76)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2012.5H40V27.5H0V12.5Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200V12.5H40V0H0Z'%20fill='%235EAA22'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2027.5V40H40V27.5H0Z'%20fill='%23272727'/%3e%3cpath%20d='M0%20-6.25H15V43.75H0V-6.25Z'%20fill='%23E31D1C'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_76'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-af {
    background-image: url(../image/af.CbP9xkaB.svg)
}

.flag-icon-ag {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_78)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M-6.25%200H46.25V40H-6.25V0Z'%20fill='%231B1B1B'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M20%2023.4375L16.6622%2029.6709L16.7459%2022.7876L10.6477%2027.1365L14.1363%2020.9666L6.48547%2022.5697L12.688%2018.3353L5%2016.875L12.688%2015.4147L6.48547%2011.1802L14.1363%2012.7833L10.6477%206.61343L16.7459%2010.9624L16.6622%204.07904L20%2010.3125L23.3378%204.07904L23.2541%2010.9624L29.3523%206.61343L25.8637%2012.7833L33.5145%2011.1802L27.312%2015.4147L35%2016.875L27.312%2018.3353L33.5145%2022.5697L25.8637%2020.9666L29.3523%2027.1365L23.2541%2022.7876L23.3378%2029.6709L20%2023.4375Z'%20fill='%23F9D313'/%3e%3cpath%20d='M3.75%2022.5H36.25V41.25H3.75V22.5Z'%20fill='%23F1F9FF'/%3e%3cpath%20d='M-3.75%2016.875H42.5V23.125H-3.75V16.875Z'%20fill='%234A80E8'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M-6.25%209.99994L20%2039.9999L46.25%209.99994V39.9999H-6.25V9.99994Z'%20fill='%23E31D1C'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_78'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-ai {
    background-image: url(../image/ai.DV78G_QR.svg)
}

.flag-icon-al {
    background-image: url(../image/al.DCjc51Q8.svg)
}

.flag-icon-am {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_81)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2012.5V27.5H40V12.5H0Z'%20fill='%232E42A5'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200V12.5H40V0H0Z'%20fill='%23E31D1C'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2027.5V40H40V27.5H0Z'%20fill='%23FECA00'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_81'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-ao {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_82)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2020V40H40V20H0Z'%20fill='%231D1D1D'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200V20H40V0H0Z'%20fill='%23F50100'/%3e%3cpath%20d='M16.0247%209.78433L16.4869%208.75L18.1923%209.49515L17.7465%2010.5683C18.2614%2010.8444%2018.7363%2011.1427%2019.1708%2011.4633L20.0489%2010.6492L21.324%2011.9936L20.5725%2012.728C20.966%2013.1671%2021.303%2013.6367%2021.5826%2014.1368L22.5865%2013.7525L23.2592%2015.4709L22.2889%2015.8716C22.3206%2015.9882%2022.3499%2016.1061%2022.3767%2016.2252C22.4784%2016.6777%2022.5495%2017.1202%2022.5912%2017.5529L23.7495%2017.5893L23.6891%2019.4308L22.5856%2019.4248C22.5244%2019.9973%2022.4079%2020.5506%2022.2397%2021.0852L23.3282%2021.5601L22.5741%2023.2451L21.4914%2022.806C21.26%2023.2188%2021.0038%2023.6012%2020.7151%2023.9741C22.0078%2024.7916%2022.911%2025.3612%2022.911%2025.3612C22.911%2025.3612%2025.5334%2026.9582%2026.0295%2027.4246C26.5256%2027.891%2026.0295%2028.2921%2026.0295%2028.2921C26.0295%2028.2921%2025.393%2028.7319%2025.1466%2028.7319C24.9002%2028.7319%2024.3157%2028.2437%2024.0346%2027.8285C23.7536%2027.4134%2021.7786%2027.4246%2021.7786%2027.4246C21.7786%2027.4246%2020.5546%2026.7684%2018.8997%2025.8699C18.5817%2026.1261%2018.2387%2026.3629%2017.8764%2026.5763L18.2774%2027.5991L16.5383%2028.2638L16.1553%2027.3582C15.5965%2027.5436%2015.0181%2027.6731%2014.4356%2027.7361L14.403%2028.75L12.5393%2028.6903L12.5449%2027.6933C12.5035%2027.6865%2012.4621%2027.6793%2012.4209%2027.6718C11.8861%2027.5736%2011.3639%2027.4493%2010.8546%2027.2989L10.3929%2028.3321L8.68754%2027.5869L9.07866%2026.6454C8.53561%2026.4036%208.00931%2026.1281%207.5%2025.819L8.54355%2024.1323C9.82864%2024.9121%2011.2403%2025.4433%2012.7848%2025.7267C14.1572%2025.9785%2015.7189%2025.5708%2016.9594%2024.8122C14.2939%2023.3531%2011.3378%2021.7067%2010.4126%2021.0844C8.60494%2019.8687%2010.9005%2016.5434%2010.9005%2016.5434C10.9005%2016.5434%2010.9346%2017.6288%2011.805%2018.2678C12.3142%2018.6416%2016.0284%2021.0056%2019.0235%2022.9034C19.4336%2022.3928%2019.758%2021.8788%2020.0309%2021.2814C20.6491%2019.9281%2020.8223%2018.4131%2020.4271%2016.6552C19.8626%2014.1447%2017.7934%2012.3302%2014.0619%2011.205L14.6437%209.31254C15.1252%209.45773%2015.5856%209.615%2016.0247%209.78433Z'%20fill='%23FFEA42'/%3e%3cpath%20d='M12.6491%2016.8962L13.9435%2016.0107L15.238%2016.8962L14.7813%2015.4124L16.038%2014.4758L14.4613%2014.4442L13.9435%2012.9799L13.4257%2014.4442L11.849%2014.4758L13.1057%2015.4124L12.6491%2016.8962Z'%20fill='%23FFEA42'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_82'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-aq {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_83)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200V40H40V0H0Z'%20fill='%235196ED'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M12.0489%2014.8292C12.0489%2014.8292%2014.332%2016.2513%2014.6495%2016.6446C14.9669%2017.0381%2015.4757%2018.4827%2016.269%2017.6657C17.0626%2016.8491%2017.8559%2017.484%2017.8559%2016.1828C17.8559%2014.8817%2019.0406%2011.8636%2020.7596%2012.6199C22.4787%2013.3761%2023.8921%2012.903%2024.2886%2013.2054C24.6854%2013.5079%2025.6376%2015.0104%2026.378%2015.0104C27.1188%2015.0104%2027.4888%2015.8877%2027.5418%2017.1586C27.5945%2018.4295%2027.3039%2018.5509%2027.9913%2018.7024C28.6791%2018.8536%2028.9434%2019.4287%2028.6%2020.185C28.2561%2020.9415%2028.2823%2020.6086%2028.3352%2021.3954C28.3883%2022.1821%2027.6478%2026.8216%2025.3728%2027.276C23.0981%2027.7296%2020.942%2027.4878%2021.5241%2026.6099C22.106%2025.7326%2022.9114%2024.7229%2021.7215%2024.5111C20.531%2024.299%2019.7809%2024.1188%2018.5906%2024.4818C17.4002%2024.8449%2016.1572%2025.4195%2015.4164%2024.3305C14.6759%2023.2411%2014.8348%2022.4544%2014.2264%2021.9399C13.6182%2021.4256%2012.8773%2021.5163%2013.486%2020.5178C14.0939%2019.5192%2014.5965%2019.8921%2014.0939%2019.1054C13.5918%2018.3189%2011.6949%2017.9761%2011.6949%2017.1897C11.6949%2016.4026%2010.4884%2014.6779%2012.0489%2014.8292Z'%20fill='%23F5F8FB'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_83'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-ar {
    background-image: url(../image/ar.9m5ZTZPM.svg)
}

.flag-icon-as {
    background-image: url(../image/as.BW8Fo0Qd.svg)
}

.flag-icon-at {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_86)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2012.5V27.5H40V12.5H0Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200V12.5H40V0H0Z'%20fill='%23C51918'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2027.5V40H40V27.5H0Z'%20fill='%23C51918'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_86'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-au {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_87)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200V40H40V0H0Z'%20fill='%232E42A5'/%3e%3cpath%20d='M11.8749%2030.3125L9.97669%2032.0667L10.1647%2029.4889L7.60962%2029.0985L9.74227%2027.6382L8.45442%2025.3972L10.9258%2026.1541L11.8749%2023.75L12.824%2026.1541L15.2954%2025.3972L14.0076%2027.6382L16.1402%2029.0985L13.5852%2029.4889L13.7732%2032.0667L11.8749%2030.3125Z'%20fill='%23F7FCFF'/%3e%3cpath%20d='M25.3125%2020.4688L24.0922%2021.5965L24.2131%2019.9393L22.5706%2019.6883L23.9415%2018.7496L23.1136%2017.3089L24.7024%2017.7955L25.3125%2016.25L25.9227%2017.7955L27.5114%2017.3089L26.6835%2018.7496L28.0545%2019.6883L26.412%2019.9393L26.5328%2021.5965L25.3125%2020.4688Z'%20fill='%23F7FCFF'/%3e%3cpath%20d='M28.4375%209.21875L27.2172%2010.3465L27.3381%208.68928L25.6956%208.43834L27.0665%207.49958L26.2386%206.05893L27.8274%206.54551L28.4375%205L29.0477%206.54551L30.6364%206.05893L29.8085%207.49958L31.1795%208.43834L29.537%208.68928L29.6578%2010.3465L28.4375%209.21875Z'%20fill='%23F7FCFF'/%3e%3cpath%20d='M35.3125%2015.4688L34.0922%2016.5965L34.2131%2014.9393L32.5706%2014.6883L33.9415%2013.7496L33.1136%2012.3089L34.7024%2012.7955L35.3125%2011.25L35.9227%2012.7955L37.5114%2012.3089L36.6835%2013.7496L38.0545%2014.6883L36.412%2014.9393L36.5328%2016.5965L35.3125%2015.4688Z'%20fill='%23F7FCFF'/%3e%3cpath%20d='M30.3125%2031.7188L29.0922%2032.8465L29.2131%2031.1893L27.5706%2030.9383L28.9415%2029.9996L28.1136%2028.5589L29.7024%2029.0455L30.3125%2027.5L30.9227%2029.0455L32.5114%2028.5589L31.6835%2029.9996L33.0545%2030.9383L31.412%2031.1893L31.5328%2032.8465L30.3125%2031.7188Z'%20fill='%23F7FCFF'/%3e%3cpath%20d='M34.6876%2023.2812L33.4018%2023.9572L33.6474%2022.5255L32.6072%2021.5115L34.0447%2021.3026L34.6876%2020L35.3305%2021.3026L36.768%2021.5115L35.7278%2022.5255L35.9734%2023.9572L34.6876%2023.2812Z'%20fill='%23F7FCFF'/%3e%3cpath%20d='M20%200V2.5L12.5781%2010L20%2017.3047V20H17.3828L9.92188%2012.6562L2.65625%2020H0V17.3438L7.26562%2010.0391L0%202.89062V0H2.42188L9.92188%207.34375L17.1875%200H20Z'%20fill='white'/%3e%3cpath%20d='M7.1875%2012.6562L7.61719%2013.9844L1.64062%2020H0V19.8828L7.1875%2012.6562ZM12.0312%2012.1875L14.1406%2012.5L20%2018.2422V20L12.0312%2012.1875ZM20%200L12.5%207.65625L12.3438%205.9375L18.2031%200H20ZM0%200.0390625L7.53906%207.42188L5.23438%207.10938L0%201.91406V0.0390625Z'%20fill='%23F50100'/%3e%3cpath%20d='M6.875%200V20H13.125V0H6.875ZM0%206.875V13.125H20V6.875H0Z'%20fill='white'/%3e%3cpath%20d='M0%208.125V11.875H20V8.125H0ZM8.125%200V20H11.875V0H8.125Z'%20fill='%23F50100'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_87'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-aw {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_88)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200V40H40V0H0Z'%20fill='%235BA3DA'/%3e%3cpath%20d='M11.2547%206.25L9.69198%2012.1733L3.75%2013.7828L9.67327%2015.3267L11.2547%2021.25L12.8361%2015.3267L18.75%2013.7453L12.8267%2012.1733L11.2547%206.25Z'%20fill='%23FF0000'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M11.2539%205.3338L13.0183%2011.9817L19.6604%2013.7445L13.0275%2015.5182L11.2546%2022.1586L9.48196%2015.5191L2.8374%2013.7871L9.49984%2011.9825L11.2539%205.3338ZM11.2553%207.16623L9.88396%2012.3641L4.66243%2013.7784L9.86441%2015.1344L11.2546%2020.3414L12.6445%2015.1353L17.8395%2013.7462L12.635%2012.3649L11.2553%207.16623Z'%20fill='white'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2025H48.75V28.75H0V25Z'%20fill='%23FAD615'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2031.25H52.5V35H0V31.25Z'%20fill='%23FAD615'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_88'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-ax {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_89)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200V40H40V0H0Z'%20fill='%230061C1'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M10%200H16.25V16.875H40V23.125H16.25V40H10V23.125H0V16.875H10V0Z'%20fill='%23D21034'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M7.5%20-2.5H18.75V14.375H42.5V25.625H18.75V42.5H7.5V25.625H-2.5V14.375H7.5V-2.5ZM10%2016.875H0V23.125H10V40H16.25V23.125H40V16.875H16.25V0H10V16.875Z'%20fill='%23FFCE00'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_89'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-az {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_90)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2012.5V27.5H40V12.5H0Z'%20fill='%23AF0100'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200V12.5H40V0H0Z'%20fill='%233CA5D9'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2027.5V40H40V27.5H0Z'%20fill='%2373BE4A'/%3e%3cpath%20d='M20.6068%2025.5662C18.2594%2025.005%2016.1984%2022.9099%2016.2228%2020.102C16.2456%2017.4736%2017.7371%2015.3458%2020.3189%2014.7415C22.9006%2014.1373%2025.5774%2015.2855%2025.5774%2015.2855C24.8658%2013.6449%2022.3888%2012.4945%2020.357%2012.5C16.5749%2012.5103%2012.54%2015.5042%2012.5003%2020.076C12.4592%2024.8158%2016.8096%2027.5104%2020.6384%2027.5C23.7078%2027.4916%2025.1659%2025.4433%2025.4684%2024.5723C25.4684%2024.5723%2022.9541%2026.1275%2020.6068%2025.5662Z'%20fill='%23F7FCFF'/%3e%3cpath%20d='M22.1366%2022.6693L24.1852%2021.1911L26.2339%2022.6693L25.5111%2020.1922L27.5%2018.6287L25.0047%2018.576L24.1852%2016.1315L23.3658%2018.576L20.8704%2018.6287L22.8593%2020.1922L22.1366%2022.6693Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_90'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-ba {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_91)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M-7.5%200H47.5V40H-7.5V0Z'%20fill='%232E42A5'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M8.75%200H41.25V40L8.75%200Z'%20fill='%23FECA00'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M8.9541%2010.5881L7.33176%2011.4849L7.6416%209.5854L6.3291%208.24018L8.14293%207.96306L8.9541%206.23486L9.76527%207.96306L11.5791%208.24018L10.2666%209.5854L10.5764%2011.4849L8.9541%2010.5881Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M13.7156%2016.6545L12.0932%2017.5513L12.4031%2015.6518L11.0906%2014.3066L12.9044%2014.0295L13.7156%2012.3013L14.5267%2014.0295L16.3406%2014.3066L15.0281%2015.6518L15.3379%2017.5513L13.7156%2016.6545Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M18.3799%2022.4678L16.7575%2023.3646L17.0674%2021.4652L15.7549%2020.1199L17.5687%2019.8428L18.3799%2018.1146L19.1911%2019.8428L21.0049%2020.1199L19.6924%2021.4652L20.0022%2023.3646L18.3799%2022.4678Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M23.4041%2028.4512L21.7817%2029.348L22.0916%2027.4486L20.7791%2026.1033L22.5929%2025.8262L23.4041%2024.098L24.2152%2025.8262L26.0291%2026.1033L24.7166%2027.4486L25.0264%2029.348L23.4041%2028.4512Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M28.9575%2034.2404L27.3352%2035.1372L27.645%2033.2377L26.3325%2031.8925L28.1463%2031.6154L28.9575%2029.8872L29.7687%2031.6154L31.5825%2031.8925L30.27%2033.2377L30.5799%2035.1372L28.9575%2034.2404Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_91'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-bb {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_92)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M30%200H40V40H30V0Z'%20fill='%232E42A5'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M10%200H30V40H10V0Z'%20fill='%23FECA00'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200H10V40H0V0Z'%20fill='%232E42A5'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M24.5127%2026.7868C24.8303%2024.606%2027.0811%2019.8662%2027.0811%2019.8662L28.125%2017.085L23.9878%2018.4292L24.9669%2018.9394L23.051%2024.3482L21.6037%2024.0023V13.5705L22.7486%2013.4868L19.9248%209.375L17.1676%2013.5705H18.4979V24.0023L16.8678%2024.2753L15.705%2018.805L16.3762%2018.2416L11.875%2017.4107L13.2188%2019.8936C13.2188%2019.8936%2015.0275%2024.1494%2015.705%2026.7868L18.4979%2026.5713V30.625H21.6037V26.5713L24.5127%2026.7868Z'%20fill='black'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_92'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-bd {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_93)'%3e%3cpath%20d='M-7.5%200H47.5V40H-7.5V0Z'%20fill='%2338A17E'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M16.25%2031.25C22.4632%2031.25%2027.5%2026.2132%2027.5%2020C27.5%2013.7868%2022.4632%208.75%2016.25%208.75C10.0368%208.75%205%2013.7868%205%2020C5%2026.2132%2010.0368%2031.25%2016.25%2031.25Z'%20fill='%23F72E45'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_93'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-be {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_94)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M12.5%200H27.5V40H12.5V0Z'%20fill='%23FECA00'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M27.5%201.25H40V38.75H27.5V1.25Z'%20fill='%23E31D1C'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200H12.5V40H0V0Z'%20fill='%231D1D1D'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_94'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-bf {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_95)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M-7.5%200V40H47.5V0H-7.5Z'%20fill='%235EAA22'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M-7.5%200V20H47.5V0H-7.5Z'%20fill='%23C51918'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M20.0009%2025.3988L13.0471%2030.625L15.2721%2022.1132L8.75%2016.9309H16.5236L20%209.375L23.4764%2016.9309H31.25L24.6587%2022.12L26.9529%2030.625L20.0009%2025.3988Z'%20fill='%23FECA00'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_95'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-bg {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_96)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2012.5V27.5H40V12.5H0Z'%20fill='%235EAA22'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200V12.5H40V0H0Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2027.5V40H40V27.5H0Z'%20fill='%23E22C18'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_96'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-bh {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_97)'%3e%3cpath%20d='M0%200H55V40H0V0Z'%20fill='%23E31D1C'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200H11.3333L20%203.33333L11.3333%206.66667L20%2010L11.3333%2013.3333L20%2016.6667L11.3333%2020L20%2023.3333L11.3333%2026.6667L20%2030L11.3333%2033.3333L20%2036.6667L11.3333%2040H0V0Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_97'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-bi {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_98)'%3e%3cpath%20d='M0%200H40V40H0V0Z'%20fill='%235EAA22'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M20%2020L46.25%200H-6.25L20%2020ZM20%2020L-6.25%2040H46.25L20%2020Z'%20fill='%23DD2C2B'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M55.508%20-3.125L25.1564%2020L55.508%2043.125H-15.5079L14.8436%2020L-15.5079%20-3.125H55.508ZM20%2020L-6.24997%2040H46.25L20%2020L46.25%200H-6.24997L20%2020Z'%20fill='white'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M20%2030C25.5228%2030%2030%2025.5228%2030%2020C30%2014.4772%2025.5228%2010%2020%2010C14.4772%2010%2010%2014.4772%2010%2020C10%2025.5228%2014.4772%2030%2020%2030Z'%20fill='white'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M19.0127%2017.6344L17%2017.6562L18.0255%2015.9375L17%2014.2188L19.0127%2014.2406L20%2012.5L20.9873%2014.2406L23%2014.2188L21.9745%2015.9375L23%2017.6562L20.9873%2017.6344L20%2019.375L19.0127%2017.6344Z'%20fill='%23DD2C2B'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M20%2012.1833L21.0777%2014.0834L23.277%2014.0595L22.1565%2015.9375L23.277%2017.8155L21.0777%2017.7916L20%2019.6917L18.9223%2017.7916L16.723%2017.8155L17.8435%2015.9375L16.723%2014.0595L18.9223%2014.0834L20%2012.1833ZM20%2012.8167L19.1032%2014.3979L17.277%2014.378L18.2074%2015.9375L17.277%2017.497L19.1032%2017.4771L20%2019.0583L20.8968%2017.4771L22.723%2017.497L21.7926%2015.9375L22.723%2014.378L20.8968%2014.3979L20%2012.8167Z'%20fill='%235EAA22'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M14.9502%2024.5094L12.9375%2024.5312L13.963%2022.8125L12.9375%2021.0938L14.9502%2021.1156L15.9375%2019.375L16.9248%2021.1156L18.9375%2021.0938L17.912%2022.8125L18.9375%2024.5312L16.9248%2024.5094L15.9375%2026.25L14.9502%2024.5094Z'%20fill='%23DD2C2B'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M15.9375%2019.0583L17.0152%2020.9584L19.2145%2020.9345L18.094%2022.8125L19.2145%2024.6905L17.0152%2024.6666L15.9375%2026.5667L14.8598%2024.6666L12.6605%2024.6905L13.781%2022.8125L12.6605%2020.9345L14.8598%2020.9584L15.9375%2019.0583ZM15.9375%2019.6917L15.0407%2021.2729L13.2145%2021.253L14.1449%2022.8125L13.2145%2024.372L15.0407%2024.3521L15.9375%2025.9333L16.8343%2024.3521L18.6605%2024.372L17.7301%2022.8125L18.6605%2021.253L16.8343%2021.2729L15.9375%2019.6917Z'%20fill='%235EAA22'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M23.0752%2024.5094L21.0625%2024.5312L22.088%2022.8125L21.0625%2021.0938L23.0752%2021.1156L24.0625%2019.375L25.0498%2021.1156L27.0625%2021.0938L26.037%2022.8125L27.0625%2024.5312L25.0498%2024.5094L24.0625%2026.25L23.0752%2024.5094Z'%20fill='%23DD2C2B'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M24.0625%2019.0583L25.1402%2020.9584L27.3395%2020.9345L26.219%2022.8125L27.3395%2024.6905L25.1402%2024.6666L24.0625%2026.5667L22.9848%2024.6666L20.7855%2024.6905L21.906%2022.8125L20.7855%2020.9345L22.9848%2020.9584L24.0625%2019.0583ZM24.0625%2019.6917L23.1657%2021.2729L21.3395%2021.253L22.2699%2022.8125L21.3395%2024.372L23.1657%2024.3521L24.0625%2025.9333L24.9593%2024.3521L26.7855%2024.372L25.8551%2022.8125L26.7855%2021.253L24.9593%2021.2729L24.0625%2019.6917Z'%20fill='%235EAA22'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_98'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-bj {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_99)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M15%2020H40V40H15V20Z'%20fill='%23DD2C2B'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M15%200V20H40V0H15Z'%20fill='%23FECA00'/%3e%3cpath%20d='M-2.5%200H15V40H-2.5V0Z'%20fill='%235EAA22'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_99'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-bl {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_100)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M27.5%200H40V40H27.5V0Z'%20fill='%23F50100'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200H12.5V40H0V0Z'%20fill='%232E42A5'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M12.5%200H27.5V40H12.5V0Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_100'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-bm {
    background-image: url(../image/bm.DJ_OlukZ.svg)
}

.flag-icon-bn {
    background-image: url(../image/bn.CSQfKYr0.svg)
}

.flag-icon-bo {
    background-image: url(../image/bo.4DhDN3Wy.svg)
}

.flag-icon-bq {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_104)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M-2.5%200H50.8333V40H-2.5V0Z'%20fill='white'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M-1.25%2018.75V0H23.75L-1.25%2018.75Z'%20fill='%23FEDA00'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M-2.5%2040H50V0L-2.5%2040Z'%20fill='%2300268D'/%3e%3cpath%20d='M13.5814%2011.6711L12.8125%2010L11.9914%2011.6776C8.88501%2012.0789%206.47212%2014.7271%206.39326%2017.9615L5%2018.6667L6.52217%2019.4371C7.06745%2022.1297%209.25764%2024.2155%2011.9833%2024.5712L12.8125%2026.25L13.6418%2024.5712C16.3674%2024.2154%2018.5575%2022.1298%2019.1028%2019.4371L20.625%2018.6667L19.2317%2017.9615C19.1525%2014.709%2016.713%2012.0493%2013.5814%2011.6711Z'%20fill='white'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M13.5814%2011.6711L12.8125%2010L11.9914%2011.6776C8.88501%2012.0789%206.47212%2014.7271%206.39326%2017.9615L5%2018.6667L6.52217%2019.4371C7.06745%2022.1297%209.25764%2024.2155%2011.9833%2024.5712L12.8125%2026.25L13.6418%2024.5712C16.3674%2024.2154%2018.5575%2022.1298%2019.1028%2019.4371L20.625%2018.6667L19.2317%2017.9615C19.1525%2014.709%2016.713%2012.0493%2013.5814%2011.6711ZM18.4327%2018.6667L18.2565%2018.5775L18.242%2017.9857C18.1746%2015.2203%2016.1018%2012.9727%2013.4627%2012.6539L12.9133%2012.5876L12.7849%2012.3084L12.6465%2012.5912L12.1183%2012.6594C9.50026%2012.9977%207.45001%2015.2357%207.38297%2017.9856L7.36854%2018.5774L7.19228%2018.6667L7.39726%2018.7704L7.49248%2019.2406C7.95569%2021.528%209.8151%2023.2898%2012.1114%2023.5895L12.6364%2023.658L12.8125%2024.0145L12.9886%2023.658L13.5136%2023.5895C15.8099%2023.2898%2017.6693%2021.528%2018.1325%2019.2406L18.2277%2018.7705L18.4327%2018.6667Z'%20fill='black'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M12.8452%2014.8749L11.898%2016.4838H10.0299L10.9614%2018.174L10.0299%2019.7953H11.898L12.8452%2021.4495L13.8068%2019.7953H15.6582L14.7494%2018.174L15.6582%2016.4838H13.8068L12.8452%2014.8749Z'%20fill='%23F00A17'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_104'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-br {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_345)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200V40H40V0H0Z'%20fill='%23009933'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M19.8856%207.03754L38.951%2020.3242L19.6262%2032.7676L0.951416%2020.0666L19.8856%207.03754Z'%20fill='%23FFD221'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M19.8856%207.03754L38.951%2020.3242L19.6262%2032.7676L0.951416%2020.0666L19.8856%207.03754Z'%20fill='url(%23paint0_linear_18799_345)'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M20%2028.1251C24.3147%2028.1251%2027.8125%2024.6273%2027.8125%2020.3126C27.8125%2015.9978%2024.3147%2012.5001%2020%2012.5001C15.6853%2012.5001%2012.1875%2015.9978%2012.1875%2020.3126C12.1875%2024.6273%2015.6853%2028.1251%2020%2028.1251Z'%20fill='%232E42A5'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M17.4687%2024.0156L17.1197%2024.199L17.1864%2023.8104L16.9041%2023.5352L17.2942%2023.4785L17.4687%2023.1249L17.6432%2023.4785L18.0334%2023.5352L17.7511%2023.8104L17.8177%2024.199L17.4687%2024.0156Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M20.5937%2024.0156L20.2447%2024.199L20.3114%2023.8104L20.0291%2023.5352L20.4192%2023.4785L20.5937%2023.1249L20.7682%2023.4785L21.1584%2023.5352L20.8761%2023.8104L20.9427%2024.199L20.5937%2024.0156Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M20.5937%2025.8906L20.2447%2026.074L20.3114%2025.6854L20.0291%2025.4102L20.4192%2025.3535L20.5937%2024.9999L20.7682%2025.3535L21.1584%2025.4102L20.8761%2025.6854L20.9427%2026.074L20.5937%2025.8906Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M19.0312%2019.3281L18.6822%2019.5115L18.7489%2019.1229L18.4666%2018.8477L18.8567%2018.791L19.0312%2018.4374L19.2057%2018.791L19.5959%2018.8477L19.3136%2019.1229L19.3802%2019.5115L19.0312%2019.3281Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M19.0312%2022.4531L18.6822%2022.6366L18.7489%2022.248L18.4666%2021.9728L18.8567%2021.9161L19.0312%2021.5625L19.2057%2021.9161L19.5959%2021.9728L19.3136%2022.248L19.3802%2022.6366L19.0312%2022.4531Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M16.8437%2020.8906L16.4947%2021.0741L16.5614%2020.6855L16.2791%2020.4102L16.6692%2020.3535L16.8437%2020L17.0182%2020.3535L17.4084%2020.4102L17.1261%2020.6855L17.1927%2021.0741L16.8437%2020.8906Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M14.6561%2022.1407L14.3071%2022.3241L14.3738%2021.9355L14.0914%2021.6603L14.4816%2021.6036L14.6561%2021.25L14.8306%2021.6036L15.2208%2021.6603L14.9385%2021.9355L15.0051%2022.3241L14.6561%2022.1407Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M21.8437%2016.8281L21.4947%2017.0116L21.5614%2016.623L21.2791%2016.3477L21.6692%2016.291L21.8437%2015.9375L22.0182%2016.291L22.4084%2016.3477L22.1261%2016.623L22.1927%2017.0116L21.8437%2016.8281Z'%20fill='%23F7FCFF'/%3e%3cpath%20d='M12.3712%2018.6203C18.246%2019.3643%2022.8299%2021.466%2026.1784%2024.9102L26.5905%2024.5095C27.08%2023.7426%2027.4392%2022.8844%2027.6371%2021.9663C24.0528%2018.6271%2019.4032%2016.5268%2013.7269%2015.6551C13.0818%2016.5226%2012.6123%2017.5286%2012.3712%2018.6203Z'%20fill='%23F7FCFF'/%3e%3cpath%20d='M14.2021%2017.8169L14.2826%2017.0398C19.1154%2017.5404%2023.2606%2019.3915%2026.7057%2022.589L26.1742%2023.1616C22.8545%2020.0804%2018.8679%2018.3002%2014.2021%2017.8169Z'%20fill='%23009933'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3clinearGradient%20id='paint0_linear_18799_345'%20x1='45'%20y1='38.75'%20x2='45'%20y2='1.24997'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20stop-color='%23FFC600'/%3e%3cstop%20offset='1'%20stop-color='%23FFDE42'/%3e%3c/linearGradient%3e%3cclipPath%20id='clip0_18799_345'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-bs {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_106)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M-7.5%200H47.5V40H-7.5V0Z'%20fill='%23FECA00'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M-7.5%200V12.5H47.5V0H-7.5Z'%20fill='%233CB1CF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M-7.5%2027.5V40H47.5V27.5H-7.5Z'%20fill='%233CB1CF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M-3.75%201.25V38.75L21.25%2020L-3.75%201.25Z'%20fill='%23272727'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_106'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-bt {
    background-image: url(../image/bt.DBQ8_iiU.svg)
}

.flag-icon-bv {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_108)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200V40H40V0H0Z'%20fill='%23E31D1C'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M10%200H16.25V16.875H40V23.125H16.25V40H10V23.125H0V16.875H10V0Z'%20fill='%232E42A5'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M7.5%20-2.5H18.75V14.375H42.5V25.625H18.75V42.5H7.5V25.625H-2.5V14.375H7.5V-2.5ZM10%2016.875H0V23.125H10V40H16.25V23.125H40V16.875H16.25V0H10V16.875Z'%20fill='white'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_108'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-bw {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_109)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200V40H40V0H0Z'%20fill='%2342ADDF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2017.5V22.5H40V17.5H0Z'%20fill='%23272727'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M-2.5%2015H42.5V25H-2.5V15ZM0%2022.5V17.5H40V22.5H0Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_109'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-by {
    background-image: url(../image/by.BfOSGAw2.svg)
}

.flag-icon-bz {
    background-image: url(../image/bz.Bbqd5WdD.svg)
}

.flag-icon-ca {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_112)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M10%200H30V40H10V0Z'%20fill='%23F7FCFF'/%3e%3cpath%20d='M19.9705%2012.5L18.1723%2015.0742L16.794%2014.3043L17.5629%2018.4051H16.794L15.0834%2016.6148L14.2256%2017.547L11.9584%2017.2172C12.7267%2018.5722%2012.9188%2019.364%2012.5346%2019.5925C12.1504%2019.821%2011.7222%2019.9382%2011.25%2019.9441L15.7406%2022.9401C15.5805%2023.5%2015.3614%2023.9325%2015.0834%2024.2377C14.8054%2024.5429%2016.3477%2024.393%2019.7104%2023.7879L19.2506%2027.5H20.7494L20.2896%2023.7879C23.6523%2024.393%2025.1946%2024.5429%2024.9166%2024.2377C24.6386%2023.9325%2024.4195%2023.5%2024.2594%2022.9401L28.75%2019.9441C28.2778%2019.9382%2027.8496%2019.821%2027.4654%2019.5925C27.0812%2019.364%2027.2733%2018.5722%2028.0416%2017.2172L25.7744%2017.547L24.9166%2016.6148L23.206%2018.4051H22.4371L23.206%2014.3043L21.8277%2015.0742L19.9705%2012.5Z'%20fill='%23E31D1C'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M30%200H40V38.75H30V0Z'%20fill='%23E31D1C'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%201.25H10V38.75H0V1.25Z'%20fill='%23E31D1C'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_112'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-cc {
    background-image: url(../image/cc.DL78xdgF.svg)
}

.flag-icon-cd {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_114)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200V40H40V0H0Z'%20fill='%233195F9'/%3e%3cpath%20d='M-1.39328%2040L-5%2034.5619L53.8933%20-5L57.5%200.438084L-1.39328%2040Z'%20fill='%23E31D1C'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M-2.26003%2044.3469L-9.32129%2033.7002L54.7602%20-9.34692L61.8214%201.2998L-2.26003%2044.3469ZM-1.39321%2040L57.5001%200.438079L53.8934%20-5L-4.99992%2034.5619L-1.39321%2040Z'%20fill='%23FECA00'/%3e%3cpath%20d='M7.50011%202.5L9.18397%207.68237H14.633L10.2246%2010.8853L11.9085%2016.0676L7.50011%2012.8647L3.09172%2016.0676L4.77558%2010.8853L0.367188%207.68237H5.81626L7.50011%202.5Z'%20fill='%23FECA00'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_114'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-cf {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_115)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M-2.5%200H52.5V10H-2.5V0Z'%20fill='%233D58DB'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M-2.5%2010H52.5V20H-2.5V10Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M-2.5%2020H52.5V30H-2.5V20Z'%20fill='%2373BE4A'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M-2.5%2030H52.5V40H-2.5V30Z'%20fill='%23FFD018'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M17.5%200H32.5V40H17.5V0Z'%20fill='%23E11C1B'/%3e%3cpath%20d='M10.6249%200L12.1685%204.75051H17.1635L13.1224%207.68648L14.666%2012.437L10.6249%209.50102L6.58392%2012.437L8.12745%207.68648L4.08643%204.75051H9.08141L10.6249%200Z'%20fill='%23FECA00'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_115'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-cg {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_116)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M46.25%200V40H-6.25L46.25%200Z'%20fill='%23FA1111'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M-6.25%2040V0H46.25L-6.25%2040Z'%20fill='%2307A907'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M41.6931%20-10L-6.25%2035.625L2.26326%2043.75L50%20-0.726319L41.6931%20-10Z'%20fill='%23FBCD17'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_116'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-ch {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_117)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M-7.5%200V40H47.5V0H-7.5Z'%20fill='%23E31D1C'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M23.3333%2010H16.6667V16.6666H10V23.3333H16.6667V30H23.3333V23.3333H30V16.6666H23.3333V10Z'%20fill='%23F1F9FF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_117'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-ci {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_118)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M27.5%200H40V40H27.5V0Z'%20fill='%2367BD38'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200H12.5V40H0V0Z'%20fill='%23E47E00'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M12.5%200H27.5V40H12.5V0Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_118'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-ck {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_119)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200V40H40V0H0Z'%20fill='%232E42A5'/%3e%3cpath%20d='M27.7531%2021.7069L28.7226%2021.0287L29.6607%2021.7069L29.369%2020.4999L30.1224%2019.735H29.1636L28.7212%2018.75L28.344%2019.735H27.2193L28.0804%2020.4999L27.7531%2021.7069Z'%20fill='white'/%3e%3cpath%20d='M31.51%2023.384L32.4795%2022.7057L33.4176%2023.384L33.1259%2022.177L33.8793%2021.4121H32.9205L32.4781%2020.4271L32.1009%2021.4121H30.9762L31.8373%2022.177L31.51%2023.384Z'%20fill='white'/%3e%3cpath%20d='M33.6002%2025.879L32.6307%2026.5572L32.958%2025.3502L32.0969%2024.5853H33.2216L33.5989%2023.6003L34.0412%2024.5853H35L34.2466%2025.3502L34.5383%2026.5572L33.6002%2025.879Z'%20fill='white'/%3e%3cpath%20d='M31.2993%2029.5892L32.2689%2028.911L33.207%2029.5892L32.9153%2028.3822L33.6687%2027.6173H32.7099L32.2675%2026.6323L31.8903%2027.6173H30.7655L31.6267%2028.3822L31.2993%2029.5892Z'%20fill='white'/%3e%3cpath%20d='M28.8653%2030.5718L27.8957%2031.25L28.2231%2030.043L27.3619%2029.2781H28.4867L28.8639%2028.2931L29.3063%2029.2781H30.2651L29.5117%2030.043L29.8034%2031.25L28.8653%2030.5718Z'%20fill='white'/%3e%3cpath%20d='M24.7252%2029.6418L25.6948%2028.9635L26.6329%2029.6418L26.3412%2028.4348L27.0946%2027.6699H26.1357L25.6934%2026.6849L25.3162%2027.6699H24.1914L25.0526%2028.4348L24.7252%2029.6418Z'%20fill='white'/%3e%3cpath%20d='M24.0033%2025.9009L23.0338%2026.5792L23.3611%2025.3722L22.5%2024.6073H23.6247L24.002%2023.6223L24.4443%2024.6073H25.4031L24.6498%2025.3722L24.9414%2026.5792L24.0033%2025.9009Z'%20fill='white'/%3e%3cpath%20d='M24.2535%2023.4459L25.223%2022.7676L26.1611%2023.4459L25.8695%2022.2389L26.6228%2021.474H25.664L25.2217%2020.489L24.8445%2021.474H23.7197L24.5808%2022.2389L24.2535%2023.4459Z'%20fill='white'/%3e%3cpath%20d='M20%200V2.5L12.5781%2010L20%2017.3047V20H17.3828L9.92188%2012.6562L2.65625%2020H0V17.3438L7.26562%2010.0391L0%202.89062V0H2.42188L9.92188%207.34375L17.1875%200H20Z'%20fill='white'/%3e%3cpath%20d='M7.1875%2012.6562L7.61719%2013.9844L1.64062%2020H0V19.8828L7.1875%2012.6562ZM12.0312%2012.1875L14.1406%2012.5L20%2018.2422V20L12.0312%2012.1875ZM20%200L12.5%207.65625L12.3438%205.9375L18.2031%200H20ZM0%200.0390625L7.53906%207.42188L5.23438%207.10938L0%201.91406V0.0390625Z'%20fill='%23F50100'/%3e%3cpath%20d='M6.875%200V20H13.125V0H6.875ZM0%206.875V13.125H20V6.875H0Z'%20fill='white'/%3e%3cpath%20d='M0%208.125V11.875H20V8.125H0ZM8.125%200V20H11.875V0H8.125Z'%20fill='%23F50100'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_119'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-cl {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_120)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M-2.5%200H17.5V20H-2.5V0Z'%20fill='%233D58DB'/%3e%3cpath%20d='M8.75001%205L10.1532%209.31864H14.6941L11.0205%2011.9877L12.4237%2016.3064L8.75001%2013.6373L5.07635%2016.3064L6.47957%2011.9877L2.80591%209.31864H7.3468L8.75001%205Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M18.75%20-2.5H46.25V22.5H18.75V-2.5Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M-5%2020H45V40H-5V20Z'%20fill='%23E31D1C'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_120'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-cm {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_121)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M12.5%200H27.5V40H12.5V0Z'%20fill='%23E11C1B'/%3e%3cpath%20d='M20%2012.5L21.6838%2017.6824H27.1329L22.7245%2020.8853L24.4084%2026.0676L20%2022.8647L15.5916%2026.0676L17.2755%2020.8853L12.8671%2017.6824H18.3161L20%2012.5Z'%20fill='%23FBCD17'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M27.5%200H40V40H27.5V0Z'%20fill='%23FBCD17'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200H12.5V40H0V0Z'%20fill='%230B9E7A'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_121'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-cn {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_122)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200H40V40H0V0Z'%20fill='%23E31D1C'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M18.7759%2010.6956L17.5093%2011.4602L17.7982%209.96808L16.7434%208.85137L18.1716%208.79098L18.7759%207.39771L19.3801%208.79098H20.8059L19.7536%209.96808L20.0704%2011.4602L18.7759%2010.6956Z'%20fill='%23FECA00'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M21.2759%2015.6956L20.0093%2016.4602L20.2982%2014.9681L19.2434%2013.8514L20.6716%2013.791L21.2759%2012.3977L21.8801%2013.791H23.3059L22.2536%2014.9681L22.5704%2016.4602L21.2759%2015.6956Z'%20fill='%23FECA00'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M20.0259%2020.6956L18.7593%2021.4602L19.0482%2019.9681L17.9934%2018.8514L19.4216%2018.791L20.0259%2017.3977L20.6301%2018.791H22.0559L21.0036%2019.9681L21.3204%2021.4602L20.0259%2020.6956Z'%20fill='%23FECA00'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M16.2759%2024.4456L15.0093%2025.2102L15.2982%2023.7181L14.2434%2022.6014L15.6716%2022.541L16.2759%2021.1477L16.8801%2022.541H18.3059L17.2536%2023.7181L17.5704%2025.2102L16.2759%2024.4456Z'%20fill='%23FECA00'/%3e%3cpath%20d='M8.75001%208.75L10.1532%2013.0686H14.6941L11.0205%2015.7377L12.4237%2020.0564L8.75001%2017.3873L5.07635%2020.0564L6.47957%2015.7377L2.80591%2013.0686H7.3468L8.75001%208.75Z'%20fill='%23FBCD17'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_122'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-co {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_123)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2020V30H40V20H0Z'%20fill='%232E42A5'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200V20H40V0H0Z'%20fill='%23FECA00'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2030V40H40V30H0Z'%20fill='%23E31D1C'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_123'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-cr {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_124)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200V40H40V0H0Z'%20fill='%232E42A5'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2017.5V22.5H40V17.5H0Z'%20fill='%23E31D1C'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M-5%2012.5H45V27.5H-5V12.5ZM0%2022.5V17.5H40V22.5H0Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_124'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-cu {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_125)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M-1.25%200V40H53.75V0H-1.25Z'%20fill='%233D58DB'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M-1.25%2015V25H53.75V15H-1.25Z'%20fill='%233D58DB'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M-7.5%208.75H60V31.25H-7.5V8.75ZM-1.25%2025V15H53.75V25H-1.25Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M-5%200V40L26.25%2020L-5%200Z'%20fill='%23E31D1C'/%3e%3cpath%20d='M9.99991%2015L11.1225%2018.4549H14.7552L11.8163%2020.5902L12.9388%2024.0451L9.99991%2021.9098L7.06099%2024.0451L8.18356%2020.5902L5.24463%2018.4549H8.87734L9.99991%2015Z'%20fill='white'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_125'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-cv {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_342)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200V40H40V0H0Z'%20fill='%234141DB'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2022.5V26.25H40V22.5H0Z'%20fill='%23F90000'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M-2.5%2020H42.5L39.2748%2028.75H0.824397L-2.5%2020ZM0%2026.25V22.5H40V26.25H0Z'%20fill='%23F7FCFF'/%3e%3cpath%20d='M12.2435%2017.7658L13.1527%2017.1395L14.0324%2017.7658L13.7589%2016.6512L14.4654%2015.9448H13.5662L13.1514%2015.0352L12.7976%2015.9448H11.7429L12.5504%2016.6512L12.2435%2017.7658Z'%20fill='%23FFDE00'/%3e%3cpath%20d='M16.0011%2019.735L16.9103%2019.1087L17.79%2019.735L17.5165%2018.6204L18.223%2017.9141H17.3239L16.909%2017.0044L16.5553%2017.9141H15.5005L16.3081%2018.6204L16.0011%2019.735Z'%20fill='%23FFDE00'/%3e%3cpath%20d='M19.9164%2022.0626L19.0072%2022.689L19.3142%2021.5743L18.5067%2020.868H19.5614L19.9152%2019.9583L20.33%2020.868H21.2291L20.5226%2021.5743L20.7962%2022.689L19.9164%2022.0626Z'%20fill='%23FFDE00'/%3e%3cpath%20d='M19.0072%2027.6121L19.9164%2026.9858L20.7962%2027.6121L20.5226%2026.4975L21.2291%2025.7911H20.33L19.9152%2024.8815L19.5614%2025.7911H18.5067L19.3142%2026.4975L19.0072%2027.6121Z'%20fill='%23FFDE00'/%3e%3cpath%20d='M16.9103%2029.9397L16.0011%2030.566L16.3081%2029.4514L15.5005%2028.745H16.5553L16.909%2027.8354L17.3239%2028.745H18.223L17.5165%2029.4514L17.79%2030.566L16.9103%2029.9397Z'%20fill='%23FFDE00'/%3e%3cpath%20d='M12.2435%2032.5352L13.1527%2031.9089L14.0324%2032.5352L13.7589%2031.4206L14.4654%2030.7142H13.5662L13.1514%2029.8046L12.7976%2030.7142H11.7429L12.5504%2031.4206L12.2435%2032.5352Z'%20fill='%23FFDE00'/%3e%3cpath%20d='M9.39503%2029.9397L8.48583%2030.566L8.79278%2029.4514L7.98524%2028.745H9.04L9.39375%2027.8354L9.80856%2028.745H10.7077L10.0012%2029.4514L10.2747%2030.566L9.39503%2029.9397Z'%20fill='%23FFDE00'/%3e%3cpath%20d='M5.47971%2027.6121L6.38891%2026.9858L7.26862%2027.6121L6.99511%2026.4975L7.7016%2025.7911H6.80245L6.38764%2024.8815L6.03388%2025.7911H4.97913L5.78666%2026.4975L5.47971%2027.6121Z'%20fill='%23FFDE00'/%3e%3cpath%20d='M6.38891%2022.0626L5.47971%2022.689L5.78666%2021.5743L4.97913%2020.868H6.03388L6.38764%2019.9583L6.80245%2020.868H7.7016L6.99511%2021.5743L7.26862%2022.689L6.38891%2022.0626Z'%20fill='%23FFDE00'/%3e%3cpath%20d='M8.48583%2019.735L9.39503%2019.1087L10.2747%2019.735L10.0012%2018.6204L10.7077%2017.9141H9.80856L9.39375%2017.0044L9.04%2017.9141H7.98524L8.79278%2018.6204L8.48583%2019.735Z'%20fill='%23FFDE00'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_342'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-cw {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_127)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200V40H40V0H0Z'%20fill='%232E42A5'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2025V31.25H40V25H0Z'%20fill='%23F9E813'/%3e%3cpath%20d='M18.1251%2010L19.388%2013.8868H23.4748L20.1685%2016.2889L21.4314%2020.1757L18.1251%2017.7736L14.8188%2020.1757L16.0817%2016.2889L12.7754%2013.8868H16.8622L18.1251%2010Z'%20fill='white'/%3e%3cpath%20d='M5.62498%203.75L6.60723%206.77305H9.78586L7.21429%208.6414L8.19654%2011.6644L5.62498%209.7961L3.05342%2011.6644L4.03567%208.6414L1.46411%206.77305H4.64273L5.62498%203.75Z'%20fill='white'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_127'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-cx {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_128)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200H40V40H0V0Z'%20fill='%235EAA22'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200L40%2040H0V0Z'%20fill='%234141DB'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M7.5%2016.25L6.25%2017.1651L6.41747%2015.625L5%2015L6.41747%2014.375L6.25%2012.835L7.5%2013.75L8.75%2012.835L8.58253%2014.375L10%2015L8.58253%2015.625L8.75%2017.1651L7.5%2016.25Z'%20fill='white'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M5%2023.75L3.75%2024.6651L3.91747%2023.125L2.5%2022.5L3.91747%2021.875L3.75%2020.335L5%2021.25L6.25%2020.335L6.08253%2021.875L7.5%2022.5L6.08253%2023.125L6.25%2024.6651L5%2023.75Z'%20fill='white'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M10%2031.25L8.75%2032.1651L8.91747%2030.625L7.5%2030L8.91747%2029.375L8.75%2027.835L10%2028.75L11.25%2027.835L11.0825%2029.375L12.5%2030L11.0825%2030.625L11.25%2032.1651L10%2031.25Z'%20fill='white'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M11.25%2019.375L10.625%2019.8325L10.7087%2019.0625L10%2018.75L10.7087%2018.4375L10.625%2017.6675L11.25%2018.125L11.875%2017.6675L11.7913%2018.4375L12.5%2018.75L11.7913%2019.0625L11.875%2019.8325L11.25%2019.375Z'%20fill='white'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M26.9515%2020.2799C26.4842%2019.7924%2030.6892%2018.6471%2031.1251%2017.1701C31.7027%2015.8843%2031.3168%2014.8423%2029.1341%2013.9273C26.9515%2013.0122%2024.7455%2011.2429%2027.2821%2011.2429C29.8187%2011.2429%2029.8187%2011.6045%2030.5001%2012.6714C31.1816%2013.7383%2032.6545%2013.9668%2032.6857%2012.6714C32.6857%2010.4642%2032.894%2010.1673%2031.1122%208.24833C29.3303%206.32937%2035.5803%209.03637%2035.0637%2012.3261C34.5471%2015.6159%2033.9252%2014.5543%2034.32%2015.1066C34.7148%2015.6588%2037.0904%2013.9446%2036.7937%2016.2281C35.9626%2017.5414%2034.3143%2019.4954%2026.9515%2020.2799Z'%20fill='%23FECA00'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M20%2026.25C23.4518%2026.25%2026.25%2023.4518%2026.25%2020C26.25%2016.5482%2023.4518%2013.75%2020%2013.75C16.5482%2013.75%2013.75%2016.5482%2013.75%2020C13.75%2023.4518%2016.5482%2026.25%2020%2026.25Z'%20fill='%23FECA00'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M16.1912%2017.7026C16.9001%2017.5445%2017.8695%2019.4429%2019.6192%2018.7309C21.3689%2018.0189%2021.7342%2016.6595%2022.5656%2017.157C23.3969%2017.6546%2023.506%2018.8524%2022.9522%2019.4545C22.3984%2020.0565%2021.4587%2020.1989%2021.4587%2020.9599C21.4587%2021.7208%2021.2744%2024.4344%2020.9153%2023.648C19.8383%2022.7742%2020.4954%2021.3824%2019.1688%2020.9599C17.8422%2020.5374%2017.0365%2020.5515%2016.0579%2020.7298C15.0793%2020.9081%2016.7153%2020.24%2017.0623%2019.6058C17.7687%2018.9262%2015.867%2017.9286%2016.1912%2017.7026Z'%20fill='%23548650'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_128'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-cy {
    background-image: url(../image/cy.B1CUOHsD.svg)
}

.flag-icon-cz {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_130)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M-3.75%2020V40H43.75V20H-3.75Z'%20fill='%23E31D1C'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M-3.75%200V20H43.75V0H-3.75Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M-3.75%201.25V38.75L21.25%2020L-3.75%201.25Z'%20fill='%233D58DB'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_130'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-de {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_131)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2027.5H40V40H0V27.5Z'%20fill='%23FFD018'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2012.5H40V27.5H0V12.5Z'%20fill='%23E31D1C'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200H40V12.5H0V0Z'%20fill='%23272727'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_131'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-dj {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_132)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200V20H40V0H0Z'%20fill='%236699FF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2020V40H40V20H0Z'%20fill='%2373BE4A'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M-2.5%201.25V38.75L22.5%2020L-2.5%201.25Z'%20fill='white'/%3e%3cpath%20d='M8.75003%2015L9.8726%2018.4549H13.5053L10.5664%2020.5902L11.689%2024.0451L8.75003%2021.9098L5.81111%2024.0451L6.93368%2020.5902L3.99475%2018.4549H7.62746L8.75003%2015Z'%20fill='%23E31D1C'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_132'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-dk {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_133)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200V40H40V0H0Z'%20fill='%23C51918'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M10%200H16.25V16.875H40V23.125H16.25V40H10V23.125H0V16.875H10V0Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_133'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-dm {
    background-image: url(../image/dm.D16YN5S3.svg)
}

.flag-icon-do {
    background-image: url(../image/do.BSc9Gx2m.svg)
}

.flag-icon-dz {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_136)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M20%200H40V40H20V0Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200H20V40H0V0Z'%20fill='%2336A400'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M22.9298%209.97016C25.4981%209.97016%2027.845%2010.9016%2029.6394%2012.4393C27.3668%209.62071%2023.8521%207.8125%2019.9074%207.8125C13.055%207.8125%207.5%2013.269%207.5%2020C7.5%2026.731%2013.055%2032.1875%2019.9074%2032.1875C23.8522%2032.1875%2027.3671%2030.3792%2029.6396%2027.5604C27.8452%2029.0982%2025.4983%2030.0297%2022.9298%2030.0297C17.2905%2030.0297%2012.719%2025.5393%2012.719%2020C12.719%2014.4606%2017.2905%209.97016%2022.9298%209.97016ZM27.6881%2014.5263L24.8154%2017.7243L20.6894%2016.6076L22.9768%2020.1221L20.6894%2023.8634L25.0175%2022.3329L27.3835%2025.9607V21.7501L31.25%2020.1221L27.3835%2018.7617L27.6881%2014.5263Z'%20fill='%23FF0000'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_136'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-ec {
    background-image: url(../image/ec.DParB79Z.svg)
}

.flag-icon-ee {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_138)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200V40H40V0H0Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200V12.5H40V0H0Z'%20fill='%2340A8FF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2012.5V27.5H40V12.5H0Z'%20fill='%23272727'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_138'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-eg {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_139)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2012.5V27.5H40V12.5H0Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200V12.5H40V0H0Z'%20fill='%23BF2714'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2027.5V40H40V27.5H0Z'%20fill='%23272727'/%3e%3cpath%20d='M13.8499%2017.0548L15.4927%2017.1301L15.0803%2026.1181L13.4375%2026.0428L13.8499%2017.0548Z'%20fill='%23C09302'/%3e%3cpath%20d='M15.5664%2017.6127L17.2084%2017.7054L16.796%2024.9936L15.1541%2024.9008L15.5664%2017.6127Z'%20fill='%23C09302'/%3e%3cpath%20d='M17.284%2018.1585L18.923%2018.2929L18.5106%2023.3145L16.8716%2023.1802L17.284%2018.1585Z'%20fill='%23C09302'/%3e%3cpath%20d='M26.1501%2017.0548L24.5073%2017.1301L24.9197%2026.1181L26.5625%2026.0428L26.1501%2017.0548Z'%20fill='%23C09302'/%3e%3cpath%20d='M24.4336%2017.6127L22.7916%2017.7054L23.204%2024.9936L24.8459%2024.9008L24.4336%2017.6127Z'%20fill='%23C09302'/%3e%3cpath%20d='M22.7162%2018.1585L21.0771%2018.2929L21.4895%2023.3145L23.1285%2023.1802L22.7162%2018.1585Z'%20fill='%23C09302'/%3e%3cpath%20d='M19.9562%2025.4458L18.3531%2025.0788L19.0317%2022.1199L20.6347%2022.4869L19.9562%2025.4458Z'%20fill='%23C09302'/%3e%3cpath%20d='M21.1834%2025.4458L22.7864%2025.0788L22.1079%2022.1199L20.5048%2022.4869L21.1834%2025.4458Z'%20fill='%23C09302'/%3e%3cpath%20d='M20.7765%2025.4187H19.132V22.5136H20.7765V25.4187Z'%20fill='%23C09302'/%3e%3cpath%20d='M17.7547%2018.1936L19.3988%2018.2339L19.3028%2022.1462L17.6587%2022.1059L17.7547%2018.1936Z'%20fill='%23C09302'/%3e%3cpath%20d='M20.6149%2018.1936L22.2589%2018.2339L22.1629%2022.1462L20.5188%2022.1059L20.6149%2018.1936Z'%20fill='%23C09302'/%3e%3cpath%20d='M15.6222%2026.4254L16.0493%2024.8386C17.7942%2025.3074%2019.1341%2025.5393%2020.0477%2025.5393C20.9614%2025.5393%2022.3012%2025.3074%2024.0462%2024.8386L24.4733%2026.4254C22.6011%2026.9285%2021.133%2027.1825%2020.0477%2027.1825C18.9625%2027.1825%2017.4943%2026.9285%2015.6222%2026.4254Z'%20fill='%23C09302'/%3e%3cpath%20d='M13.886%2017.0589C13.7764%2015.9734%2014.4122%2015.2386%2015.4898%2015.3323C15.8442%2015.3631%2016.2421%2015.4679%2016.7722%2015.6476C16.9271%2015.7006%2016.9271%2015.7006%2017.0776%2015.7539C17.8063%2016.0128%2018.0041%2016.0794%2018.0452%2016.0882C17.8838%2016.0516%2018.3593%2015.1926%2018.4684%2015.0478C18.4813%2015.1398%2018.4266%2015.1267%2018.2951%2015.1004L16.8116%2014.8038L17.8676%2013.7213C18.2368%2013.3429%2018.7283%2013.1553%2019.2892%2013.1553C19.3474%2013.1553%2019.4016%2013.1526%2019.5798%2013.1416C19.7116%2013.1336%2019.7116%2013.1336%2019.8598%2013.1275C20.886%2013.0943%2021.6218%2013.3842%2021.6218%2014.4386C21.6218%2014.8158%2021.6695%2015.4224%2021.7482%2015.8826C21.7747%2016.0374%2021.8258%2016.1823%2021.675%2016.2459C21.6812%2016.191%2022.0407%2016.0493%2022.5995%2015.8157L22.6667%2015.7877C24.2905%2015.1105%2024.4803%2015.0476%2025.0037%2015.3655C25.3526%2015.5773%2025.6847%2015.9583%2026.0569%2016.5264L24.6809%2017.4264C24.4409%2017.06%2024.2497%2016.8377%2024.1587%2016.7756C24.3656%2016.9192%2023.6688%2017.1504%2023.3001%2017.3041L23.2341%2017.3317C21.9698%2017.86%2021.8031%2017.923%2021.4416%2017.923C20.4578%2017.923%2020.1046%2016.9162%2020.0079%2015.4742C19.7043%2016.4725%2018.7987%2017.7324%2018.0525%2017.7324C17.7258%2017.7324%2017.8828%2017.7841%2016.5265%2017.3021C16.3844%2017.2518%2016.3844%2017.2518%2016.2438%2017.2036C15.8329%2017.0643%2015.5365%2016.9862%2015.3495%2016.9695C15.3572%2016.9607%2015.3847%2016.9311%2015.4156%2016.9047L13.886%2017.0589Z'%20fill='%23C09302'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_139'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-eh {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_140)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M-6.66675%200H46.6666V40H-6.66675V0Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M-6.25%200V12.5H46.25V0H-6.25Z'%20fill='%23272727'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M-6.25%2027.5V40H46.25V27.5H-6.25Z'%20fill='%235EAA22'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M-3.75%201.25V38.75L21.25%2020L-3.75%201.25Z'%20fill='%23E31D1C'/%3e%3cpath%20d='M30.1312%2026.1404C29.7411%2026.2124%2029.3385%2026.25%2028.9268%2026.25C25.3774%2026.25%2022.5%2023.4518%2022.5%2020C22.5%2016.5482%2025.3774%2013.75%2028.9268%2013.75C29.3385%2013.75%2029.7411%2013.7876%2030.1312%2013.8596C27.1575%2014.4079%2024.9089%2016.9486%2024.9089%2020C24.9089%2023.0514%2027.1575%2025.5921%2030.1312%2026.1404Z'%20fill='%23E31D1C'/%3e%3cpath%20d='M27.2048%2023.7793L29.9336%2021.8759L32.6624%2023.8159L31.6462%2020.6863L34.375%2018.7646L31.0063%2018.7463L29.9713%2015.6351L28.908%2018.7372L25.5487%2018.728L28.2493%2020.668L27.2048%2023.7793Z'%20fill='%23E31D1C'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_140'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-er {
    background-image: url(../image/er.C1_qWt55.svg)
}

.flag-icon-es {
    background-image: url(../image/es.BrWTthQd.svg)
}

.flag-icon-et {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_143)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2012.5V27.5H40V12.5H0Z'%20fill='%23FECA00'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200V12.5H40V0H0Z'%20fill='%235EAA22'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2027.5V40H40V27.5H0Z'%20fill='%23E31D1C'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M20%2030C25.5228%2030%2030%2025.5228%2030%2020C30%2014.4772%2025.5228%2010%2020%2010C14.4772%2010%2010%2014.4772%2010%2020C10%2025.5228%2014.4772%2030%2020%2030Z'%20fill='%232B77B8'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M16.2221%2013.7181L15.7239%2014.0922L17.5838%2016.8416L18.082%2016.5023L16.2304%2013.7181H16.2221ZM18.5636%2020.2001L17.7997%2019.6346L18.1152%2018.5905L14.2957%2018.6427L13.1914%2017.7552L18.3975%2017.6943L19.369%2014.623L19.8755%2015.8759L18.547%2020.2088L18.5636%2020.2001ZM24.6332%2014.3184L24.135%2013.9269L22.2003%2016.6241L22.657%2017.0157L24.6332%2014.3184ZM19.4437%2018.6079L19.7177%2017.6769H20.7722L19.5682%2013.8747L20.0415%2012.5L21.6689%2017.6943L24.7577%2017.7291L23.7862%2018.6253L19.4437%2018.6079ZM26.6342%2022.8712L26.8418%2022.2448L23.8028%2021.1485L23.587%2021.714L26.6342%2022.8625V22.8712ZM21.1541%2019.0081L22.0841%2018.9907L22.4162%2020.0435L25.4884%2017.6769L26.875%2017.7291L22.6653%2020.9484L23.5787%2024.0371L22.466%2023.3411L21.1458%2019.0081H21.1541ZM19.5765%2027.4913L20.2076%2027.5L20.2325%2024.1328L19.6513%2024.098L19.5848%2027.4913H19.5765ZM21.3202%2020.8092L21.6274%2021.7314L20.7888%2022.4014L23.9108%2024.7071L24.3093%2026.0992L20.0581%2022.9495L17.5589%2024.8376L17.8329%2023.5151L21.3285%2020.8179L21.3202%2020.8092ZM13.125%2021.8881L13.316%2022.5145L16.3798%2021.4965L16.2304%2020.9049L13.125%2021.8881ZM19.7343%2021.5574L18.987%2022.1491L18.1235%2021.5052L17.0026%2025.3335L15.8567%2026.1601L17.4094%2020.9397L14.9185%2019.0429L16.2055%2018.9037L19.7343%2021.5574Z'%20fill='%23FFC621'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_143'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-eu {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_144)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200H40V37.5C40%2038.8807%2038.8807%2040%2037.5%2040H2.5C1.11929%2040%200%2038.8807%200%2037.5V0Z'%20fill='%232B409A'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M20.5804%208.6625L20.0106%207.5L19.4419%208.6625L18.1689%208.84792L19.0898%209.75208L18.8721%2011.0302L20.0106%2010.4271L21.1502%2011.0302L20.9325%209.75208L21.8533%208.84792L20.5804%208.6625ZM15.1117%2010.3104L14.5419%209.14795L13.9742%2010.3104L12.7002%2010.4969L13.621%2011.4011L13.4044%2012.6792L14.5429%2012.0761L15.6814%2012.6792L15.4637%2011.4011L16.3846%2010.4969L15.1117%2010.3104ZM10.6346%2012.7612L11.2044%2013.9237L12.4783%2014.1091L11.5575%2015.0133L11.7742%2016.2914L10.6356%2015.6883L9.49707%2016.2914L9.71478%2015.0133L8.79395%2014.1091L10.0669%2013.9237L10.6346%2012.7612ZM24.9106%2010.3104L25.4804%209.14795L26.0481%2010.3104L27.3221%2010.4969L26.4012%2011.4011L26.6179%2012.6792L25.4794%2012.0761L24.3408%2012.6792L24.5585%2011.4011L23.6377%2010.4969L24.9106%2010.3104ZM14.5419%2026.7139L15.1117%2027.8764L16.3846%2028.0628L15.4637%2028.967L15.6814%2030.2451L14.5429%2029.642L13.4044%2030.2451L13.621%2028.967L12.7002%2028.0628L13.9742%2027.8764L14.5419%2026.7139ZM24.9106%2027.8764L25.4804%2026.7139L26.0481%2027.8764L27.3221%2028.0628L26.4012%2028.967L26.6179%2030.2451L25.4794%2029.642L24.3408%2030.2451L24.5585%2028.967L23.6377%2028.0628L24.9106%2027.8764ZM29.3633%2012.7612L28.7935%2013.9237L27.5195%2014.1091L28.4404%2015.0133L28.2237%2016.2914L29.3622%2015.6883L30.5008%2016.2914L30.2831%2015.0133L31.2039%2014.1091L29.931%2013.9237L29.3633%2012.7612ZM11.2044%2024.2143L10.6346%2023.0518L10.0669%2024.2143L8.79395%2024.4007L9.71478%2025.3049L9.49707%2026.583L10.6356%2025.9799L11.7742%2026.583L11.5575%2025.3049L12.4783%2024.4007L11.2044%2024.2143ZM29.3633%2023.0518L28.7935%2024.2143L27.5195%2024.4007L28.4404%2025.3049L28.2237%2026.583L29.3622%2025.9799L30.5008%2026.583L30.2831%2025.3049L31.2039%2024.4007L29.931%2024.2143L29.3633%2023.0518ZM31.227%2019.3925L30.6572%2018.23L30.0874%2019.3925L28.8135%2019.5789L29.7374%2020.4831L29.5197%2021.7612L30.6583%2021.1581L31.7968%2021.7612L31.5791%2020.4831L32.4999%2019.5789L31.227%2019.3925ZM9.34271%2018.23L9.9125%2019.3925L11.1865%2019.5789L10.2646%2020.4831L10.4823%2021.7612L9.34375%2021.1581L8.20521%2021.7612L8.42292%2020.4831L7.5%2019.5789L8.77292%2019.3925L9.34271%2018.23ZM20.5804%2030.1347L20.0106%2028.9722L19.4419%2030.1347L18.1689%2030.3211L19.0898%2031.2253L18.8721%2032.5034L20.0106%2031.9003L21.1492%2032.5034L20.9325%2031.2253L21.8533%2030.3211L20.5804%2030.1347Z'%20fill='%23FFEB3B'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_144'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-fi {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_145)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M-7.5%20-1.25V41.25H50V-1.25H-7.5Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M10%200H16.25V16.875H40V23.125H16.25V40H10V23.125H0V16.875H10V0Z'%20fill='%232E42A5'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_145'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-fj {
    background-image: url(../image/fj.D3-MPJ0L.svg)
}

.flag-icon-fk {
    background-image: url(../image/fk.Xb490iOj.svg)
}

.flag-icon-fm {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_148)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200V40H40V0H0Z'%20fill='%2363B3E1'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M20.0001%2014.375L17.7959%2015.5338L18.2168%2013.0794L16.4336%2011.3412L18.898%2010.9831L20.0001%208.75L21.1022%2010.9831L23.5665%2011.3412L21.7833%2013.0794L22.2043%2015.5338L20.0001%2014.375Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M20.0001%2029.375L17.7959%2030.5338L18.2168%2028.0794L16.4336%2026.3412L18.898%2025.9831L20.0001%2023.75L21.1022%2025.9831L23.5665%2026.3412L21.7833%2028.0794L22.2043%2030.5338L20.0001%2029.375Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M12.5001%2021.875L10.2959%2023.0338L10.7168%2020.5794L8.93359%2018.8412L11.398%2018.4831L12.5001%2016.25L13.6022%2018.4831L16.0665%2018.8412L14.2833%2020.5794L14.7043%2023.0338L12.5001%2021.875Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M27.5001%2021.875L25.2959%2023.0338L25.7168%2020.5794L23.9336%2018.8412L26.398%2018.4831L27.5001%2016.25L28.6022%2018.4831L31.0665%2018.8412L29.2833%2020.5794L29.7043%2023.0338L27.5001%2021.875Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_148'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-fo {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_149)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%205V35H40V5H0Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M10%200H16.25V16.875H40V23.125H16.25V40H10V23.125H0V16.875H10V0Z'%20fill='%23F50100'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M7.5%20-2.5H18.75V14.375H42.5V25.625H18.75V42.5H7.5V25.625H-2.5V14.375H7.5V-2.5ZM10%2016.875H0V23.125H10V40H16.25V23.125H40V16.875H16.25V0H10V16.875Z'%20fill='%232E42A5'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_149'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-fr {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_150)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M27.5%200H40V40H27.5V0Z'%20fill='%23F50100'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200H12.5V40H0V0Z'%20fill='%232E42A5'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M12.5%200H27.5V40H12.5V0Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_150'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-ga {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_151)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2027.5H40V40H0V27.5Z'%20fill='%2340A8FF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2012.5H40V27.5H0V12.5Z'%20fill='%23FECA00'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200H40V12.5H0V0Z'%20fill='%2373BE4A'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_151'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-gb {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_152)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200V40H40V0H0Z'%20fill='%232E42A5'/%3e%3cpath%20d='M-4.45398%2032.8567L4.34813%2036.5793L40.1997%209.04726L44.8426%203.51541L35.43%202.27121L20.807%2014.1356L9.03701%2022.1293L-4.45398%2032.8567Z'%20fill='white'/%3e%3cpath%20d='M-3.75%2035.3162L0.838174%2037.5L45%202.5H38.5577L-3.75%2035.3162Z'%20fill='%23F50100'/%3e%3cpath%20d='M44.454%2032.8567L35.6519%2036.5793L-0.19968%209.04726L-4.84259%203.51541L4.57%202.27121L19.193%2014.1356L30.963%2022.1293L44.454%2032.8567Z'%20fill='white'/%3e%3cpath%20d='M45%2035.3141L40.5786%2037.5L21.7204%2022.5L16.4999%2020.8241L-5%203.75H1.20819L22.696%2020.4188L28.4037%2022.4284L45%2035.3141Z'%20fill='%23F50100'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M25%20-2.5H15V15H-2.46558V25H15V42.5H25V25H42.5344V15H25V-2.5Z'%20fill='%23F50100'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M15%2015H-2.46558V25H15V42.5H25V25H42.5344V15H25V-2.5H15V15ZM17.5%200V17.5H0.0344238V22.5H17.5V40H22.5V22.5H40.0344V17.5H22.5V0H17.5Z'%20fill='white'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_152'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-gd {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_153)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200H40V40H0V0Z'%20fill='%23C51918'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M7.5%2012.5H32.5V27.5H7.5V12.5Z'%20fill='%23FECA00'/%3e%3cpath%20d='M20%2020L7.5%2012.5V27.5L20%2020Z'%20fill='%2323875F'/%3e%3cpath%20d='M20%2020L32.5%2027.5V12.5L20%2020Z'%20fill='%2323875F'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M20%2025C22.7614%2025%2025%2022.7614%2025%2020C25%2017.2386%2022.7614%2015%2020%2015C17.2386%2015%2015%2017.2386%2015%2020C15%2022.7614%2017.2386%2025%2020%2025Z'%20fill='%23C51918'/%3e%3cpath%20d='M11.1748%2010.625L12.5011%209.80258L13.8901%2010.5419L13.4036%209.21639L14.375%208.26791H13.0589L12.5011%206.875L11.9434%208.26791L10.625%208.31656L11.5986%209.21639L11.1748%2010.625Z'%20fill='%23FECA00'/%3e%3cpath%20d='M18.6748%2010.625L20.0011%209.80258L21.3901%2010.5419L20.9036%209.21639L21.875%208.26791H20.5589L20.0011%206.875L19.4434%208.26791L18.125%208.31656L19.0986%209.21639L18.6748%2010.625Z'%20fill='%23FECA00'/%3e%3cpath%20d='M27.5011%209.80258L26.1748%2010.625L26.5986%209.21639L25.625%208.31656L26.9434%208.26791L27.5011%206.875L28.0589%208.26791H29.375L28.4036%209.21639L28.8901%2010.5419L27.5011%209.80258Z'%20fill='%23FECA00'/%3e%3cpath%20d='M11.1748%2033.125L12.5011%2032.3026L13.8901%2033.0419L13.4036%2031.7164L14.375%2030.7679H13.0589L12.5011%2029.375L11.9434%2030.7679L10.625%2030.8166L11.5986%2031.7164L11.1748%2033.125Z'%20fill='%23FECA00'/%3e%3cpath%20d='M20.0011%2032.3026L18.6748%2033.125L19.0986%2031.7164L18.125%2030.8166L19.4434%2030.7679L20.0011%2029.375L20.5589%2030.7679H21.875L20.9036%2031.7164L21.3901%2033.0419L20.0011%2032.3026Z'%20fill='%23FECA00'/%3e%3cpath%20d='M26.1748%2033.125L27.5011%2032.3026L28.8901%2033.0419L28.4036%2031.7164L29.375%2030.7679H28.0589L27.5011%2029.375L26.9434%2030.7679L25.625%2030.8166L26.5986%2031.7164L26.1748%2033.125Z'%20fill='%23FECA00'/%3e%3cpath%20d='M20%2015.625L20.9822%2018.6481H24.1609L21.5893%2020.5164L22.5715%2023.5394L20%2021.6711L17.4284%2023.5394L18.4107%2020.5164L15.8391%2018.6481H19.0177L20%2015.625Z'%20fill='%23FECA00'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M10.7933%2020.965C10.7933%2020.965%2011.4665%2021.5643%2011.8332%2021.7683C11.9596%2021.2892%2011.6775%2020.2036%2011.6775%2020.2036C11.5984%2019.9441%2010.7303%2019.4789%2010.7303%2019.4789C10.7303%2019.4789%2010.4864%2020.2981%2010.7933%2020.965Z'%20fill='%23C51918'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M11.4948%2022.4127C11.4948%2022.4127%209.76576%2021.6051%209.59005%2020.4629C9.41435%2019.3207%209.78698%2017.4997%209.78698%2017.4997C9.78698%2017.4997%2012.5947%2018.1387%2012.7858%2019.5077C12.9768%2020.8767%2012.3426%2021.7367%2012.3426%2021.7367C12.3426%2021.7367%2011.6932%2020.0678%2011.0803%2019.8827C11.0803%2019.8827%2011.0803%2021.5367%2011.4948%2022.4127Z'%20fill='%23FECA00'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_153'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-ge {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_154)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200V40H40V0H0Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M11.7898%2028.2403L15%2027.9167V30.8333C15%2030.8333%2011.7898%2030.6323%2011.7898%2030.6904C11.7898%2030.7484%2012.0833%2033.75%2012.0833%2033.75H9.16667L9.40032%2030.8333H6.25V27.9167L9.40032%2028.2403L9.16667%2025H12.0833L11.7898%2028.2403Z'%20fill='%23E31D1C'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M11.7898%209.49035L15%209.16667V12.0833C15%2012.0833%2011.7898%2011.8823%2011.7898%2011.9404C11.7898%2011.9984%2012.0833%2015%2012.0833%2015H9.16667L9.40032%2012.0833H6.25V9.16667L9.40032%209.49035L9.16667%206.25H12.0833L11.7898%209.49035Z'%20fill='%23E31D1C'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M30.5398%209.49035L33.75%209.16667V12.0833C33.75%2012.0833%2030.5398%2011.8823%2030.5398%2011.9404C30.5398%2011.9984%2030.8333%2015%2030.8333%2015H27.9167L28.1503%2012.0833H25V9.16667L28.1503%209.49035L27.9167%206.25H30.8333L30.5398%209.49035Z'%20fill='%23E31D1C'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M30.5398%2028.2403L33.75%2027.9167V30.8333C33.75%2030.8333%2030.5398%2030.6323%2030.5398%2030.6904C30.5398%2030.7484%2030.8333%2033.75%2030.8333%2033.75H27.9167L28.1503%2030.8333H25V27.9167L28.1503%2028.2403L27.9167%2025H30.8333L30.5398%2028.2403Z'%20fill='%23E31D1C'/%3e%3cpath%20d='M22.5%200H17.5V17.5H0V22.5H17.5V40H22.5V22.5H40V17.5H22.5V0Z'%20fill='%23E31D1C'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_154'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-gf {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_155)'%3e%3cpath%20d='M0%202.5C0%201.11929%201.11929%200%202.5%200H37.5C38.8807%200%2040%201.11929%2040%202.5V37.5C40%2038.8807%2038.8807%2040%2037.5%2040H2.5C1.11929%2040%200%2038.8807%200%2037.5V2.5Z'%20fill='%235EAA22'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%205L46.25%2040H0V5Z'%20fill='%23FECA00'/%3e%3cpath%20d='M20%2012.5L21.6838%2017.6824H27.1329L22.7245%2020.8853L24.4084%2026.0676L20%2022.8647L15.5916%2026.0676L17.2755%2020.8853L12.8671%2017.6824H18.3161L20%2012.5Z'%20fill='%23E21835'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_155'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-gg {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_156)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%205V35H40V5H0Z'%20fill='%23F7FCFF'/%3e%3cpath%20d='M25%200H15V14.6641H0V25.336H15V40H25V25.336H40V14.6641H25V0Z'%20fill='%23E31D1C'/%3e%3cpath%20d='M16.5179%203.75L18.2589%205.49107V18.2589H5.49107L3.75%2016.5179V23.4821L5.49107%2021.7411H18.2589V34.5089L16.5179%2036.25H23.4821L21.7411%2034.5089V21.7411H34.5089L36.25%2023.4821V16.5179L34.5089%2018.2589H21.7411V5.49107L23.4821%203.75H16.5179Z'%20fill='%23FECA00'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_156'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-gh {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_157)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2027.5H40V40H0V27.5Z'%20fill='%235EAA22'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2012.5H40V27.5H0V12.5Z'%20fill='%23FECA00'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200H40V12.5H0V0Z'%20fill='%23E11C1B'/%3e%3cpath%20d='M20%2013.125L21.6838%2018.3074H27.1329L22.7245%2021.5103L24.4084%2026.6926L20%2023.4897L15.5916%2026.6926L17.2755%2021.5103L12.8671%2018.3074H18.3161L20%2013.125Z'%20fill='%231D1D1D'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_157'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-gi {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_158)'%3e%3cpath%20d='M0%200H40V25H0V0Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2025H40V40H0V25Z'%20fill='%23C51918'/%3e%3cpath%20d='M16.875%2010H18.125V11.25H18.4375V10H19.6875V11.25H20.3125V10H21.5625V11.25H21.875V10H23.125V11.25H22.5V16.875H23.75V13.75H23.125V12.5H24.375V13.75H25V12.5H26.875V13.75H27.5V12.5H28.75V13.75H28.125V16.875H29.375V15.625H30.625V18.125H30V23.75H31.25V25H8.75V23.75H10V18.125H9.375V15.625H10.625V16.875H11.875V13.75H11.25V12.5H12.5V13.75H13.125V12.5H15V13.75H15.625V12.5H16.875V13.75H16.25V16.875H17.5V11.25H16.875V10Z'%20fill='%23DB000B'/%3e%3cpath%20d='M20%2013.75C19.3096%2013.75%2018.75%2014.3096%2018.75%2015V17.5H21.25V15C21.25%2014.3096%2020.6904%2013.75%2020%2013.75Z'%20fill='%23272727'/%3e%3cpath%20d='M14.0625%2015C13.5447%2015%2013.125%2015.4197%2013.125%2015.9375V17.5H15V15.9375C15%2015.4197%2014.5803%2015%2014.0625%2015Z'%20fill='%23272727'/%3e%3cpath%20d='M25.9375%2015C25.4197%2015%2025%2015.4197%2025%2015.9375V17.5H26.875V15.9375C26.875%2015.4197%2026.4553%2015%2025.9375%2015Z'%20fill='%23272727'/%3e%3cpath%20d='M12.5%2021.25C12.5%2020.5596%2013.0596%2020%2013.75%2020C14.4404%2020%2015%2020.5596%2015%2021.25V23.75H12.5V21.25Z'%20fill='%23272727'/%3e%3cpath%20d='M26.25%2020C25.5596%2020%2025%2020.5596%2025%2021.25V23.75H27.5V21.25C27.5%2020.5596%2026.9404%2020%2026.25%2020Z'%20fill='%23272727'/%3e%3cpath%20d='M18.125%2021.875C18.125%2020.8395%2018.9645%2020%2020%2020C21.0355%2020%2021.875%2020.8395%2021.875%2021.875V25H18.125V21.875Z'%20fill='%23272727'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M23.125%2026.25L20.625%2027.75V33.75H19.375V33.125H18.75V33.75H18.125V31.875H19.375V27.75L16.875%2026.25L20%2024.375L23.125%2026.25ZM20%2025.4683L21.3028%2026.25L20%2027.0317L18.6972%2026.25L20%2025.4683Z'%20fill='%23E8AA00'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_158'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-gl {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_159)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M-3.75%2020H49.5833V40H-3.75V20Z'%20fill='%23C51918'/%3e%3cmask%20id='mask0_18799_159'%20style='mask-type:luminance'%20maskUnits='userSpaceOnUse'%20x='0'%20y='20'%20width='40'%20height='20'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2020H40V40H0V20Z'%20fill='white'/%3e%3c/mask%3e%3cg%20mask='url(%23mask0_18799_159)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M16.25%2032.5C23.1536%2032.5%2028.75%2026.9036%2028.75%2020C28.75%2013.0964%2023.1536%207.5%2016.25%207.5C9.34644%207.5%203.75%2013.0964%203.75%2020C3.75%2026.9036%209.34644%2032.5%2016.25%2032.5Z'%20fill='%23F7FCFF'/%3e%3c/g%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M-3.75%200H49.5833V20H-3.75V0Z'%20fill='%23F7FCFF'/%3e%3cmask%20id='mask1_18799_159'%20style='mask-type:luminance'%20maskUnits='userSpaceOnUse'%20x='0'%20y='0'%20width='40'%20height='20'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200H40V20H0V0Z'%20fill='white'/%3e%3c/mask%3e%3cg%20mask='url(%23mask1_18799_159)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M16.25%2032.5C23.1536%2032.5%2028.75%2026.9036%2028.75%2020C28.75%2013.0964%2023.1536%207.5%2016.25%207.5C9.34644%207.5%203.75%2013.0964%203.75%2020C3.75%2026.9036%209.34644%2032.5%2016.25%2032.5Z'%20fill='%23C51918'/%3e%3c/g%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_159'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-gm {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_160)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2027.5H40V40H0V27.5Z'%20fill='%235EAA22'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200H40V12.5H0V0Z'%20fill='%23E31D1C'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2017.5H40V22.5H0V17.5Z'%20fill='%233D58DB'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M-3.75%2013.75H43.75V26.25H-3.75V13.75ZM0%2017.5V22.5H40V17.5H0Z'%20fill='white'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_160'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-gn {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_161)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M12.5%200H27.5V40H12.5V0Z'%20fill='%23FBCD17'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M27.5%200H40V40H27.5V0Z'%20fill='%230B9E7A'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200H12.5V40H0V0Z'%20fill='%23E11C1B'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_161'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-gp {
    background-image: url(../image/gp.Lv3U9YeD.svg)
}

.flag-icon-gq {
    background-image: url(../image/gq.BC1-SPm1.svg)
}

.flag-icon-gr {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_164)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M-2.5%200H40V40H-2.5V0Z'%20fill='%234564F9'/%3e%3cpath%20d='M22.5%2013.75H41.25V18.125H22.5V13.75Z'%20fill='%23F7FCFF'/%3e%3cpath%20d='M0%2022.5H40V26.875H0V22.5Z'%20fill='%23F7FCFF'/%3e%3cpath%20d='M0%2031.25H40V35.625H0V31.25Z'%20fill='%23F7FCFF'/%3e%3cpath%20d='M22.5%205H41.25V9.375H22.5V5Z'%20fill='%23F7FCFF'/%3e%3cpath%20d='M-3.75%209.375H22.5V13.75H-3.75V9.375Z'%20fill='%23F7FCFF'/%3e%3cpath%20d='M11.5625%20-0.625L11.5625%2025.625H7.1875L7.1875%20-0.625L11.5625%20-0.625Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_164'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-gs {
    background-image: url(../image/gs.BnkOX4u4.svg)
}

.flag-icon-gt {
    background-image: url(../image/gt.CIUoOogE.svg)
}

.flag-icon-gu {
    background-image: url(../image/gu.iHx23gIU.svg)
}

.flag-icon-gw {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_168)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M20%200H47.5V20H20V0Z'%20fill='%23FBCD17'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M20%2020H47.5V40H20V20Z'%20fill='%230B9E7A'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200H20V40H0V0Z'%20fill='%23E11C1B'/%3e%3cpath%20d='M9.99999%2012.5L11.6838%2017.6824H17.1329L12.7245%2020.8853L14.4084%2026.0676L9.99999%2022.8647L5.5916%2026.0676L7.27545%2020.8853L2.86707%2017.6824H8.31613L9.99999%2012.5Z'%20fill='%231D1D1D'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_168'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-gy {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_169)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200H40V40H0V0Z'%20fill='%235EAA22'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%205L42.5%2020L0%2035V5Z'%20fill='%23FECA00'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%205V35L42.5%2020L0%205ZM2.5%208.53349V31.4665L34.9884%2020L2.5%208.53349Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M-2.5%202.5L20%2020L-2.5%2037.5V2.5Z'%20fill='%23E11C1B'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M-2.5%202.5V37.5L20%2020L-2.5%202.5ZM0%207.6116V32.3884L15.9279%2020L0%207.6116Z'%20fill='%23272727'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_169'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-hk {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_170)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200V40H40V0H0Z'%20fill='%23EA1A1A'/%3e%3cpath%20d='M23.0755%208.14108C16.297%207.69659%2013.1856%2016.5864%2019.5965%2019.8688C17.374%2017.954%2017.8356%2015.1332%2018.7331%2013.6801L18.8956%2013.7656C17.716%2015.7829%2017.9382%2018.2789%2019.8358%2019.8346C18.7588%2018.7917%2019.0323%2016.5009%2020.8787%2015.6632C22.725%2014.8255%2022.896%2012.3039%2022.2805%2011.4662C21.4428%2010.0074%2021.7078%208.89614%2023.0755%208.13253V8.14108ZM19.7931%2013.3382L19.3913%2013.9707L19.2375%2013.2356L18.5024%2013.039L19.1691%2012.6715L19.1178%2011.9021L19.6734%2012.4321L20.3829%2012.15L20.0666%2012.8339L20.5453%2013.4237L19.7931%2013.3382Z'%20fill='white'/%3e%3cpath%20d='M32.4847%2019.1756C30.8128%2012.5915%2021.3966%2012.3795%2020.2559%2019.4909C21.3902%2016.7856%2024.2156%2016.3529%2025.8749%2016.7574L25.8438%2016.9383C23.5607%2016.4398%2021.2556%2017.4225%2020.3624%2019.708C21.0214%2018.3614%2023.2846%2017.9137%2024.6519%2019.4108C26.0191%2020.9079%2028.4702%2020.2912%2029.0767%2019.4471C30.2052%2018.1996%2031.344%2018.1082%2032.4928%2019.1729L32.4847%2019.1756ZM26.5276%2017.6598L25.8019%2017.4732L26.4535%2017.0997L26.4133%2016.3398L26.9689%2016.8604L27.6847%2016.5739L27.3524%2017.266L27.8399%2017.8536L27.0918%2017.7641L26.6788%2018.4017L26.5276%2017.6598Z'%20fill='white'/%3e%3cpath%20d='M24.8979%2031.5342C30.643%2027.9096%2027.935%2018.8887%2020.8191%2020.0015C23.7425%2020.2442%2025.0271%2022.7976%2025.1551%2024.5007L24.9735%2024.527C24.7421%2022.2017%2023.0952%2020.313%2020.6456%2020.1698C22.1299%2020.3804%2023.2551%2022.3945%2022.2537%2024.1575C21.2524%2025.9204%2022.5963%2028.0609%2023.5866%2028.3769C25.1218%2029.0647%2025.5605%2030.1195%2024.9029%2031.5412L24.8979%2031.5342ZM24.4986%2025.4004L24.4518%2024.6525L25.0084%2025.1568L25.7187%2024.8837L25.3953%2025.573L25.889%2026.1652L25.128%2026.063L24.7198%2026.7083L24.5738%2025.9691L23.8398%2025.7733L24.4986%2025.4004Z'%20fill='white'/%3e%3cpath%20d='M10.7997%2028.1378C16.0224%2032.4817%2023.7648%2027.1185%2020.5076%2020.6948C21.1802%2023.5502%2019.1487%2025.5609%2017.5685%2026.209L17.4873%2026.0444C19.6274%2025.1057%2020.9147%2022.9558%2020.2939%2020.5818C20.5523%2022.0585%2018.9845%2023.7511%2016.9984%2023.3435C15.0123%2022.936%2013.3918%2024.8755%2013.3973%2025.915C13.2175%2027.5876%2012.35%2028.3308%2010.7947%2028.1447L10.7997%2028.1378ZM16.51%2025.8626L17.2068%2025.587L16.8992%2026.2722L17.3784%2026.8633L16.6229%2026.7688L16.2122%2027.4213L16.0743%2026.666L15.3345%2026.4771L15.9923%2026.1098L15.9517%2025.3513L16.51%2025.8626Z'%20fill='white'/%3e%3cpath%20d='M9.67337%2013.68C7.15597%2019.9894%2014.6492%2025.6956%2019.752%2020.6128C17.2442%2022.1348%2014.7041%2020.8241%2013.5994%2019.5215L13.7309%2019.3934C15.285%2021.1387%2017.7275%2021.6986%2019.7934%2020.3746C18.4688%2021.0767%2016.3746%2020.1086%2016.1485%2018.0938C15.9223%2016.0789%2013.577%2015.1371%2012.5901%2015.4636C10.9438%2015.8095%209.96884%2015.2141%209.66524%2013.6774L9.67337%2013.68ZM13.6018%2018.4078L14.0792%2018.9853L13.3325%2018.9045L12.9184%2019.5429L12.7749%2018.7952L12.0274%2018.6062L12.7031%2018.2416L12.6541%2017.4797L13.2067%2017.9918L13.9155%2017.7188L13.6018%2018.4078Z'%20fill='white'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_170'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-hm {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_171)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200V40H40V0H0Z'%20fill='%232E42A5'/%3e%3cpath%20d='M11.8749%2030.3125L9.97669%2032.0667L10.1647%2029.4889L7.60962%2029.0985L9.74227%2027.6382L8.45442%2025.3972L10.9258%2026.1541L11.8749%2023.75L12.824%2026.1541L15.2954%2025.3972L14.0076%2027.6382L16.1402%2029.0985L13.5852%2029.4889L13.7732%2032.0667L11.8749%2030.3125Z'%20fill='%23F7FCFF'/%3e%3cpath%20d='M25.3125%2020.4688L24.0922%2021.5965L24.2131%2019.9393L22.5706%2019.6883L23.9415%2018.7496L23.1136%2017.3089L24.7024%2017.7955L25.3125%2016.25L25.9227%2017.7955L27.5114%2017.3089L26.6835%2018.7496L28.0545%2019.6883L26.412%2019.9393L26.5328%2021.5965L25.3125%2020.4688Z'%20fill='%23F7FCFF'/%3e%3cpath%20d='M28.4375%209.21875L27.2172%2010.3465L27.3381%208.68928L25.6956%208.43834L27.0665%207.49958L26.2386%206.05893L27.8274%206.54551L28.4375%205L29.0477%206.54551L30.6364%206.05893L29.8085%207.49958L31.1795%208.43834L29.537%208.68928L29.6578%2010.3465L28.4375%209.21875Z'%20fill='%23F7FCFF'/%3e%3cpath%20d='M35.3125%2015.4688L34.0922%2016.5965L34.2131%2014.9393L32.5706%2014.6883L33.9415%2013.7496L33.1136%2012.3089L34.7024%2012.7955L35.3125%2011.25L35.9227%2012.7955L37.5114%2012.3089L36.6835%2013.7496L38.0545%2014.6883L36.412%2014.9393L36.5328%2016.5965L35.3125%2015.4688Z'%20fill='%23F7FCFF'/%3e%3cpath%20d='M30.3125%2031.7188L29.0922%2032.8465L29.2131%2031.1893L27.5706%2030.9383L28.9415%2029.9996L28.1136%2028.5589L29.7024%2029.0455L30.3125%2027.5L30.9227%2029.0455L32.5114%2028.5589L31.6835%2029.9996L33.0545%2030.9383L31.412%2031.1893L31.5328%2032.8465L30.3125%2031.7188Z'%20fill='%23F7FCFF'/%3e%3cpath%20d='M34.6876%2023.2812L33.4018%2023.9572L33.6474%2022.5255L32.6072%2021.5115L34.0447%2021.3026L34.6876%2020L35.3305%2021.3026L36.768%2021.5115L35.7278%2022.5255L35.9734%2023.9572L34.6876%2023.2812Z'%20fill='%23F7FCFF'/%3e%3cpath%20d='M20%200V2.5L12.5781%2010L20%2017.3047V20H17.3828L9.92188%2012.6562L2.65625%2020H0V17.3438L7.26562%2010.0391L0%202.89062V0H2.42188L9.92188%207.34375L17.1875%200H20Z'%20fill='white'/%3e%3cpath%20d='M7.1875%2012.6562L7.61719%2013.9844L1.64062%2020H0V19.8828L7.1875%2012.6562ZM12.0312%2012.1875L14.1406%2012.5L20%2018.2422V20L12.0312%2012.1875ZM20%200L12.5%207.65625L12.3438%205.9375L18.2031%200H20ZM0%200.0390625L7.53906%207.42188L5.23438%207.10938L0%201.91406V0.0390625Z'%20fill='%23F50100'/%3e%3cpath%20d='M6.875%200V20H13.125V0H6.875ZM0%206.875V13.125H20V6.875H0Z'%20fill='white'/%3e%3cpath%20d='M0%208.125V11.875H20V8.125H0ZM8.125%200V20H11.875V0H8.125Z'%20fill='%23F50100'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_171'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-hn {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_172)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2012.5V27.5H40V12.5H0Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200V12.5H40V0H0Z'%20fill='%234564F9'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2027.5V40H40V27.5H0Z'%20fill='%234564F9'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M20.6771%2021.1277L19.2286%2021.875L19.5052%2020.2921L18.3334%2019.0556H19.9529L20.6771%2017.5L21.4014%2019.0556H23.0209L21.849%2020.2921L22.1256%2021.875L20.6771%2021.1277Z'%20fill='%234564F9'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M11.0938%2017.3777L9.64523%2018.125L9.92188%2016.5421L8.75%2015.3056H10.3695L11.0938%2013.75L11.818%2015.3056H13.4375L12.2656%2016.5421L12.5423%2018.125L11.0938%2017.3777Z'%20fill='%234564F9'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M11.0938%2024.8777L9.64523%2025.625L9.92188%2024.0421L8.75%2022.8056H10.3695L11.0938%2021.25L11.818%2022.8056H13.4375L12.2656%2024.0421L12.5423%2025.625L11.0938%2024.8777Z'%20fill='%234564F9'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M29.8438%2017.3777L28.3952%2018.125L28.6719%2016.5421L27.5%2015.3056H29.1195L29.8438%2013.75L30.568%2015.3056H32.1875L31.0156%2016.5421L31.2923%2018.125L29.8438%2017.3777Z'%20fill='%234564F9'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M29.8438%2024.8777L28.3952%2025.625L28.6719%2024.0421L27.5%2022.8056H29.1195L29.8438%2021.25L30.568%2022.8056H32.1875L31.0156%2024.0421L31.2923%2025.625L29.8438%2024.8777Z'%20fill='%234564F9'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_172'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-hr {
    background-image: url(../image/hr.Bx31xRIf.svg)
}

.flag-icon-ht {
    background-image: url(../image/ht.BmoOt3ir.svg)
}

.flag-icon-hu {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_175)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2012.5V27.5H40V12.5H0Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200V12.5H40V0H0Z'%20fill='%23F14423'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2027.5V40H40V27.5H0Z'%20fill='%235EAA22'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_175'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-id {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_176)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2020V40H40V20H0Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200V20H40V0H0Z'%20fill='%23E31D1C'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_176'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-ie {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_177)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M27.5%200H40V40H27.5V0Z'%20fill='%23FF8C1A'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200H12.5V40H0V0Z'%20fill='%235EAA22'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M12.5%200H27.5V40H12.5V0Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_177'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-il {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_178)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200V40H40V0H0Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%205V10H40V5H0Z'%20fill='%233D58DB'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2030V35H40V30H0Z'%20fill='%233D58DB'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M12.6853%2024.6985H27.5L20.1657%2011.875L12.6853%2024.6985ZM24.9643%2023.1427H15.2752L20.1509%2014.7109L24.9643%2023.1427Z'%20fill='%233D58DB'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M12.5%2015.6607H27.3776L20.1971%2028.125L12.5%2015.6607ZM24.7938%2017.1621H15.3233L20.1551%2025.6118L24.7938%2017.1621Z'%20fill='%233D58DB'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_178'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-im {
    background-image: url(../image/im.DRQ2dMcZ.svg)
}

.flag-icon-in {
    background-image: url(../image/in.DVrLSnEL.svg)
}

.flag-icon-io {
    background-image: url(../image/io.C8o_BMPE.svg)
}

.flag-icon-iq {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_182)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2012.5V27.5H40V12.5H0Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200V12.5H40V0H0Z'%20fill='%23BF2714'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2027.5V40H40V27.5H0Z'%20fill='%23272727'/%3e%3cpath%20d='M4.24729%2021.183C5.59102%2023.0867%203.75%2024.375%203.75%2024.375C3.75%2024.375%205.35948%2024.375%205.97587%2023.0999H19.1493V20.2914C19.1493%2020.2914%2018.8737%2018.9427%2017.7007%2018.9427C16.5277%2018.9427%2016.2634%2020.2914%2016.2634%2020.2914H11.6299L16.113%2016.3846L15.2414%2015.625L10.2618%2019.9644V20.8845H17.3307V20.3429C17.3307%2020.3429%2017.3704%2020.0293%2017.7007%2020.0293C18.031%2020.0293%2017.9506%2020.3429%2017.9506%2020.3429V21.4997H9.04249V19.9179L8.07794%2020.3429V21.4997C8.07794%2021.4997%206.89661%2021.183%206.15006%2021.183C5.40352%2021.183%205.35948%2020.3429%205.35948%2020.3429L4.24729%2021.183Z'%20fill='%23009C4E'/%3e%3cpath%20d='M22.137%2021.2911L22.8594%2023.067H19.9847V15.9376L21.1973%2016.3208V21.2911H22.137Z'%20fill='%23009C4E'/%3e%3cpath%20d='M35.5276%2021.2911L36.25%2023.067H33.3753V15.9376L34.5879%2016.3208V21.2911H35.5276Z'%20fill='%23009C4E'/%3e%3cpath%20d='M31.9681%2016.0114L31.2191%2016.5119V21.2861H30.4561V17.4571L29.1992%2018.1724V21.2861H28.3557V19.1243L27.4003%2019.7313V20.3182C27.4003%2020.3182%2025.5624%2020.4433%2025.5624%2023.0083H31.9607L31.9681%2016.0114Z'%20fill='%23009C4E'/%3e%3cpath%20d='M7.43104%2024.3249C7.66215%2024.3249%207.8495%2024.1616%207.8495%2023.9602C7.8495%2023.7588%207.66215%2023.5956%207.43104%2023.5956C7.19994%2023.5956%207.01259%2023.7588%207.01259%2023.9602C7.01259%2024.1616%207.19994%2024.3249%207.43104%2024.3249Z'%20fill='%23009C4E'/%3e%3cpath%20d='M28.7374%2016.5608C28.4125%2016.9836%2027.4265%2016.5608%2027.4265%2016.5608L30.2224%2016.241C29.9336%2016.7975%2028.7374%2016.5608%2028.7374%2016.5608Z'%20fill='%23009C4E'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_182'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-ir {
    background-image: url(../image/ir.ClKsGL90.svg)
}

.flag-icon-is {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_184)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200V40H40V0H0Z'%20fill='%230061C1'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M10%200H16.25V16.875H40V23.125H16.25V40H10V23.125H0V16.875H10V0Z'%20fill='%23D21034'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M7.5%20-2.5H18.75V14.375H42.5V25.625H18.75V42.5H7.5V25.625H-2.5V14.375H7.5V-2.5ZM10%2016.875H0V23.125H10V40H16.25V23.125H40V16.875H16.25V0H10V16.875Z'%20fill='white'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_184'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-it {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_185)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M27.5%200H40V40H27.5V0Z'%20fill='%23C51918'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200H12.5V40H0V0Z'%20fill='%235EAA22'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M12.5%200H27.5V40H12.5V0Z'%20fill='white'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_185'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-je {
    background-image: url(../image/je.DcI3-hvp.svg)
}

.flag-icon-jm {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_187)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M-7.5%200H47.5V40H-7.5V0Z'%20fill='%23009933'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M-6.875%200L18.125%2020L-6.875%2040V0Z'%20fill='%23272727'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M-9.375%20-5.20157L22.127%2020L-9.375%2045.2016V-5.20157ZM-6.875%20-6.67572e-06V40L18.125%2020L-6.875%20-6.67572e-06Z'%20fill='%23FECA00'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M46.875%200L21.875%2020L46.875%2040V0Z'%20fill='%23272727'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M49.375%20-5.20157L17.873%2020L49.375%2045.2016V-5.20157ZM46.875%20-6.67572e-06V40L21.875%2020L46.875%20-6.67572e-06Z'%20fill='%23FECA00'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_187'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-jo {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_188)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200V12.5H40V0H0Z'%20fill='%23272727'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2027.5V40H40V27.5H0Z'%20fill='%23009933'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2012.5V27.5H40V12.5H0Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M-5%200V40L26.25%2020L-5%200Z'%20fill='%23E31D1C'/%3e%3cpath%20d='M8.74988%2015.3125L9.57853%2018.5918L12.659%2017.1951L10.6118%2019.8875L13.6245%2021.4251L10.243%2021.5033L10.9193%2024.8173L8.74988%2022.2223L6.58047%2024.8173L7.25672%2021.5033L3.87524%2021.4251L6.88794%2019.8875L4.84073%2017.1951L7.92124%2018.5918L8.74988%2015.3125Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_188'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-jp {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_189)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200V40H40V0H0Z'%20fill='%23FDFEFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M20%2031.25C26.2132%2031.25%2031.25%2026.2132%2031.25%2020C31.25%2013.7868%2026.2132%208.75%2020%208.75C13.7868%208.75%208.75%2013.7868%208.75%2020C8.75%2026.2132%2013.7868%2031.25%2020%2031.25Z'%20fill='%23E31D1C'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_189'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-ke {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_190)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M-6.66675%200H46.6666V40H-6.66675V0Z'%20fill='%230067C3'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200V13.75H40V0H0Z'%20fill='%23272727'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2026.25V40H40V26.25H0Z'%20fill='%234E8B1D'/%3e%3cpath%20d='M0%2013.75V26.25H40V13.75H0Z'%20fill='%23E31D1C'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M-2.5%2011.25H42.5V28.75H-2.5V11.25ZM0%2026.25V13.75H40V26.25H0Z'%20fill='%23F7FCFF'/%3e%3cpath%20d='M26.4253%2019.9015C26.4253%2026.9595%2023.5526%2032.6811%2020.0089%2032.6811C16.4652%2032.6811%2013.5924%2026.9595%2013.5924%2019.9015C13.5924%2012.8435%2016.4652%207.12189%2020.0089%207.12189C23.5526%207.12189%2026.4253%2012.8435%2026.4253%2019.9015Z'%20fill='%23AC2317'/%3e%3cpath%20d='M13.5924%2019.9015C13.5924%2017.3966%2013.9543%2015.0599%2014.5795%2013.0877C15.9864%2015.0599%2016.8006%2017.3966%2016.8006%2019.9015C16.8006%2022.4065%2015.9864%2024.7431%2014.5796%2026.7154C13.9543%2024.7431%2013.5924%2022.4065%2013.5924%2019.9015Z'%20fill='black'/%3e%3cpath%20d='M26.4253%2019.9016C26.4253%2022.4065%2026.0635%2024.7432%2025.4382%2026.7154C24.0313%2024.7432%2023.2171%2022.4065%2023.2171%2019.9016C23.2171%2017.3966%2024.0313%2015.0599%2025.4382%2013.0877C26.0635%2015.0599%2026.4253%2017.3966%2026.4253%2019.9016Z'%20fill='black'/%3e%3cpath%20d='M13.7914%208.4003C14.4546%208.30593%2014.5837%207.89604%2014.1787%207.17062C13.8124%206.5145%2012.8275%205.79801%2011.2241%205.02117C11.169%204.99447%2011.1024%204.99294%2011.0458%205.01707C10.95%205.0579%2010.9102%205.15887%2010.9574%205.24237L18.8586%2019.3938C18.3884%2019.7004%2018.0839%2020.1903%2018.0839%2020.7423C18.0839%2021.2084%2018.301%2021.6303%2018.6517%2021.9348L11.5628%2034.6314L12.4278%2035L18.2184%2024.6288C18.1315%2025.2995%2018.0837%2026.0306%2018.0837%2026.7958C18.0837%2029.4312%2018.6503%2031.662%2019.4313%2032.4118V22.4564L19.4847%2022.3608C19.6514%2022.4018%2019.8272%2022.4238%2020.0088%2022.4238C20.1407%2022.4238%2020.2694%2022.4123%2020.3938%2022.3902V32.5633C21.2724%2032.0179%2021.9336%2029.6429%2021.9336%2026.7958C21.9336%2026.0459%2021.8877%2025.3288%2021.8041%2024.6693L27.5721%2035L28.4372%2034.6314L21.354%2021.9451C21.7117%2021.6398%2021.9338%2021.2137%2021.9338%2020.7423C21.9338%2020.1852%2021.6236%2019.6914%2021.146%2019.3854L29.0425%205.24237C29.0898%205.15887%2029.05%205.0579%2028.9541%205.01707C28.8975%204.99294%2028.831%204.99447%2028.7759%205.02117C27.1724%205.79801%2026.1875%206.5145%2025.8212%207.17062C25.4162%207.89604%2025.5453%208.30593%2026.2085%208.4003L21.5311%2016.7778C21.7834%2015.7823%2021.9337%2014.5325%2021.9337%2013.1754C21.9337%2010.3282%2021.2724%207.95323%2020.3938%207.40783V18.8147L20.2491%2019.0737C20.1704%2019.0652%2020.0902%2019.0608%2020.0088%2019.0608C19.9217%2019.0608%2019.8359%2019.0658%2019.7518%2019.0756L19.4313%2018.5016V7.55942C18.6503%208.30929%2018.0838%2010.5401%2018.0838%2013.1754C18.0838%2014.559%2018.2399%2015.8311%2018.5013%2016.8359L13.7914%208.4003Z'%20fill='%23F7FCFF'/%3e%3cpath%20d='M20.0109%207.29006L20.0087%207.29006L20.0065%207.29006H20.0109Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_190'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-kg {
    background-image: url(../image/kg.BJ0W91Cy.svg)
}

.flag-icon-kh {
    background-image: url(../image/kh.CaJ7vKkg.svg)
}

.flag-icon-ki {
    background-image: url(../image/ki.Dc0oDA_6.svg)
}

.flag-icon-km {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_194)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200V40H40V0H0Z'%20fill='%235196ED'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2020V30H40V20H0Z'%20fill='%23AF0100'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2010V20H40V10H0Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200V10H40V0H0Z'%20fill='%23FECA00'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M-5%200V40L26.25%2020L-5%200Z'%20fill='%235EAA22'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M12.0351%2026.7856C12.0351%2026.7856%206.80934%2025.1038%206.99417%2019.8392C7.179%2014.5746%2012.5%2013.543%2012.5%2013.543C10.6365%2012.2742%203.96852%2013.761%203.75513%2019.8392C3.54173%2025.9173%2010.0481%2027.2677%2012.0351%2026.7856ZM13.1441%2016.5766L13.3195%2015.5539L12.5765%2014.8297L13.6033%2014.6805L14.0625%2013.75L14.5217%2014.6805L15.5485%2014.8297L14.8055%2015.5539L14.9809%2016.5766L14.0625%2016.0938L13.1441%2016.5766ZM13.3195%2018.6789L13.1441%2019.7016L14.0625%2019.2188L14.9809%2019.7016L14.8055%2018.6789L15.5485%2017.9547L14.5217%2017.8055L14.0625%2016.875L13.6033%2017.8055L12.5765%2017.9547L13.3195%2018.6789ZM13.1441%2022.8266L13.3195%2021.8039L12.5765%2021.0797L13.6033%2020.9305L14.0625%2020L14.5217%2020.9305L15.5485%2021.0797L14.8055%2021.8039L14.9809%2022.8266L14.0625%2022.3438L13.1441%2022.8266ZM13.1441%2025.9516L13.3195%2024.9289L12.5765%2024.2047L13.6033%2024.0555L14.0625%2023.125L14.5217%2024.0555L15.5485%2024.2047L14.8055%2024.9289L14.9809%2025.9516L14.0625%2025.4688L13.1441%2025.9516Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_194'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-kn {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_195)'%3e%3cpath%20d='M-7.76453%2014.6031L25.397%20-7.7646L31.6879%201.56208L-1.47361%2023.9298L-7.76453%2014.6031Z'%20fill='%2335A100'/%3e%3cpath%20d='M7.61328%2037.4016L40.7748%2015.0339L47.7647%2025.3969L14.6032%2047.7646L7.61328%2037.4016Z'%20fill='%23C70000'/%3e%3cpath%20d='M-0.774658%2024.9661L32.3868%202.59838L40.0757%2013.9976L6.91424%2036.3654L-0.774658%2024.9661Z'%20fill='black'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M-4.24524%2024.2915L33.0615%20-0.872207L43.5463%2014.6722L6.23963%2039.8359L-4.24524%2024.2915ZM-0.774663%2024.9661L6.91424%2036.3654L40.0757%2013.9976L32.3868%202.59837L-0.774663%2024.9661Z'%20fill='%23FFE900'/%3e%3cpath%20d='M9.43182%2021.0973L11.9366%2023.0542L14.5718%2021.2767L13.4847%2024.2637L15.9894%2026.2206L12.8128%2026.1097L11.7256%2029.0966L10.8495%2026.0411L7.67277%2025.9302L10.308%2024.1527L9.43182%2021.0973Z'%20fill='white'/%3e%3cpath%20d='M24.9763%2010.6124L27.481%2012.5693L30.1162%2010.7919L29.0291%2013.7788L31.5339%2015.7358L28.3572%2015.6248L27.27%2018.6118L26.3939%2015.5563L23.2172%2015.4453L25.8524%2013.6679L24.9763%2010.6124Z'%20fill='white'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_195'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-kp {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_196)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200V40H40V0H0Z'%20fill='%233D58DB'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2010V30H40V10H0Z'%20fill='%23C51918'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M-2.5%207.5H42.5V32.5H-2.5V7.5ZM0%2030V10H40V30H0Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M18.75%2020C18.75%2024.1421%2015.3921%2027.5%2011.25%2027.5C7.10786%2027.5%203.75%2024.1421%203.75%2020C3.75%2015.8579%207.10786%2012.5%2011.25%2012.5C15.3921%2012.5%2018.75%2015.8579%2018.75%2020ZM7.38729%2025.9375L11.25%2023.1113L15.1127%2025.9375L13.75%2021.2014L17.5%2018.2121L12.7951%2018.1113L11.25%2013.4375L9.70491%2018.1113L5%2018.2121L8.75%2021.2014L7.38729%2025.9375Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_196'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-kr {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_197)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200V40H40V0H0Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M19.7869%2027.7759C23.8333%2027.7759%2027.1134%2024.3384%2027.1134%2020.098C27.1134%2015.8577%2023.8333%2012.4202%2019.7869%2012.4202C15.7406%2012.4202%2012.4604%2015.8577%2012.4604%2020.098C12.4604%2024.3384%2015.7406%2027.7759%2019.7869%2027.7759Z'%20fill='%233D58DB'/%3e%3cpath%20d='M27.0972%2019.5813C26.7184%2018.499%2025.8467%2016.9941%2023.913%2016.8693C20.8673%2016.6727%2020.0461%2019.5242%2019.8704%2020.2797L19.8665%2020.2964C19.688%2021.0644%2019.2264%2023.0504%2016.0431%2023.0504C13.5243%2023.0504%2012.8055%2019.8886%2012.613%2018.5322C13.303%2015.0427%2016.2528%2012.4202%2019.7871%2012.4202C23.6677%2012.4202%2026.8436%2015.5819%2027.0972%2019.5813Z'%20fill='%23E31D1C'/%3e%3cpath%20d='M8.79463%207.62008L9.95059%208.65176L4.59346%2014.8253L3.4375%2013.7936L8.79463%207.62008Z'%20fill='%23272727'/%3e%3cpath%20d='M10.7011%209.28961L11.857%2010.3213L6.69195%2016.4054L5.53599%2015.3737L10.7011%209.28961Z'%20fill='%23272727'/%3e%3cpath%20d='M13.7548%2012.0114L12.5988%2010.9797L7.41935%2017.11L8.57531%2018.1416L13.7548%2012.0114Z'%20fill='%23272727'/%3e%3cpath%20d='M31.6172%207.1875L30.461%208.21531L32.4665%2010.5377L33.6227%209.50989L31.6172%207.1875Z'%20fill='%23272727'/%3e%3cpath%20d='M35.182%2011.4595L34.0258%2012.4873L36.0313%2014.8097L37.1875%2013.7819L35.182%2011.4595Z'%20fill='%23272727'/%3e%3cpath%20d='M26.6447%2011.5604L27.8009%2010.5326L29.8065%2012.855L28.6503%2013.8828L26.6447%2011.5604Z'%20fill='%23272727'/%3e%3cpath%20d='M31.3657%2014.8046L30.2095%2015.8324L32.2151%2018.1548L33.3713%2017.127L31.3657%2014.8046Z'%20fill='%23272727'/%3e%3cpath%20d='M28.6252%209.83799L29.7814%208.81018L35.3638%2015.5185L34.2076%2016.5463L28.6252%209.83799Z'%20fill='%23272727'/%3e%3cpath%20d='M32.4904%2022.8185L31.3244%2021.7867L29.302%2024.1181L30.468%2025.1499L32.4904%2022.8185Z'%20fill='%23272727'/%3e%3cpath%20d='M29.0902%2026.9214L27.9242%2025.8896L25.9018%2028.221L27.0678%2029.2528L29.0902%2026.9214Z'%20fill='%23272727'/%3e%3cpath%20d='M35.0065%2025.0497L36.1725%2026.0816L34.15%2028.413L32.9841%2027.3812L35.0065%2025.0497Z'%20fill='%23272727'/%3e%3cpath%20d='M32.9385%2030.2796L31.7726%2029.2477L29.7502%2031.5792L30.9161%2032.611L32.9385%2030.2796Z'%20fill='%23272727'/%3e%3cpath%20d='M29.8519%2027.4748L31.0178%2028.5066L28.9068%2030.9962L27.7408%2029.9644L29.8519%2027.4748Z'%20fill='%23272727'/%3e%3cpath%20d='M34.4814%2024.3583L33.3154%2023.3265L31.2044%2025.8161L32.3703%2026.8479L34.4814%2024.3583Z'%20fill='%23272727'/%3e%3cpath%20d='M7.66668%2023.6248L8.82295%2022.5959L13.9834%2028.4309L12.8271%2029.4599L7.66668%2023.6248Z'%20fill='%23272727'/%3e%3cpath%20d='M8.87044%2028.7284L10.0267%2027.6994L12.2065%2030.0626L11.0502%2031.0915L8.87044%2028.7284Z'%20fill='%23272727'/%3e%3cpath%20d='M5.01716%2025.87L3.86089%2026.899L9.04815%2032.8125L10.2044%2031.7836L5.01716%2025.87Z'%20fill='%23272727'/%3e%3cpath%20d='M5.83987%2025.1985L6.99613%2024.1696L8.88576%2026.3561L7.72949%2027.3851L5.83987%2025.1985Z'%20fill='%23272727'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_197'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-kw {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_198)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200V12.5H40V0H0Z'%20fill='%23009933'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2027.5V40H40V27.5H0Z'%20fill='%23E31D1C'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2012.5V27.5H40V12.5H0Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M-3.75%200V40L16.25%2027.5V12.5L-3.75%200Z'%20fill='%23272727'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_198'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-ky {
    background-image: url(../image/ky.BOYBJFy7.svg)
}

.flag-icon-kz {
    background-image: url(../image/kz.CHx07tDU.svg)
}

.flag-icon-la {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_201)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2027.5H40V40H0V27.5Z'%20fill='%23E31D1C'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2012.5H40V27.5H0V12.5Z'%20fill='%232E42A5'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200H40V12.5H0V0Z'%20fill='%23E31D1C'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M20%2026.25C23.4518%2026.25%2026.25%2023.4518%2026.25%2020C26.25%2016.5482%2023.4518%2013.75%2020%2013.75C16.5482%2013.75%2013.75%2016.5482%2013.75%2020C13.75%2023.4518%2016.5482%2026.25%2020%2026.25Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_201'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-lb {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_202)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2010H40V30H0V10Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2030H40V40H0V30Z'%20fill='%23F50101'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200H40V10H0V0Z'%20fill='%23F50101'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M28.2572%2020.2068C28.3809%2021.5743%2023.0677%2019.6395%2023.0677%2020.187C23.0677%2020.7345%2028.7595%2021.6959%2028.75%2022.9216C28.7405%2024.1473%2022.0011%2022.5719%2023.5124%2023.123C25.0237%2023.6742%2028.2685%2024.9937%2027.8997%2025.8158C27.1121%2027.5714%2021.8806%2024.5978%2021.4455%2025.1841C20.7433%2026.1296%2025.306%2028.3352%2025.2674%2028.546C25.193%2028.9501%2022.1512%2027.9107%2021.4455%2028.75C20.8743%2028.597%2020.6103%2027.8663%2020.4329%2027.7694L19.3102%2014.0161C19.3102%2014.0161%2020.3182%2026.9654%2019.0302%2027.3378C17.7422%2027.7103%2014.1643%2028.8426%2014.0602%2028.2771C14.0214%2028.0663%2018.3683%2026.1296%2017.6661%2025.1841C17.1489%2024.4873%2011.9031%2026.9583%2011.5684%2025.5274C10.0775%2024.5066%2016.3968%2023.6233%2016.3968%2022.5794C16.3968%2021.5354%2010.6159%2023.815%2011.3074%2022.3618C11.999%2020.9086%2016.6271%2020.3883%2016.7134%2020.187C16.8713%2019.819%2011.5684%2020.76%2011.5684%2020.187C11.5684%2019.1028%2014.7426%2018.8895%2016.7134%2017.9137C16.8299%2016.8003%2011.9323%2019.0099%2011.5684%2018.1173C11.2046%2017.2248%2017.8284%2014.9125%2017.6661%2014.7323C17.4097%2014.4479%2012.0715%2015.7315%2012.9518%2015.0574C14.6604%2013.7491%2017.9955%2011.9701%2018.7629%2011.4956C18.7629%2011.4956%2018.8553%2011.3165%2018.9541%2011.3773C19.0531%2011.3165%2019.1619%2011.25%2019.1619%2011.25C19.1619%2011.25%2019.1619%2012.3694%2019.1455%2011.4956C19.1291%2010.6217%2026.9632%2014.4454%2027.0522%2015.4147C27.1557%2016.5471%2022.2116%2014.5611%2022.3278%2015.6745C23.3329%2016.2659%2026.1914%2017.4105%2027.3725%2017.9137C27.9082%2018.142%2023.4255%2017.4306%2023.5202%2017.7799C23.7615%2018.6701%2028.1281%2018.7806%2028.2572%2020.2068Z'%20fill='%2352AB0B'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_202'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-lc {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_203)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M-7.5%200H47.5V40H-7.5V0Z'%20fill='%237CCFF5'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M20%207.5L32.5%2032.5H7.5L20%207.5Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M20%2012.5L31.25%2032.5H8.75L20%2012.5Z'%20fill='%23272727'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M20%2022.5L32.5%2032.5H7.5L20%2022.5Z'%20fill='%23FECA00'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_203'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-li {
    background-image: url(../image/li.D3QSGlk2.svg)
}

.flag-icon-lk {
    background-image: url(../image/lk.O73_GrWQ.svg)
}

.flag-icon-lr {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_206)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M-2.40381%20-1.25H49.8411V37.9337H-2.40381V-1.25Z'%20fill='%23F7FCFF'/%3e%3cpath%20d='M-2.5%207.5H50V12.5H-2.5V7.5Z'%20fill='%23E31D1C'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M-2.5%20-2.5H50V2.5H-2.5V-2.5Z'%20fill='%23E31D1C'/%3e%3cpath%20d='M-2.5%2017.5H50V22.5H-2.5V17.5Z'%20fill='%23E31D1C'/%3e%3cpath%20d='M-2.5%2027.5H50V32.5H-2.5V27.5Z'%20fill='%23E31D1C'/%3e%3cpath%20d='M-2.5%2037.5H50V42.5H-2.5V37.5Z'%20fill='%23E31D1C'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%20-1.25H23.75V22.5H0V-1.25Z'%20fill='%233D58DB'/%3e%3cpath%20d='M12.5001%205L14.184%2010.1824H19.633L15.2246%2013.3853L16.9085%2018.5676L12.5001%2015.3647L8.09172%2018.5676L9.77558%2013.3853L5.36719%2010.1824H10.8163L12.5001%205Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_206'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-ls {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_207)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2027.5H40V40H0V27.5Z'%20fill='%2355BA07'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2012.5H40V27.5H0V12.5Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200H40V12.5H0V0Z'%20fill='%233D58DB'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M20.6868%2013.7579C21.9144%2014.0464%2022.8028%2014.9307%2022.8028%2016.3673C22.8028%2017.4123%2022.3329%2018.6826%2021.6042%2019.5543L25.2548%2023.3414L26.1553%2023.0278L27.5%2025.185C27.5%2025.185%2024.1011%2026.875%2019.9001%2026.875C15.6992%2026.875%2012.5%2025.185%2012.5%2025.185L13.6447%2023.3414L14.5692%2023.662L17.9562%2019.62C17.1957%2018.7473%2016.7015%2017.4388%2016.7015%2016.3673C16.7015%2014.8798%2017.6539%2013.9845%2018.9491%2013.7296C19.0916%2013.3742%2019.4245%2013.125%2019.8125%2013.125C20.2107%2013.125%2020.5509%2013.3876%2020.6868%2013.7579ZM18.875%2014.5639C18.091%2014.7866%2017.677%2015.3597%2017.677%2016.3736C17.677%2017.5324%2018.2149%2018.6201%2018.875%2019.1811V14.5639ZM20.75%2019.15C21.3918%2018.5814%2021.9076%2017.5139%2021.9076%2016.3766C21.9076%2015.3918%2021.5%2014.8213%2020.75%2014.5845V19.15ZM14.0025%2024.1721L13.6221%2024.7313H14.3625L14.0025%2024.1721ZM14.4361%2024.952L13.7824%2025.0912L14.4361%2025.3321V24.952ZM14.7696%2024.1467L15.1038%2024.972L15.9341%2024.7325L15.7695%2024.4007L14.7696%2024.1467ZM16.5752%2025.7928L15.3559%2025.5386L15.2164%2025.2907L16.1359%2025.079L16.5752%2025.7928ZM16.6463%2024.6115L17.0254%2025.3328L17.8586%2025.0644L17.6268%2024.7411L16.6463%2024.6115ZM17.3296%2025.9367L17.1804%2025.6384L18.1026%2025.378L18.6333%2026.0639L17.3296%2025.9367ZM19.0515%2025.4415L20.24%2025.1092L20.0938%2024.8238H18.5513L19.0515%2025.4415ZM19.4776%2026.077L19.2888%2025.7682L20.4302%2025.3729L21.0358%2026.077H19.4776ZM20.9218%2024.8456L21.2869%2025.3186L22.2753%2024.9562L22.1513%2024.7093L20.9218%2024.8456ZM23.0669%2025.8289L21.7381%2025.9852L21.5426%2025.6361L22.5476%2025.2871L23.0669%2025.8289ZM22.9827%2024.6173L23.3549%2025.1013L24.247%2024.6173L23.9995%2024.4719L22.9827%2024.6173ZM23.7544%2025.6988L23.593%2025.437L24.4419%2024.8982L24.8734%2025.437L23.7544%2025.6988ZM24.5973%2024.1933L25.1363%2024.7373L25.6607%2024.1933L25.4948%2023.9719L24.5973%2024.1933ZM25.4518%2024.9241L25.8913%2024.4642L26.207%2024.9241L25.4518%2025.181V24.9241Z'%20fill='%231D1D1D'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_207'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-lt {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_208)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2012.5V27.5H40V12.5H0Z'%20fill='%2355BA07'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200V12.5H40V0H0Z'%20fill='%23FECA00'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2027.5V40H40V27.5H0Z'%20fill='%23C51918'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_208'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-lu {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_209)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2013.75V26.25H40V13.75H0Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200V13.75H40V0H0Z'%20fill='%23F05234'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2026.25V40H40V26.25H0Z'%20fill='%232EB7EC'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_209'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-lv {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_210)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2023.75H40V40H0V23.75Z'%20fill='%23C51918'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2016.25H40V23.75H0V16.25Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200H40V16.25H0V0Z'%20fill='%23C51918'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_210'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-ly {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_211)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2030H40V40H0V30Z'%20fill='%2355BA07'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2010H40V30H0V10Z'%20fill='%231D1D1D'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200H40V10H0V0Z'%20fill='%23E11C1B'/%3e%3cpath%20d='M21.799%2015.58C20.9962%2015.0006%2020.051%2014.656%2019.0673%2014.5841C18.0836%2014.5122%2017.0993%2014.7158%2016.2225%2015.1724C15.3456%2015.629%2014.61%2016.3211%2014.0965%2017.1727C13.583%2018.0243%2013.3113%2019.0025%2013.3113%2020C13.3113%2020.9975%2013.583%2021.9757%2014.0965%2022.8273C14.61%2023.6789%2015.3456%2024.371%2016.2225%2024.8276C17.0993%2025.2842%2018.0836%2025.4878%2019.0673%2025.4159C20.051%2025.344%2020.9962%2024.9994%2021.799%2024.42C20.9347%2025.2939%2019.8335%2025.889%2018.6348%2026.13C17.4361%2026.371%2016.1936%2026.2472%2015.0645%2025.7741C13.9354%2025.301%2012.9703%2024.4999%2012.2914%2023.4721C11.6124%2022.4444%2011.25%2021.2361%2011.25%2020C11.25%2018.7639%2011.6124%2017.5556%2012.2914%2016.5279C12.9703%2015.5001%2013.9354%2014.699%2015.0645%2014.2259C16.1936%2013.7528%2017.4361%2013.6289%2018.6348%2013.87C19.8335%2014.111%2020.9347%2014.7061%2021.799%2015.58ZM20.4345%2020L28.75%2017.27L23.6084%2024.42V15.58L28.75%2022.73L20.4345%2020Z'%20fill='white'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_211'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-ma {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_212)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200H40V40H0V0Z'%20fill='%23E31D1C'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M24.6816%2021.5234L27.5827%2029.375L20.1471%2024.8787L12.7395%2029.375L15.5085%2021.6108L8.75%2015.9164H17.5394L19.8724%209.375H20.193L22.61%2015.9164H31.25L24.6816%2021.5234ZM23.3227%2022.5924L23.351%2022.6726L24.7378%2025.9086L21.744%2023.7785L21.7061%2023.7555L23.3227%2022.5924ZM23.9941%2019.6626L24.1404%2019.5505L26.5283%2018.0229H23.3883L23.9941%2019.6626ZM21.7081%2018.0229L22.6511%2020.6917L20.1667%2022.5955L17.6433%2020.7898L18.623%2018.0229H21.7081ZM20.9707%2015.9164L20.1672%2012.7818L19.3749%2015.8994L19.3689%2015.9164H20.9707ZM16.7881%2018.0229H13.3974L16.1757%2019.74L16.7881%2018.0229ZM16.966%2022.6896L15.6483%2025.9086L18.5713%2023.7673L16.966%2022.6896Z'%20fill='%23579D20'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_212'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-mc {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_213)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200V40H40V0H0Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200V20H40V0H0Z'%20fill='%23C51918'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_213'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-md {
    background-image: url(../image/md.DVKKKFyG.svg)
}

.flag-icon-me {
    background-image: url(../image/me.Bp7AWRvr.svg)
}

.flag-icon-mf {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_216)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M27.5%200H40V40H27.5V0Z'%20fill='%23F50100'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200H12.5V40H0V0Z'%20fill='%232E42A5'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M12.5%200H27.5V40H12.5V0Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_216'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-mg {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_217)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M12.5%2020H40V40H12.5V20Z'%20fill='%2378D843'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M12.5%200H40V20H12.5V0Z'%20fill='%23EA1A1A'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200H15V40H0V0Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_217'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-mh {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_218)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200V40H40V0H0Z'%20fill='%233D58DB'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M11.2501%2018.75L10.2288%2022.4301L10.2384%2018.6109L8.26209%2021.8791L9.30165%2018.2041L6.51693%2020.8178L8.50946%2017.5596L5.12282%2019.3251L7.92052%2016.7252L4.18314%2017.5116L7.57853%2015.763L3.76758%2015.5118L7.50884%2014.7441L3.90696%2013.4741L7.71662%2013.7442L4.59095%2011.5495L8.18646%2012.8374L5.76882%209.88085L8.88351%2012.0911L7.35321%208.59185L9.75609%2011.5605L9.22662%207.77812L10.7395%2011.2849L11.2501%207.5L11.7607%2011.2849L13.2736%207.77812L12.7441%2011.5605L15.147%208.59185L13.6167%2012.0911L16.7314%209.88085L14.3137%2012.8374L17.9092%2011.5495L14.7836%2013.7442L18.5932%2013.4741L14.9914%2014.7441L18.7326%2015.5118L14.9217%2015.763L18.3171%2017.5116L14.5797%2016.7252L17.3774%2019.3251L13.9907%2017.5596L15.9833%2020.8178L13.1985%2018.2041L14.2381%2021.8791L12.2618%2018.6109L12.2713%2022.4301L11.2501%2018.75Z'%20fill='%23F7FCFF'/%3e%3cpath%20d='M-1.25%2040L46.25%207.5V18.0948L-1.25%2040Z'%20fill='white'/%3e%3cpath%20d='M-1.25%2040L46.25%20-1.25V9.46502L-1.25%2040Z'%20fill='%23E2AE57'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_218'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-mk {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_219)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M-6.25%200V40H46.25V0H-6.25Z'%20fill='%23F50100'/%3e%3cpath%20d='M-6.25%200.240226V6.94041L16.7188%2016.7042L-0.909383%200.240226H-6.25Z'%20fill='%23FFD018'/%3e%3cpath%20d='M20%2019.9966L24.9219%20-0.940933H15.0781L20%2019.9966Z'%20fill='%23FFD018'/%3e%3cpath%20d='M20%2019.9966L15.0781%2040.9341H24.9219L20%2019.9966Z'%20fill='%23FFD018'/%3e%3cpath%20d='M-6.25%2033.0416V39.7418H-0.909383L16.7188%2023.2778L-6.25%2033.0416Z'%20fill='%23FFD018'/%3e%3cpath%20d='M46.25%206.9804V0.280219L40.9094%200.280219L23.2812%2016.7442L46.25%206.9804Z'%20fill='%23FFD018'/%3e%3cpath%20d='M46.25%2039.7818V33.0816L23.2812%2023.3178L40.9094%2039.7818H46.25Z'%20fill='%23FFD018'/%3e%3cpath%20d='M46.25%2015.0747L26.5625%2019.9966L46.25%2024.9184V15.0747Z'%20fill='%23FFD018'/%3e%3cpath%20d='M13.4375%2019.9966L-6.25%2015.0747V24.9184L13.4375%2019.9966Z'%20fill='%23FFD018'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M20%2026.5591C23.6244%2026.5591%2026.5625%2023.6209%2026.5625%2019.9966C26.5625%2016.3722%2023.6244%2013.4341%2020%2013.4341C16.3756%2013.4341%2013.4375%2016.3722%2013.4375%2019.9966C13.4375%2023.6209%2016.3756%2026.5591%2020%2026.5591Z'%20fill='%23FFD018'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M29.0625%2019.9966C29.0625%2025.0016%2025.0051%2029.0591%2020%2029.0591C14.9949%2029.0591%2010.9375%2025.0016%2010.9375%2019.9966C10.9375%2014.9915%2014.9949%2010.9341%2020%2010.9341C25.0051%2010.9341%2029.0625%2014.9915%2029.0625%2019.9966ZM26.5625%2019.9966C26.5625%2023.6209%2023.6244%2026.5591%2020%2026.5591C16.3756%2026.5591%2013.4375%2023.6209%2013.4375%2019.9966C13.4375%2016.3722%2016.3756%2013.4341%2020%2013.4341C23.6244%2013.4341%2026.5625%2016.3722%2026.5625%2019.9966Z'%20fill='%23F50100'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_219'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-ml {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_220)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M12.5%200H27.5V40H12.5V0Z'%20fill='%23FBCD17'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M27.5%200H40V40H27.5V0Z'%20fill='%23E11C1B'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200H12.5V40H0V0Z'%20fill='%230B9E7A'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_220'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-mm {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_221)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2027.5H40V40H0V27.5Z'%20fill='%23E31D1C'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2012.5H40V27.5H0V12.5Z'%20fill='%235EAA22'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200H40V12.5H0V0Z'%20fill='%23FFD018'/%3e%3cpath%20d='M20%207.5L22.8064%2016.1373H31.8882L24.5409%2021.4754L27.3473%2030.1127L20%2024.7746L12.6527%2030.1127L15.4591%2021.4754L8.11182%2016.1373H17.1936L20%207.5Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_221'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-mn {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_222)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M12.5%200H27.5V40H12.5V0Z'%20fill='%234C67E8'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M27.5%200H40V40H27.5V0Z'%20fill='%23C51918'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200H12.5V40H0V0Z'%20fill='%23C51918'/%3e%3cpath%20d='M6.888%2011.2993C6.91218%2011.1578%206.90913%2011.3468%206.90185%2011.5389C6.87456%2011.4748%206.87016%2011.4037%206.888%2011.2993Z'%20fill='%23F8D000'/%3e%3cpath%20d='M6.90185%2011.5389C6.8962%2011.6879%206.888%2011.8389%206.888%2011.8389C6.888%2011.8389%206.68385%2012.2903%206.68385%2012.5917C6.68385%2012.8932%206.51312%2013.1436%206.51312%2013.0184V12.0449L6.06269%2013.0184C6.06269%2013.0184%205.93799%2013.9447%206.888%2013.9447C7.83802%2013.9447%207.81301%2013.0184%207.81301%2013.0184L7.48945%2012.1564C7.48945%2012.1564%207.50377%2013.0184%207.31099%2013.0184C7.21938%2013.0184%207.23003%2012.8038%207.24244%2012.554C7.25613%2012.2781%207.27197%2011.9592%207.1546%2011.8389C7.13519%2011.819%207.11681%2011.8003%207.09947%2011.7828C7.00003%2011.682%206.93453%2011.6156%206.90185%2011.5389Z'%20fill='%23F8D000'/%3e%3cpath%20d='M6.91106%2016.9967C7.68771%2016.9967%208.31731%2016.3862%208.31731%2015.6331C8.31731%2014.88%207.68771%2014.2695%206.91106%2014.2695C6.13441%2014.2695%205.50481%2014.88%205.50481%2015.6331C5.50481%2016.3862%206.13441%2016.9967%206.91106%2016.9967Z'%20fill='%23F8D000'/%3e%3cpath%20d='M4.78365%2018.1854H3.125V26.2271H4.78365V18.1854Z'%20fill='%23F8D000'/%3e%3cpath%20d='M8.96635%2018.1854H10.625V26.2271H8.96635V18.1854Z'%20fill='%23F8D000'/%3e%3cpath%20d='M5.21635%2018.2554L6.83328%2019.2572L8.65566%2018.2554H5.21635Z'%20fill='%23F8D000'/%3e%3cpath%20d='M5.21635%2025.2481L6.83328%2026.25L8.65566%2025.2481H5.21635Z'%20fill='%23F8D000'/%3e%3cpath%20d='M5.21635%2019.584H8.60577V20.2133H5.21635V19.584Z'%20fill='%23F8D000'/%3e%3cpath%20d='M5.21635%2024.2692H8.60577V24.8985H5.21635V24.2692Z'%20fill='%23F8D000'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M6.94711%2023.9195C7.90299%2023.9195%208.67788%2023.1681%208.67788%2022.2413C8.67788%2021.5614%208.26105%2020.976%207.6617%2020.7123C7.77713%2020.9008%207.81542%2021.0748%207.76761%2021.2989C7.67522%2021.7319%207.18951%2022.2142%206.6252%2022.6116C6.28341%2022.8522%206.07403%2023.5018%206.24365%2023.7084L6.21417%2023.762C6.43674%2023.8631%206.68513%2023.9195%206.94711%2023.9195ZM7.34375%2023.4354C7.60263%2023.4354%207.8125%2023.2254%207.8125%2022.9663C7.8125%2022.7072%207.60263%2022.4972%207.34375%2022.4972C7.08486%2022.4972%206.875%2022.7072%206.875%2022.9663C6.875%2023.2254%207.08486%2023.4354%207.34375%2023.4354Z'%20fill='%23F8D000'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M7.21388%2020.5828L7.21117%2020.5949C7.49299%2020.9034%207.44384%2021.1314%207.4056%2021.3088L7.39951%2021.3373C7.34117%2021.6157%207.00665%2021.9694%206.52766%2022.3066C6.13767%2022.5813%205.87037%2023.136%205.91826%2023.5909C5.49242%2023.2852%205.21635%2022.7945%205.21635%2022.2413C5.21635%2021.3144%205.99124%2020.563%206.94711%2020.563C7.03784%2020.563%207.12693%2020.5698%207.21388%2020.5828ZM6.75862%2021.7003C6.75862%2021.9594%206.54875%2022.1694%206.28987%2022.1694C6.03099%2022.1694%205.82112%2021.9594%205.82112%2021.7003C5.82112%2021.4412%206.03099%2021.2312%206.28987%2021.2312C6.54875%2021.2312%206.75862%2021.4412%206.75862%2021.7003Z'%20fill='%23F8D000'/%3e%3cpath%20d='M6.78675%2017.8845C5.06127%2017.8845%205.003%2016.1326%205.003%2016.1326C5.003%2016.1326%205.67088%2017.2058%206.89686%2017.2058C8.12284%2017.2058%208.79072%2016.1326%208.79072%2016.1326C8.79072%2016.1326%208.51223%2017.8845%206.78675%2017.8845Z'%20fill='%23F8D000'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_222'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-mo {
    background-image: url(../image/mo.CLInWDiC.svg)
}

.flag-icon-mp {
    background-image: url(../image/mp.CkwfKgVP.svg)
}

.flag-icon-mq {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_225)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M-3.75%2020V40H43.75V20H-3.75Z'%20fill='%23231F1E'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M-3.75%200V20H43.75V0H-3.75Z'%20fill='%2300A650'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M-3.75%201.25V38.75L21.25%2020L-3.75%201.25Z'%20fill='%23EF1923'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_225'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-mr {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_226)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2010V30H40V10H0Z'%20fill='%231C7B4D'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200V10H40V0H0Z'%20fill='%23E31D1C'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2030V40H40V30H0Z'%20fill='%23E31D1C'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M20%2024.8103C28.2902%2024.8599%2030.625%2017.3657%2030.625%2017.3657C30.625%2021.25%2027.5%2028.125%2020%2028.125C12.5%2028.125%209.375%2021.25%209.375%2016.875C9.375%2016.875%2011.25%2025%2020%2024.8103Z'%20fill='%23FECA00'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M22.3438%2018.0842L22.897%2021.25L20%2019.7553L17.103%2021.25L17.6562%2018.0842L15.3125%2015.6113L18.5515%2015.6113L20%2012.5L21.4485%2015.6113L24.6875%2015.6113L22.3438%2018.0842Z'%20fill='%23FECA00'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_226'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-ms {
    background-image: url(../image/ms.BRtO0x16.svg)
}

.flag-icon-mt {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_228)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M12.5%2012.5H7.5V16.2407C6.94929%2016.3713%206.5396%2016.8663%206.5396%2017.457C6.5396%2017.4714%206.53985%2017.4857%206.54033%2017.5H2.5V22.5H6.66342C6.82488%2022.8342%207.13074%2023.0856%207.5%2023.1732V27.5H12.5V23.1893C12.9045%2023.1207%2013.2429%2022.8578%2013.4158%2022.5H17.5V17.5H13.5388C13.5393%2017.4857%2013.5396%2017.4714%2013.5396%2017.457C13.5396%2016.8383%2013.0902%2016.3246%2012.5%2016.2246V12.5Z'%20fill='%23A0A0A0'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M13.5388%2017.4139C13.5186%2016.8146%2013.0764%2016.3223%2012.5%2016.2246V12.5H7.5V16.2407C6.96272%2016.3681%206.55967%2016.8424%206.54033%2017.4139C6.53985%2017.4282%206.5396%2017.4425%206.5396%2017.457C6.5396%2017.4714%206.53985%2017.4857%206.54033%2017.5H2.5V22.5H6.66342C6.82488%2022.8342%207.13074%2023.0856%207.5%2023.1732V27.5H12.5V23.1893C12.9045%2023.1207%2013.2429%2022.8578%2013.4158%2022.5H17.5V17.5H13.5388C13.5393%2017.4857%2013.5396%2017.4714%2013.5396%2017.457C13.5396%2017.4425%2013.5393%2017.4282%2013.5388%2017.4139Z'%20fill='%23FECA00'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M20%200H40V40H20V0Z'%20fill='%23E31D1C'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_228'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-mu {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_229)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2030V40H40V30H0Z'%20fill='%23579D20'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2020V30H40V20H0Z'%20fill='%23FECA00'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2010V20H40V10H0Z'%20fill='%233D58DB'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200V10H40V0H0Z'%20fill='%23E11C1B'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_229'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-mv {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_230)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M-6.25%200H46.25V37.5C46.25%2038.8807%2045.1307%2040%2043.75%2040H-3.75C-5.13071%2040%20-6.25%2038.8807%20-6.25%2037.5V0Z'%20fill='%23C51918'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M-6.25%200H46.25V40H-6.25V0Z'%20fill='%23C51918'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M8.75%208.75H31.25V31.25H8.75V8.75Z'%20fill='%23579D20'/%3e%3cpath%20d='M25%2027.4378C24.6718%2027.4788%2024.3372%2027.5%2023.9975%2027.5C19.7187%2027.5%2016.25%2024.1421%2016.25%2020C16.25%2015.8579%2019.7187%2012.5%2023.9975%2012.5C24.3372%2012.5%2024.6718%2012.5212%2025%2012.5622C21.7033%2013.0381%2019.1564%2016.1867%2019.1564%2020C19.1564%2023.8133%2021.7033%2026.9619%2025%2027.4378Z'%20fill='white'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_230'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-mw {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_231)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2017.5V27.5H40V17.5H0Z'%20fill='%23E11C1B'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200V17.5H40V0H0Z'%20fill='%23272727'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2027.5V40H40V27.5H0Z'%20fill='%235EAA22'/%3e%3cpath%20d='M6.97561%2015C7.05504%2014.8329%207.13796%2014.6676%207.22429%2014.5043L3.75%2011.9873L7.84788%2013.4462C8.07703%2013.0955%208.32272%2012.7555%208.58391%2012.4271L5.57253%209.28928L9.41007%2011.4809C9.69155%2011.1868%209.98657%2010.9044%2010.2942%2010.6347L7.85878%206.95265L11.2983%209.83231C11.6182%209.59956%2011.9489%209.37936%2012.2895%209.17248L10.5353%205.05247L13.4407%208.54297C13.7869%208.37355%2014.1415%208.21714%2014.5035%208.07445L13.5159%203.64982L15.7657%207.64225C16.1278%207.53631%2016.4962%207.44365%2016.87%207.36488L16.705%202.78978L18.2014%207.14664C18.5709%207.10304%2018.9448%207.07281%2019.3225%207.05647L20%202.5L20.6777%207.05778C21.055%207.07483%2021.4284%207.10575%2021.7974%207.15L23.295%202.78978L23.1297%207.37107C23.5023%207.45034%2023.8693%207.54341%2024.2302%207.64967L26.4841%203.64982L25.4941%208.08514C25.854%208.22783%2026.2065%208.38409%2026.5508%208.55323L29.4647%205.05247L27.7045%209.18672C28.0424%209.39286%2028.3705%209.61213%2028.688%209.84378L32.1412%206.95265L29.695%2010.6511C29.9997%2010.9192%2030.2919%2011.1997%2030.5709%2011.4918L34.4275%209.28928L31.4%2012.4439C31.6583%2012.7697%2031.9014%2013.107%2032.1282%2013.4547L36.25%2011.9873L32.7544%2014.5197C32.8378%2014.6781%2032.918%2014.8382%2032.9949%2015H30.0131C27.9583%2011.8828%2024.2028%209.79588%2019.9103%209.79588C15.6179%209.79588%2011.8623%2011.8828%209.80758%2015H6.97561Z'%20fill='%23E11C1B'/%3e%3cpath%20d='M11.5308%2015C13.4775%2012.8026%2016.5342%2011.3867%2019.9713%2011.3867C23.4084%2011.3867%2026.4651%2012.8026%2028.4118%2015H11.5308Z'%20fill='%23E11C1B'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_231'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-mx {
    background-image: url(../image/mx.ClzzAX30.svg)
}

.flag-icon-my {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_233)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%205H40V35H0V5Z'%20fill='%23F7FCFF'/%3e%3cpath%20d='M-7.5%2011.25H47.5V15.625H-7.5V11.25Z'%20fill='%23E31D1C'/%3e%3cpath%20d='M-7.5%2020H47.5V24.375H-7.5V20Z'%20fill='%23E31D1C'/%3e%3cpath%20d='M-7.5%2028.75H47.5V33.125H-7.5V28.75Z'%20fill='%23E31D1C'/%3e%3cpath%20d='M-7.5%2037.5H47.5V41.875H-7.5V37.5Z'%20fill='%23E31D1C'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M-7.5%202.5H47.5V6.875H-7.5V2.5Z'%20fill='%23E31D1C'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200H18.75V20H0V0Z'%20fill='%233D58DB'/%3e%3cpath%20d='M12.278%207.08594L12.6446%209.625L14.0501%207.5L13.2863%209.94531L15.4632%208.64844L13.7446%2010.5234L16.25%2010.3203L13.905%2011.25L16.25%2012.1641L13.7446%2011.9688L15.4632%2013.8437L13.2939%2012.5391L14.0425%2015L12.637%2012.8672L12.2703%2015.4062L11.9113%2012.8672L10.5059%2014.9922L11.2621%2012.5391L9.09274%2013.8437L10.8038%2011.9688L8.29834%2012.1641L10.6434%2011.2422L8.30598%2010.3125L10.8114%2010.5156L9.09274%208.64063L11.2621%209.9375L10.4982%207.48438L11.9113%209.61719L12.278%207.07031V7.08594ZM10.2385%207.1875C9.24004%206.73634%208.11215%206.68597%207.07903%207.04639C6.0459%207.40681%205.18321%208.15164%204.66242%209.13281C4.31813%209.78349%204.13807%2010.5118%204.13857%2011.2516C4.13907%2011.9915%204.32011%2012.7195%204.66527%2013.3697C5.01044%2014.0199%205.50881%2014.5717%206.11521%2014.9751C6.72162%2015.3784%207.41687%2015.6206%208.13793%2015.6797C8.85707%2015.7375%209.57896%2015.6113%2010.2385%2015.3125C9.50799%2015.8486%208.64707%2016.1682%207.75044%2016.2363C6.8538%2016.3043%205.95618%2016.1182%205.15629%2015.6983C4.3564%2015.2783%203.68523%2014.6409%203.21659%2013.8561C2.74795%2013.0714%202.5%2012.1696%202.5%2011.25C2.5%2010.3304%202.74795%209.42864%203.21659%208.64385C3.68523%207.85906%204.3564%207.22166%205.15629%206.80174C5.95618%206.38182%206.8538%206.19566%207.75044%206.26371C8.64707%206.33177%209.50799%206.65142%2010.2385%207.1875Z'%20fill='%23FFCC00'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_233'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-mz {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_354)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%205V35H40V5H0Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200V12.5H40V0H0Z'%20fill='%23009933'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2027.5V40H40V27.5H0Z'%20fill='%23FECA00'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2012.5V27.5H40V12.5H0Z'%20fill='%23272727'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M-2.5%2010H42.5V30H-2.5V10ZM0%2027.5V12.5H40V27.5H0Z'%20fill='white'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%205V35L22.5%2020L0%205Z'%20fill='%23F50100'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M8.15198%2021.7014L3.90068%2025L5.85072%2020.5918L2.5%2017.4902H6.45506L8.07796%2013.75L9.80167%2017.4902H13.75L10.2223%2020.5918L11.9878%2025L8.15198%2021.7014Z'%20fill='%23FECA00'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M6.13298%2019.7647L5.43994%2022.0793C5.43994%2022.0793%207.77959%2022.0561%208.0606%2022.2925C8.90729%2021.7646%2010.6504%2022.0793%2010.6504%2022.0793L9.72326%2019.6022C9.72326%2019.6022%208.54778%2019.0696%208.0606%2019.3616C6.86648%2019.0919%206.13298%2019.7647%206.13298%2019.7647Z'%20fill='%23F7FCFF'/%3e%3cpath%20d='M11.9807%2023.2597C12.1603%2023.4982%2012.1125%2023.8372%2011.874%2024.0168C11.6354%2024.1965%2011.2965%2024.1487%2011.1168%2023.9101L6.5967%2017.9073C6.41708%2017.6688%206.46485%2017.3298%206.70339%2017.1502C6.94193%2016.9705%207.28092%2017.0183%207.46054%2017.2569L11.9807%2023.2597Z'%20fill='black'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M6.18486%2016.4466C6.45003%2016.2256%206.84414%2016.2615%207.06512%2016.5266L7.49765%2017.0457C7.71863%2017.3108%207.6828%2017.705%207.41763%2017.9259C7.15246%2018.1469%206.75836%2018.1111%206.53738%2017.8459L6.10484%2017.3269C5.88386%2017.0617%205.91969%2016.6676%206.18486%2016.4466Z'%20fill='black'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M5.5368%2016.9297L4.22998%2019.0225L4.88339%2020.1544L6.37801%2017.933L6.64684%2017.2461L6.37801%2016.9297H5.5368Z'%20fill='black'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M3.84375%2023.1432L4.47377%2024.0318L9.33509%2018.28L9.53674%2018.5054L10.6573%2017.4511L12.4482%2015.5029L10.6573%2016.9666L10.0782%2016.806L9.53674%2017.6566H8.9936L5.0228%2022.0767L3.84375%2023.1432Z'%20fill='black'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_354'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-na {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_234)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M-7.5%200V40H47.5V0H-7.5Z'%20fill='%23009933'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M-7.5%200V40L47.5%200H-7.5Z'%20fill='%233195F9'/%3e%3cpath%20d='M-0.17128%2038.2629L-3.75342%2031.7729L40.4412%202.32728L43.3685%208.62625L-0.17128%2038.2629Z'%20fill='%23E31D1C'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M-1.03364%2041.8741L-7.05347%2030.9675L41.4802%20-1.36905L46.5305%209.49816L-1.03364%2041.8741ZM-0.171292%2038.2629L43.3685%208.62625L40.4412%202.32728L-3.75343%2031.7729L-0.171292%2038.2629Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M7.78704%2016.556L6.16942%2018.5741L5.77759%2016.0175L3.36762%2016.9565L4.30656%2014.5465L1.75%2014.1547L3.76813%2012.5371L1.75%2010.9194L4.30656%2010.5276L3.36762%208.11763L5.77759%209.05658L6.16942%206.50002L7.78704%208.51815L9.40465%206.50002L9.79649%209.05658L12.2065%208.11763L11.2675%2010.5276L13.8241%2010.9194L11.8059%2012.5371L13.8241%2014.1547L11.2675%2014.5465L12.2065%2016.9565L9.79649%2016.0175L9.40465%2018.5741L7.78704%2016.556ZM7.78704%2015.6621C9.51293%2015.6621%2010.912%2014.2629%2010.912%2012.5371C10.912%2010.8112%209.51293%209.41205%207.78704%209.41205C6.06115%209.41205%204.66204%2010.8112%204.66204%2012.5371C4.66204%2014.2629%206.06115%2015.6621%207.78704%2015.6621ZM10.287%2012.5371C10.287%2013.9178%209.16775%2015.0371%207.78704%2015.0371C6.40632%2015.0371%205.28704%2013.9178%205.28704%2012.5371C5.28704%2011.1563%206.40632%2010.0371%207.78704%2010.0371C9.16775%2010.0371%2010.287%2011.1563%2010.287%2012.5371Z'%20fill='%23FECA00'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_234'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-nc {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_235)'%3e%3cpath%20d='M-10.9595%2040H69.0405V26.6234H-10.9595V40Z'%20fill='%23009543'/%3e%3cpath%20d='M-11%2026.664H68.9918V3.05176e-05H-11V26.664Z'%20fill='%23ED4135'/%3e%3cpath%20d='M-11%2013.332H68.9918V-1.14441e-05H-11V13.332Z'%20fill='%230035AD'/%3e%3cpath%20d='M15.664%206.89006C22.9033%206.89006%2028.772%2012.7586%2028.772%2019.998C28.772%2027.2373%2022.9033%2033.1061%2015.664%2033.1061C8.42457%2033.1061%202.55591%2027.2373%202.55591%2019.998C2.55591%2012.7586%208.42457%206.89006%2015.664%206.89006Z'%20fill='%23FAE600'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M2.05591%2019.998C2.05591%2027.5134%208.14843%2033.6061%2015.664%2033.6061C23.1795%2033.6061%2029.272%2027.5134%2029.272%2019.998C29.272%2012.4824%2023.1794%206.39006%2015.664%206.39006C8.14844%206.39006%202.05591%2012.4824%202.05591%2019.998ZM15.664%2032.6061C8.70072%2032.6061%203.05591%2026.9612%203.05591%2019.998C3.05591%2013.0347%208.70071%207.39006%2015.664%207.39006C22.6272%207.39006%2028.272%2013.0347%2028.272%2019.998C28.272%2026.9612%2022.6272%2032.6061%2015.664%2032.6061Z'%20fill='black'/%3e%3cpath%20d='M10.3862%2032.0341C15.7359%2034.2187%2020.7502%2032.1682%2020.7502%2032.1682C20.7502%2032.1682%2018.8575%2030.1198%2017.8869%2029.3198C17.5164%2029.0145%2016.8643%2028.8335%2016.1508%2028.771V28.0546C16.7213%2027.7625%2017.1304%2026.9716%2017.1304%2026.0419C17.1304%2025.112%2016.7213%2024.3213%2016.1508%2024.0292V23.7984C16.7374%2023.9597%2017.2926%2024.4045%2017.5604%2025.0662C18.215%2026.6847%2018.7745%2027.3751%2018.7745%2027.3751C18.7745%2027.3751%2018.427%2025.9122%2018.2513%2024.0298C18.1744%2023.2064%2017.5118%2022.6168%2016.1508%2022.5058V22.4404H17.8859V21.4663H16.1508V21.3915C16.8958%2021.2575%2017.4414%2020.8236%2017.4414%2020.3092C17.4414%2019.7946%2016.8958%2019.3606%2016.1508%2019.2265V19.1519H17.8859V18.1779H16.1508V18.124C17.1326%2018.085%2018.2592%2017.8522%2018.3302%2016.4873C18.3821%2015.4855%2018.7302%2014.4875%2018.7302%2014.4875C18.7302%2014.4875%2017.9907%2015.3759%2017.7081%2015.954C17.2566%2016.8772%2016.7363%2017.1457%2016.1508%2017.2181V16.8196C16.8958%2016.6078%2017.4414%2015.9225%2017.4414%2015.1097C17.4414%2014.2966%2016.8958%2013.6112%2016.1508%2013.3994V11.2885C16.614%2010.8584%2017.1207%2010.2383%2017.6269%209.32681C17.9511%208.74304%2017.7964%208.48671%2017.797%208.48801L17.7964%208.48671C17.7964%208.48671%2017.8137%208.52503%2017.573%208.7333C17.1177%209.12761%2016.6251%209.40384%2016.1508%209.63098V6.93258H15.1768V10.0705C14.4792%2010.3905%2013.9439%2010.7119%2013.8284%2011.3531C13.82%2011.3994%2013.8105%2011.6596%2013.8002%2011.9404C13.7897%2012.2301%2013.7783%2012.5417%2013.7665%2012.6632C13.7665%2012.6632%2013.9037%2012.681%2014.229%2012.4166C14.2863%2012.3699%2014.3912%2012.33%2014.5344%2012.2755C14.7014%2012.212%2014.9204%2012.1286%2015.1768%2011.9917V13.3994C14.4318%2013.6112%2013.8862%2014.2966%2013.8862%2015.1097C13.8862%2015.9225%2014.4318%2016.6078%2015.1768%2016.8196V17.2519C14.5831%2017.1828%2014.0862%2016.9081%2013.6197%2015.954C13.3371%2015.3759%2012.5975%2014.4875%2012.5975%2014.4875C12.5975%2014.4875%2012.9454%2015.4855%2012.9973%2016.4873C13.07%2017.881%2014.1938%2018.0832%2015.1768%2018.1121V18.1779H13.4417V19.1519H15.1768V19.2265C14.4318%2019.3606%2013.8862%2019.7946%2013.8862%2020.3092C13.8862%2020.8236%2014.4318%2021.2575%2015.1768%2021.3915V21.4663H13.4417V22.4404H15.1768V22.5058C13.8159%2022.6168%2013.1531%2023.2064%2013.0763%2024.0298C12.9005%2025.9122%2012.5531%2027.3751%2012.5531%2027.3751C12.5531%2027.3751%2013.1125%2026.6847%2013.7672%2025.0662C14.0351%2024.4045%2014.5903%2023.9598%2015.1768%2023.7984V24.0293C14.6063%2024.3213%2014.1974%2025.1121%2014.1974%2026.0419C14.1974%2026.9715%2014.6063%2027.7624%2015.1768%2028.0546V28.758C14.374%2028.8051%2013.6166%2028.9949%2013.2044%2029.3198C12.4112%2029.9455%2010.1364%2032.2503%2010.3862%2032.0341Z'%20fill='black'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_235'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-ne {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_236)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200V12.5H40V0H0Z'%20fill='%23FC6500'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2027.5V40H40V27.5H0Z'%20fill='%235EAA22'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M20%2027.5C24.1421%2027.5%2027.5%2024.1421%2027.5%2020C27.5%2015.8579%2024.1421%2012.5%2020%2012.5C15.8579%2012.5%2012.5%2015.8579%2012.5%2020C12.5%2024.1421%2015.8579%2027.5%2020%2027.5Z'%20fill='%23FC6500'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_236'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-nf {
    background-image: url(../image/nf.CnEiaO4n.svg)
}

.flag-icon-ng {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_238)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M12.5%200H27.5V40H12.5V0Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M27.5%200H40V40H27.5V0Z'%20fill='%23009933'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200H12.5V40H0V0Z'%20fill='%23009933'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_238'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-ni {
    background-image: url(../image/ni.D6_YV6jG.svg)
}

.flag-icon-nl {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_240)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2012.5V27.5H40V12.5H0Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200V12.5H40V0H0Z'%20fill='%23E31D1C'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2027.5V40H40V27.5H0Z'%20fill='%233D58DB'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_240'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-no {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_241)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200V40H40V0H0Z'%20fill='%23E31D1C'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M10%200H16.25V16.875H40V23.125H16.25V40H10V23.125H0V16.875H10V0Z'%20fill='%232E42A5'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M7.5%20-2.5H18.75V14.375H42.5V25.625H18.75V42.5H7.5V25.625H-2.5V14.375H7.5V-2.5ZM10%2016.875H0V23.125H10V40H16.25V23.125H40V16.875H16.25V0H10V16.875Z'%20fill='white'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_241'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-np {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_242)'%3e%3cpath%20d='M0%200H40V40H0V0Z'%20fill='white'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M-1.25%2033.75H24.3644L7.60143%2017.3763L25%2017.3958L-1.24324%201.25V33.75H-1.25Z'%20fill='%23CE0000'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M-2.25879%20-0.567291L28.5956%2018.4155L10.0976%2018.3947L26.8577%2034.7656H-1.24993V33.75H-2.25879V-0.567291ZM-0.227539%2032.7344H21.8712L5.10539%2016.3578L21.4045%2016.3761L-0.227539%203.0673V32.7344Z'%20fill='%23000063'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M10.5293%2025.0421L8.70353%2025.6282L10.1371%2026.9178L8.20991%2026.8006L9.00106%2028.507L7.27675%2027.7059L7.31056%2029.5686L6.03931%2028.2074L5.31578%2029.9399L4.69368%2028.2269L3.321%2029.5686L3.44271%2027.7645L1.62374%2028.507L2.47575%2026.8787L0.49449%2026.9178L1.94832%2025.7259L0.102295%2025.0421L1.92803%2024.4559L0.487728%2023.1663L2.40813%2023.2836L1.62374%2021.5771L3.35481%2022.3782L3.321%2020.5155L4.59225%2021.8767L5.31578%2020.1443L5.93112%2021.8572L7.31056%2020.5155L7.18209%2022.3196L9.00782%2021.5771L8.14905%2023.2054L10.1371%2023.1663L8.68324%2024.3582L10.5293%2025.0421ZM8.33838%2013.0125L7.57428%2013.5596L7.95295%2013.8592C8.84157%2013.2613%209.55628%2012.4541%2010.0289%2011.5145C10.1506%2012.9018%208.83201%2016.0085%205.3834%2016.0411C4.75308%2016.0488%204.1274%2015.9363%203.54248%2015.7099C2.95757%2015.4835%202.42499%2015.1478%201.97549%2014.7221C1.52599%2014.2964%201.16847%2013.7892%200.923565%2013.2297C0.678658%2012.6702%200.551213%2012.0696%200.548585%2011.4624C1.22478%2012.6478%201.64403%2013.2209%202.71242%2013.8397L3.03023%2013.5531L2.31346%2012.9734L3.23985%2012.739L2.73947%2011.9314L3.71319%2011.9965L3.59148%2011.0586L4.44348%2011.5406L4.71396%2010.6613L5.32254%2011.3647L5.89731%2010.6939L6.20836%2011.6057L7.00628%2011.0716L6.90484%2012.003L7.86505%2011.8923L7.41199%2012.752L8.33838%2013.0125Z'%20fill='white'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_242'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-nr {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_243)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200V40H40V0H0Z'%20fill='%232E42A5'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2011.25V18.75H40V11.25H0Z'%20fill='%23FECA00'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M13.75%2032.3088L11.7505%2034.9038L11.6582%2031.6291L8.51529%2032.5533L10.3654%2029.8497L7.27954%2028.75L10.3654%2027.6503L8.51529%2024.9468L11.6582%2025.8709L11.7505%2022.5962L13.75%2025.1912L15.7495%2022.5962L15.8418%2025.8709L18.9847%2024.9468L17.1346%2027.6503L20.2205%2028.75L17.1346%2029.8497L18.9847%2032.5533L15.8418%2031.6291L15.7495%2034.9038L13.75%2032.3088Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_243'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-nu {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_244)'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='%23FECA00'/%3e%3cpath%20d='M0%200H20V20H0V0Z'%20fill='%232E43A5'/%3e%3cpath%20d='M20%200V2.5L12.5781%2010L20%2017.3047V20H17.3828L9.92188%2012.6562L2.65625%2020H0V17.3438L7.26562%2010.0391L0%202.89062V0H2.42188L9.92188%207.34375L17.1875%200H20Z'%20fill='white'/%3e%3cpath%20d='M7.1875%2012.6562L7.61719%2013.9844L1.64062%2020H0V19.8828L7.1875%2012.6562ZM12.0312%2012.1875L14.1406%2012.5L20%2018.2422V20L12.0312%2012.1875ZM20%200L12.5%207.65625L12.3438%205.9375L18.2031%200H20ZM0%200.0390625L7.53906%207.42188L5.23438%207.10938L0%201.91406V0.0390625Z'%20fill='%23F50100'/%3e%3cpath%20d='M6.875%200V20H13.125V0H6.875ZM0%206.875V13.125H20V6.875H0Z'%20fill='white'/%3e%3cpath%20d='M0%208.125V11.875H20V8.125H0ZM8.125%200V20H11.875V0H8.125Z'%20fill='%23F50100'/%3e%3cpath%20d='M10%2013.4063C11.8812%2013.4063%2013.4063%2011.8812%2013.4063%2010C13.4063%208.11879%2011.8812%206.59376%2010%206.59376C8.11878%206.59376%206.59375%208.11879%206.59375%2010C6.59375%2011.8812%208.11878%2013.4063%2010%2013.4063Z'%20fill='%232E43A5'/%3e%3cpath%20d='M10%206.59375L12%2012.75L6.76562%208.94531H13.2344L8%2012.75M4.16406%208.19531L5.33594%2011.8125L2.26562%209.57812H6.07031L2.99219%2011.8125M15.8359%208.19531L17.0078%2011.8125L13.9297%209.57812H17.7344L14.6562%2011.8125M10%2014.8594L11.1719%2018.4766L8.10156%2016.2422H11.8984L8.82812%2018.4766M10%201.52344L11.1719%205.15625L8.10156%202.91406H11.8984L8.82812%205.15625'%20fill='%23FECA00'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_244'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-nz {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_245)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200V40H40V0H0Z'%20fill='%232E42A5'/%3e%3cpath%20d='M20%200V2.5L12.5781%2010L20%2017.3047V20H17.3828L9.92188%2012.6562L2.65625%2020H0V17.3438L7.26562%2010.0391L0%202.89062V0H2.42188L9.92188%207.34375L17.1875%200H20Z'%20fill='white'/%3e%3cpath%20d='M7.1875%2012.6562L7.61719%2013.9844L1.64062%2020H0V19.8828L7.1875%2012.6562ZM12.0312%2012.1875L14.1406%2012.5L20%2018.2422V20L12.0312%2012.1875ZM20%200L12.5%207.65625L12.3438%205.9375L18.2031%200H20ZM0%200.0390625L7.53906%207.42188L5.23438%207.10938L0%201.91406V0.0390625Z'%20fill='%23F50100'/%3e%3cpath%20d='M6.875%200V20H13.125V0H6.875ZM0%206.875V13.125H20V6.875H0Z'%20fill='white'/%3e%3cpath%20d='M0%208.125V11.875H20V8.125H0ZM8.125%200V20H11.875V0H8.125Z'%20fill='%23F50100'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M28.4375%2030.1562L26.417%2031.2185L26.8028%2028.9686L25.1682%2027.3753L27.4272%2027.047L28.4375%2025L29.4477%2027.047L31.7067%2027.3753L30.0721%2028.9686L30.458%2031.2185L28.4375%2030.1562Z'%20fill='%23F50100'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M28.4375%2029.7326L29.9599%2030.533L29.6692%2028.8377L30.9009%2027.6371L29.1987%2027.3898L28.4375%2025.8473L27.6762%2027.3898L25.9741%2027.6371L27.2058%2028.8377L26.915%2030.533L28.4375%2029.7326ZM26.417%2031.2185L26.8028%2028.9686L25.1682%2027.3753L27.4272%2027.047L28.4375%2025L29.4477%2027.047L31.7067%2027.3753L30.0721%2028.9686L30.458%2031.2185L28.4375%2030.1562L26.417%2031.2185Z'%20fill='white'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M25%2022.5L23.5305%2023.2725L23.8111%2021.6363L22.6223%2020.4775L24.2652%2020.2387L25%2018.75L25.7347%2020.2387L27.3776%2020.4775L26.1888%2021.6363L26.4694%2023.2725L25%2022.5Z'%20fill='%23F50100'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M25%2022.0763L25.9714%2022.587L25.7858%2021.5054L26.5717%2020.7393L25.4857%2020.5815L25%2019.5973L24.5142%2020.5815L23.4282%2020.7393L24.2141%2021.5054L24.0285%2022.587L25%2022.0763ZM23.5305%2023.2725L23.8111%2021.6363L22.6223%2020.4775L24.2652%2020.2387L25%2018.75L25.7347%2020.2387L27.3776%2020.4775L26.1888%2021.6363L26.4694%2023.2725L25%2022.5L23.5305%2023.2725Z'%20fill='white'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M32.5%2022.5L31.0305%2023.2725L31.3111%2021.6363L30.1223%2020.4775L31.7652%2020.2387L32.5%2018.75L33.2347%2020.2387L34.8776%2020.4775L33.6888%2021.6363L33.9694%2023.2725L32.5%2022.5Z'%20fill='%23F50100'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M32.5%2022.0763L33.4714%2022.587L33.2858%2021.5054L34.0717%2020.7393L32.9857%2020.5815L32.5%2019.5973L32.0142%2020.5815L30.9282%2020.7393L31.7141%2021.5054L31.5285%2022.587L32.5%2022.0763ZM31.0305%2023.2725L31.3111%2021.6363L30.1223%2020.4775L31.7652%2020.2387L32.5%2018.75L33.2347%2020.2387L34.8776%2020.4775L33.6888%2021.6363L33.9694%2023.2725L32.5%2022.5L31.0305%2023.2725Z'%20fill='white'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M28.75%2016.25L27.2805%2017.0225L27.5611%2015.3863L26.3723%2014.2275L28.0152%2013.9887L28.75%2012.5L29.4847%2013.9887L31.1276%2014.2275L29.9388%2015.3863L30.2194%2017.0225L28.75%2016.25Z'%20fill='%23F50100'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M28.75%2015.8263L29.7214%2016.337L29.5358%2015.2554L30.3217%2014.4893L29.2357%2014.3315L28.75%2013.3473L28.2642%2014.3315L27.1782%2014.4893L27.9641%2015.2554L27.7785%2016.337L28.75%2015.8263ZM27.2805%2017.0225L27.5611%2015.3863L26.3723%2014.2275L28.0152%2013.9887L28.75%2012.5L29.4847%2013.9887L31.1276%2014.2275L29.9388%2015.3863L30.2194%2017.0225L28.75%2016.25L27.2805%2017.0225Z'%20fill='white'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_245'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-om {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_246)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M-6.25%2012.5V27.5H47.5V12.5H-6.25Z'%20fill='%23F50101'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200V12.5H40V0H0Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2027.5V40H40V27.5H0Z'%20fill='%235EAA22'/%3e%3cpath%20d='M1.25%200H15V40H1.25V0Z'%20fill='%23F50101'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M10.2283%200.107989C10.2379%20-0.00120898%2010.1041%20-0.0416433%2010.0516%200.0531441C9.55449%200.949656%208.15192%203.36051%205.77263%206.55835V5.09512C5.55563%204.84764%204.86383%204.18185%204.86383%204.18185V2.72086L6.11534%201.53241L4.39649%200.202751L2.58484%201.53241L3.9542%202.72086V4.18185C3.9542%204.88243%203.12401%205.09512%203.12401%205.09512L2.97201%206.38388C0.748209%203.35362%20-0.595778%201.02476%20-1.1019%200.102936C-1.15548%200.00534619%20-1.2924%200.0505603%20-1.27759%200.162112C-1.13406%201.24346%20-0.650873%203.97131%200.811591%206.89362H0.437877V6.80713C0.437877%206.7497%200.393512%206.70315%200.338786%206.70315H-2.93122C-2.98595%206.70315%20-3.03031%206.7497%20-3.03031%206.80713V8.99078C-3.03031%209.0482%20-2.98595%209.09476%20-2.93122%209.09476H0.338786C0.393512%209.09476%200.437877%209.0482%200.437877%208.99078V7.84607H0.841421C0.978284%208.17719%201.29254%208.41057%201.66006%208.41735C1.91683%208.83306%202.19529%209.24764%202.49724%209.65703C1.80262%209.58494%20-2.78799%209.17481%20-2.78799%2010.9274C-2.78799%2011.9735%20-1.67139%2012.5272%20-0.271032%2012.8134C-1.75693%2014.2254%20-3.15496%2015.5494%20-3.71677%2016.0813C-3.79129%2016.1518%20-3.7305%2016.2712%20-3.63289%2016.2467C-2.64053%2015.9976%200.34008%2015.1293%203.17235%2013.1018L3.25726%2013.1019C4.0257%2013.1019%204.56017%2012.7521%204.93165%2012.2786C7.83175%2014.7627%2011.1299%2015.8498%2012.3824%2016.1958C12.4888%2016.2252%2012.5454%2016.0801%2012.4547%2016.0149C11.4362%2015.2835%208.82457%2013.2946%206.15124%2010.3425C6.17364%2010.3152%206.19596%2010.2878%206.21821%2010.2602C6.73897%209.61534%207.19274%208.95199%207.58811%208.28687C7.75352%208.18536%207.88523%208.03096%207.96164%207.84609H8.36515V8.99079C8.36515%209.04822%208.40951%209.09477%208.46424%209.09477H11.7342C11.789%209.09477%2011.8333%209.04822%2011.8333%208.99079V6.80715C11.8333%206.74972%2011.789%206.70316%2011.7342%206.70316H8.46424C8.4487%206.70316%208.43398%206.70692%208.42089%206.71362C9.78278%203.80989%2010.1383%201.12896%2010.2283%200.107989ZM8.36515%206.89364V6.83141L8.3353%206.89364H8.36515ZM2.41968%207.47465C2.41968%207.90073%202.08694%208.24614%201.67649%208.24614C1.26604%208.24614%200.93331%207.90073%200.93331%207.47465C0.93331%207.04857%201.26604%206.70316%201.67649%206.70316C2.08694%206.70316%202.41968%207.04857%202.41968%207.47465ZM6.38331%207.47463C6.38331%207.90071%206.71604%208.24612%207.12649%208.24612C7.53694%208.24612%207.86967%207.90071%207.86967%207.47463C7.86967%207.04855%207.53694%206.70315%207.12649%206.70315C6.71604%206.70315%206.38331%207.04855%206.38331%207.47463Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_246'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-pa {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_247)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200V20H20V0H0Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M20%2020V40H40V20H20Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M20%200V20H40V0H20Z'%20fill='%23E31D1C'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2020V40H20V20H0Z'%20fill='%232E42A5'/%3e%3cpath%20d='M11.2499%206.25L12.3725%209.70492H16.0052L13.0663%2011.8402L14.1888%2015.2951L11.2499%2013.1598L8.31099%2015.2951L9.43356%2011.8402L6.49463%209.70492H10.1273L11.2499%206.25Z'%20fill='%232E42A5'/%3e%3cpath%20d='M28.7499%2023.75L29.8725%2027.2049H33.5052L30.5663%2029.3402L31.6888%2032.7951L28.7499%2030.6598L25.811%2032.7951L26.9336%2029.3402L23.9946%2027.2049H27.6273L28.7499%2023.75Z'%20fill='%23E31D1C'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_247'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-pe {
    background-image: url(../image/pe.B5S6qhlu.svg)
}

.flag-icon-pf {
    background-image: url(../image/pf.Bx_HcpEv.svg)
}

.flag-icon-pg {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_250)'%3e%3cpath%20d='M-7.5%202.5C-7.5%201.11929%20-6.38071%200%20-5%200H45C46.3807%200%2047.5%201.11929%2047.5%202.5V37.5C47.5%2038.8807%2046.3807%2040%2045%2040H-5C-6.38071%2040%20-7.5%2038.8807%20-7.5%2037.5V2.5Z'%20fill='%23E11C1B'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M-7.5%200L47.5%2040H-7.5V0Z'%20fill='%231D1D1D'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M26.9874%202.50003C26.9874%202.50003%2022.8506%203.32529%2024.0116%209.07572H23.4214C23.4214%209.07572%2023.4697%208.77565%2022.9023%208.59971C22.3349%208.42377%2022.4485%208.48982%2022.1557%208.59971C21.8629%208.7096%2020.0814%208.59971%2020.0814%208.59971V8.81984L21.3421%209.36428C21.3421%209.36428%2021.311%209.81762%2021.838%2010.0688C22.3651%2010.32%2022.7477%2010.4411%2022.7477%2010.4411C22.7477%2010.4411%2022.8257%2010.9414%2022.3319%2010.9414C21.838%2010.9414%2019.8518%2010.2975%2019.1453%2011.8794C18.4389%2013.4612%2017.5%2014.6218%2017.5%2014.6218H18.5593L18.275%2014.9751H19.4678L19.1453%2015.1581C19.1453%2015.1581%2020.6209%2015.1417%2020.7359%2014.9751C20.851%2014.8085%2020.7359%2015.4267%2020.7359%2015.4267C20.7359%2015.4267%2022.1653%2014.774%2022.2437%2014.6218L22.9108%2015.0795L23.1009%2014.305L23.8168%2014.6218L24.0116%2013.8839C24.0116%2013.8839%2026.0367%2017.2707%2027.5726%2017.0763V16.5142L28.9743%2017.0763L29.1523%2016.8264C29.1523%2016.8264%2030.8455%2017.5168%2031.3667%2017.5808L30.9949%2016.8264H31.3667L30.9949%2015.4267H31.3667L30.6231%2014.305L30.8314%2014.0013L30.6935%2013.6022C30.6935%2013.6022%2033.4196%2014.4706%2033.2967%2015.8523C33.1738%2017.2339%2031.9596%2017.7915%2031.9596%2017.7915C31.9596%2017.7915%2030.7954%2018.1481%2029.7438%2018.0714C29.7438%2018.0714%2030.5786%2019.0574%2032.3448%2018.7233C34.1111%2018.3892%2034.6965%2016.6766%2034.6965%2016.6766C34.6965%2016.6766%2035.5063%2018.3588%2034.8396%2019.2433C34.1729%2020.1278%2031.2044%2020.7487%2031.2044%2020.7487C31.2044%2020.7487%2032.2784%2021.3785%2033.2967%2021.2171C34.315%2021.0558%2035.8987%2020.1695%2036.2057%2018.7233C36.5127%2017.2772%2035.1465%2014.6087%2034.5276%2014.305L34.2832%2013.3792L34.8396%2013.6022L33.698%2010.8105L34.2516%2010.9318L32.6364%208.92267L33.0811%208.78567L30.8497%207.18172L31.5175%207.00533C31.5175%207.00533%2029.8681%206.16947%2027.9867%207.18172L28.0045%206.83201L27.5101%206.91559L27.5394%206.53092L28.0308%205.78639L27.293%205.50216C27.293%205.50216%2027.8894%204.60629%2027.7999%204.61859C27.7999%204.61859%2027.1353%204.80933%2027.173%204.72939C27.173%204.72939%2027.5083%203.86598%2027.4201%203.8891C27.4201%203.8891%2026.6493%204.15124%2026.7633%204.02005L27.0596%203.49258L26.9874%202.50003Z'%20fill='%23FBCD17'/%3e%3cpath%20d='M8.12501%2015L9.00852%2016.9089L11.0971%2017.1593L9.55456%2018.5895L9.96183%2020.6532L8.12501%2019.6281L6.28818%2020.6532L6.69545%2018.5895L5.15295%2017.1593L7.24149%2016.9089L8.12501%2015Z'%20fill='%23EEEEF6'/%3e%3cpath%20d='M9.37501%2030L10.2585%2031.9089L12.3471%2032.1593L10.8046%2033.5895L11.2118%2035.6532L9.37501%2034.6281L7.53818%2035.6532L7.94545%2033.5895L6.40295%2032.1593L8.49149%2031.9089L9.37501%2030Z'%20fill='%23EEEEF6'/%3e%3cpath%20d='M1.87501%2021.25L2.75852%2023.1589L4.84706%2023.4093L3.30456%2024.8395L3.71183%2026.9032L1.87501%2025.8781L0.0381768%2026.9032L0.445449%2024.8395L-1.09705%2023.4093L0.991491%2023.1589L1.87501%2021.25Z'%20fill='%23EEEEF6'/%3e%3cpath%20d='M15.625%2021.25L16.1551%2022.3954L17.4083%2022.5456L16.4828%2023.4037L16.7271%2024.6419L15.625%2024.0269L14.5229%2024.6419L14.7673%2023.4037L13.8418%2022.5456L15.0949%2022.3954L15.625%2021.25Z'%20fill='%23EEEEF6'/%3e%3cpath%20d='M13.75%2026.25L14.1034%2027.0136L14.9388%2027.1137L14.3218%2027.6858L14.4847%2028.5113L13.75%2028.1012L13.0152%2028.5113L13.1782%2027.6858L12.5612%2027.1137L13.3966%2027.0136L13.75%2026.25Z'%20fill='%23EEEEF6'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_250'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-ph {
    background-image: url(../image/ph.D647G4FR.svg)
}

.flag-icon-pk {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_252)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M10%200H40V40H10V0Z'%20fill='%232F8D00'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200H10V40H0V0Z'%20fill='%23F7FCFF'/%3e%3cpath%20d='M31.2384%2023.049C31.2401%2023.0454%2031.2418%2023.0418%2031.2435%2023.0382H31.25C31.2461%2023.0418%2031.2423%2023.0454%2031.2384%2023.049Z'%20fill='%23F7FCFF'/%3e%3cpath%20d='M29.4453%2025.4637C30.1995%2024.7816%2030.8088%2023.9611%2031.2384%2023.049C29.886%2024.3173%2028.0831%2025.0251%2026.2079%2025.0234C24.3273%2025.0218%2022.5208%2024.3068%2021.1694%2023.0293C19.818%2021.7517%2019.0273%2020.0115%2018.964%2018.1755C18.9007%2016.3395%2019.5697%2014.5513%2020.8301%2013.1878C21.0719%2012.9459%2021.3264%2012.7164%2021.5924%2012.5C20.5763%2012.8246%2019.641%2013.3532%2018.8467%2014.052C18.0523%2014.7508%2017.4164%2015.6043%2016.9799%2016.5575C16.101%2018.4118%2016.0122%2020.5313%2016.7331%2022.4496C17.4539%2024.3679%2018.9253%2025.9279%2020.8236%2026.7865C21.7593%2027.2116%2022.7717%2027.4519%2023.8028%2027.4935C24.8338%2027.5351%2025.8631%2027.3772%2026.8315%2027.0288C27.7999%2026.6805%2028.6882%2026.1486%2029.4453%2025.4637Z'%20fill='%23F7FCFF'/%3e%3cpath%20d='M28.4722%2017.5356L30.4877%2017.9521H30.4942L29.1376%2016.4376L30.1647%2014.696L28.2719%2015.4784L26.8895%2013.9892L27.0639%2015.9896L25.1905%2016.8099L27.1931%2017.2643L27.4128%2019.2583L28.4722%2017.5356Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_252'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-pl {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_253)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200V20H40V0H0Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2020V40H40V20H0Z'%20fill='%23C51918'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_253'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-pm {
    background-image: url(../image/pm.CFw3bm_Q.svg)
}

.flag-icon-pn {
    background-image: url(../image/pn.CNhorfYa.svg)
}

.flag-icon-pr {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_256)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200V40H40V0H0Z'%20fill='%23EF0000'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2016.25V23.75H40V16.25H0Z'%20fill='%23EF0000'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M-7.5%208.75H47.5V31.25H-7.5V8.75ZM0%2023.75V16.25H40V23.75H0Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M-5%200V40L26.25%2020L-5%200Z'%20fill='%233D58DB'/%3e%3cpath%20d='M8.74991%2015L9.87248%2018.4549H13.5052L10.5663%2020.5902L11.6888%2024.0451L8.74991%2021.9098L5.81099%2024.0451L6.93356%2020.5902L3.99463%2018.4549H7.62734L8.74991%2015Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_256'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-ps {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_257)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2012.5H40V27.5H0V12.5Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200V12.5H40V0H0Z'%20fill='%235EAA22'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2027.5V40H40V27.5H0Z'%20fill='%23272727'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M-3.75%201.25V38.75L21.25%2020L-3.75%201.25Z'%20fill='%23E31D1C'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_257'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-pt {
    background-image: url(../image/pt.CupWQTh_.svg)
}

.flag-icon-pw {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_259)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200V40H40V0H0Z'%20fill='%2361C6F0'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M15%2030C20.5228%2030%2025%2025.5228%2025%2020C25%2014.4772%2020.5228%2010%2015%2010C9.47715%2010%205%2014.4772%205%2020C5%2025.5228%209.47715%2030%2015%2030Z'%20fill='%23FBCD17'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_259'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-py {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_260)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2012.5V27.5H40V12.5H0Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200V12.5H40V0H0Z'%20fill='%23F05234'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2027.5V40H40V27.5H0Z'%20fill='%233D58DB'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M20%2026.875C23.797%2026.875%2026.875%2023.797%2026.875%2020C26.875%2016.203%2023.797%2013.125%2020%2013.125C16.203%2013.125%2013.125%2016.203%2013.125%2020C13.125%2023.797%2016.203%2026.875%2020%2026.875ZM27.5%2020C27.5%2024.1421%2024.1421%2027.5%2020%2027.5C15.8579%2027.5%2012.5%2024.1421%2012.5%2020C12.5%2015.8579%2015.8579%2012.5%2020%2012.5C24.1421%2012.5%2027.5%2015.8579%2027.5%2020Z'%20fill='%23272727'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M20%2024.375C22.4162%2024.375%2024.375%2022.4162%2024.375%2020C24.375%2017.5838%2022.4162%2015.625%2020%2015.625C17.5838%2015.625%2015.625%2017.5838%2015.625%2020C15.625%2022.4162%2017.5838%2024.375%2020%2024.375ZM25%2020C25%2022.7614%2022.7614%2025%2020%2025C17.2386%2025%2015%2022.7614%2015%2020C15%2017.2386%2017.2386%2015%2020%2015C22.7614%2015%2025%2017.2386%2025%2020Z'%20fill='%23272727'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M22.8963%2018.328C23.1809%2018.82%2023.3438%2019.3913%2023.3438%2020C23.3438%2021.8467%2021.8467%2023.3438%2020%2023.3438C18.1533%2023.3438%2016.6562%2021.8467%2016.6562%2020C16.6562%2019.3913%2016.8191%2018.82%2017.1037%2018.328L17.4824%2018.547C17.2353%2018.9743%2017.0938%2019.4703%2017.0938%2020C17.0938%2021.6051%2018.3949%2022.9063%2020%2022.9063C21.6051%2022.9063%2022.9062%2021.6051%2022.9062%2020C22.9062%2019.4703%2022.7647%2018.9743%2022.5176%2018.547L22.8963%2018.328Z'%20fill='%235EAA22'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M20.0001%2020.5844L18.7143%2021.4572L19.1471%2019.9646L17.9197%2019.0115L19.4729%2018.9619L20.0001%2017.5L20.5273%2018.9619L22.0805%2019.0115L20.8531%2019.9646L21.2859%2021.4572L20.0001%2020.5844Z'%20fill='%23FBCD17'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_260'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-qa {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_261)'%3e%3cpath%20d='M-3.75%200H49.5833V40H-3.75V0Z'%20fill='%23B61C49'/%3e%3cpath%20d='M0%200V40H9.70419L17.5%2037.7812L9.70419%2035.5469L17.5%2033.3281L9.70419%2031.1094L17.5%2028.8906L9.70419%2026.6641L17.5%2024.4531L9.70419%2022.2188L17.5%2020L9.70419%2017.7812L17.5%2015.5469L9.70419%2013.3359L17.5%2011.1094L9.70419%208.89062L17.5%206.66406L9.70419%204.45312L17.5%202.23438L9.70419%200H0Z'%20fill='white'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_261'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-re {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_262)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M27.5%200H40V40H27.5V0Z'%20fill='%23F50100'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200H12.5V40H0V0Z'%20fill='%232E42A5'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M12.5%200H27.5V40H12.5V0Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_262'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-ro {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_263)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M12.5%200H27.5V40H12.5V0Z'%20fill='%23FBCD17'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M27.5%200H40V40H27.5V0Z'%20fill='%23E11C1B'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200H12.5V40H0V0Z'%20fill='%232E42A5'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_263'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-rs {
    background-image: url(../image/rs.ywLwtdj-.svg)
}

.flag-icon-ru {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_265)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2012.5V27.5H40V12.5H0Z'%20fill='%233D58DB'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200V12.5H40V0H0Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2027.5V40H40V27.5H0Z'%20fill='%23C51918'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_265'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-rw {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_266)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2023.75V30H40V23.75H0Z'%20fill='%23FECA00'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200V23.75H40V0H0Z'%20fill='%233CA5D9'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2030V40H40V30H0Z'%20fill='%235A962A'/%3e%3cpath%20d='M28.7501%2013.125C28.7501%2014.5057%2027.6308%2015.625%2026.2501%2015.625C24.8694%2015.625%2023.7501%2014.5057%2023.7501%2013.125C23.7501%2011.7443%2024.8694%2010.625%2026.2501%2010.625C27.6308%2010.625%2028.7501%2011.7443%2028.7501%2013.125Z'%20fill='%23FFDC17'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M26.3951%2019.9985C26.3398%2019.9999%2026.2843%2020.0006%2026.2287%2020.0006C26.1811%2020.0006%2026.1335%2020.0001%2026.0861%2019.9991L25.0778%2023.3333L24.8646%2019.8603C24.7624%2019.839%2024.6611%2019.8153%2024.5607%2019.7893L22.8147%2022.796L23.4059%2019.3725C23.3107%2019.3277%2023.2168%2019.2808%2023.1241%2019.2317L20.7363%2021.7504L22.098%2018.5599C22.0151%2018.4939%2021.9337%2018.426%2021.8541%2018.3562L18.9547%2020.2529L21.0105%2017.4679C20.9442%2017.3837%2020.8798%2017.2979%2020.8175%2017.2106L17.5658%2018.3842L20.202%2016.1537C20.1563%2016.0554%2020.113%2015.9558%2020.072%2015.855L16.6446%2016.245L19.7193%2014.6856C19.6976%2014.5788%2019.6785%2014.4711%2019.662%2014.3625L16.2407%2013.9506L19.5896%2013.144C19.5931%2013.0337%2019.5992%2012.9241%2019.608%2012.8151L16.376%2011.6248L19.8171%2011.6136C19.846%2011.5068%2019.8776%2011.401%2019.9117%2011.2963L17.043%209.39297L20.3945%2010.1771C20.4474%2010.0803%2020.5025%209.98493%2020.56%209.8911L18.2059%207.37536L21.2891%208.91387C21.3624%208.83239%2021.4376%208.75273%2021.5148%208.67497L19.802%205.68077L22.4494%207.89136C22.539%207.82923%2022.6302%207.76925%2022.723%207.71149L21.7451%204.40056L23.8134%207.16468C23.9144%207.12522%2024.0167%207.08817%2024.12%207.05358L23.9307%203.60375L25.3085%206.77503C25.4149%206.76028%2025.522%206.74806%2025.6299%206.73842L26.2407%203.33328L26.8519%206.74065C26.9592%206.75064%2027.0658%206.76318%2027.1715%206.77821L28.5508%203.60375L28.361%207.06154C28.4626%207.09598%2028.5632%207.13281%2028.6626%207.17198L30.7363%204.40056L29.7547%207.72419C29.845%207.78086%2029.9338%207.83965%2030.0211%207.90048L32.6795%205.68077L30.9578%208.69038C31.0323%208.76589%2031.105%208.84317%2031.1758%208.92215L34.2755%207.37536L31.9069%209.90666C31.9619%209.99708%2032.0148%2010.0889%2032.0656%2010.1821L35.4384%209.39297L32.55%2011.3095C32.5824%2011.4098%2032.6125%2011.5112%2032.6403%2011.6135L36.1055%2011.6248L32.8501%2012.8237C32.8583%2012.9279%2032.8642%2013.0327%2032.8676%2013.1382L36.2407%2013.9506L32.7949%2014.3654C32.7791%2014.4693%2032.7609%2014.5723%2032.7403%2014.6746L35.8369%2016.245L32.3864%2015.8524C32.3472%2015.9491%2032.3057%2016.0447%2032.2622%2016.1391L34.9157%2018.3842L31.6448%2017.2037C31.5848%2017.288%2031.523%2017.3708%2031.4593%2017.4521L33.5268%2020.2529L30.6136%2018.3472C30.5364%2018.4151%2030.4576%2018.4812%2030.3773%2018.5455L31.7451%2021.7504L29.3493%2019.2232C29.2586%2019.2715%2029.1668%2019.3178%2029.0737%2019.362L29.6667%2022.796L27.9176%2019.7839C27.8183%2019.8099%2027.7182%2019.8337%2027.6172%2019.8552L27.4036%2023.3333L26.3951%2019.9985ZM26.1601%2017.3581C28.4945%2017.3581%2030.3868%2015.4932%2030.3868%2013.1928C30.3868%2010.8924%2028.4945%209.0276%2026.1601%209.0276C23.8258%209.0276%2021.9334%2010.8924%2021.9334%2013.1928C21.9334%2015.4932%2023.8258%2017.3581%2026.1601%2017.3581Z'%20fill='%23FFDC17'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_266'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-sa {
    background-image: url(../image/sa.D9ayBqaJ.svg)
}

.flag-icon-sb {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_268)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M-1.25%200V40H40V0H-1.25Z'%20fill='%233D58DB'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M-7.16113%2039.9939H46.7723V-0.456238L-7.16113%2039.9939Z'%20fill='%23579D20'/%3e%3cpath%20d='M-8.47921%2041.25L-11.5193%2037.043L49.5956%20-3.75L52.6357%200.456959L-8.47921%2041.25Z'%20fill='%23FECA00'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0.626869%208.6293L-1.58361%2010L-0.87728%207.65231L-2.5%206.15261L-0.302746%206.07152L0.626869%203.75L1.55648%206.07152H3.75L2.13102%207.65231L2.94183%209.86143L0.626869%208.6293Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M10.6269%208.6293L8.41639%2010L9.12272%207.65231L7.5%206.15261L9.69725%206.07152L10.6269%203.75L11.5565%206.07152H13.75L12.131%207.65231L12.9418%209.86143L10.6269%208.6293Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0.626869%2018.6293L-1.58361%2020L-0.87728%2017.6523L-2.5%2016.1526L-0.302746%2016.0715L0.626869%2013.75L1.55648%2016.0715H3.75L2.13102%2017.6523L2.94183%2019.8614L0.626869%2018.6293Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M10.6269%2018.6293L8.41639%2020L9.12272%2017.6523L7.5%2016.1526L9.69725%2016.0715L10.6269%2013.75L11.5565%2016.0715H13.75L12.131%2017.6523L12.9418%2019.8614L10.6269%2018.6293Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M5.62687%2013.6293L3.41639%2015L4.12272%2012.6523L2.5%2011.1526L4.69725%2011.0715L5.62687%208.75L6.55648%2011.0715H8.75L7.13102%2012.6523L7.94183%2014.8614L5.62687%2013.6293Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_268'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-sc {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_271)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M-3.75%20-1.23236V40H51.2265V-1.23236H-3.75Z'%20fill='%232E42A5'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M-3.75%2039.9941L23.9977%20-4.6684H51.7454L-3.75%2039.9941Z'%20fill='%23FFD018'/%3e%3cpath%20d='M-3.75%2039.9941L55.4584%2017.6628V-10L-3.75%2039.9941Z'%20fill='%23E31D1C'/%3e%3cpath%20d='M-3.75%2039.9941L55.4584%2031.4069V17.4883L-3.75%2039.9941Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M-3.75%2039.9941H55.4584V27.7964L-3.75%2039.9941Z'%20fill='%235EAA22'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_271'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-sd {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_272)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M-6.25%2013.75H46.25V26.25H-6.25V13.75Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M-6.25%200V13.75H46.25V0H-6.25Z'%20fill='%23E31D1C'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M-6.25%2026.25V40H46.25V26.25H-6.25Z'%20fill='%23272727'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M-3.75%201.25V38.75L21.25%2020L-3.75%201.25Z'%20fill='%235EAA22'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_272'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-se {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_273)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200V40H40V0H0Z'%20fill='%233D58DB'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M10%200H16.25V16.875H40V23.125H16.25V40H10V23.125H0V16.875H10V0Z'%20fill='%23FECA00'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_273'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-sg {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_274)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2020V40H40V20H0Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200V20H40V0H0Z'%20fill='%23E31D1C'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M20.0287%204.0096C18.5076%204.33432%2017.1449%205.17066%2016.1697%206.37815C15.1944%207.58565%2014.6659%209.09073%2014.6729%2010.6406C14.6799%2012.1905%2015.222%2013.6908%2016.2082%2014.8895C17.1944%2016.0882%2018.5645%2016.9122%2020.0885%2017.2233C19.0624%2017.5224%2017.9805%2017.58%2016.9283%2017.3913C15.876%2017.2027%2014.8822%2016.773%2014.0251%2016.1362C13.1681%2015.4993%2012.4713%2014.6728%2011.9897%2013.7218C11.5081%2012.7707%2011.2549%2011.7212%2011.2501%2010.656C11.2452%209.5908%2011.4889%208.53905%2011.9619%207.58372C12.4348%206.6284%2013.1241%205.79564%2013.9754%205.15114C14.8266%204.50665%2015.8166%204.06805%2016.8671%203.86994C17.9176%203.67183%2018.9999%203.71965%2020.0287%204.0096Z'%20fill='white'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M17.6796%209.58978L16.6519%208.84214L17.9297%208.83131L18.3212%207.62317L18.7291%208.83131H20.0015L18.9792%209.58978L19.3707%2010.7979L18.3321%2010.0557L17.299%2010.8033L17.6796%209.58978ZM19.0934%2013.756L18.0602%2013.0083L19.3381%2012.9975L19.735%2011.7893L20.1374%2012.9921H21.4153L20.3821%2013.7505L20.7791%2014.9587L19.7459%2014.2219L18.7128%2014.9695L19.0934%2013.756ZM23.7861%2013.7234L22.7529%2012.9758L24.0253%2012.965L24.4223%2011.7568L24.8247%2012.965H26.108L25.0802%2013.7234L25.4772%2014.9316L24.4386%2014.1894L23.4054%2014.937L23.7861%2013.7234ZM25.1836%209.5952L24.1504%208.84756L25.4283%208.83673L25.8198%207.62859L26.2276%208.83131H27.5L26.4777%209.58978L26.8692%2010.7979L25.8306%2010.0611L24.7975%2010.8088L25.1836%209.5952ZM21.4696%206.85928L20.4365%206.11165L21.7143%206.10081L22.1113%204.89268L22.5137%206.10081H23.7915L22.7584%206.85928L23.1553%208.062L22.1222%207.3252L21.089%208.07284L21.4696%206.85928Z'%20fill='white'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_274'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-sh {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_275)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200V40H40V0H0Z'%20fill='%232E42A5'/%3e%3cpath%20d='M20%200V2.5L12.5781%2010L20%2017.3047V20H17.3828L9.92188%2012.6562L2.65625%2020H0V17.3438L7.26562%2010.0391L0%202.89062V0H2.42188L9.92188%207.34375L17.1875%200H20Z'%20fill='white'/%3e%3cpath%20d='M7.1875%2012.6562L7.61719%2013.9844L1.64062%2020H0V19.8828L7.1875%2012.6562ZM12.0312%2012.1875L14.1406%2012.5L20%2018.2422V20L12.0312%2012.1875ZM20%200L12.5%207.65625L12.3438%205.9375L18.2031%200H20ZM0%200.0390625L7.53906%207.42188L5.23438%207.10938L0%201.91406V0.0390625Z'%20fill='%23F50100'/%3e%3cpath%20d='M6.875%200V20H13.125V0H6.875ZM0%206.875V13.125H20V6.875H0Z'%20fill='white'/%3e%3cpath%20d='M0%208.125V11.875H20V8.125H0ZM8.125%200V20H11.875V0H8.125Z'%20fill='%23F50100'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_275'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-si {
    background-image: url(../image/si.v7JGLe8L.svg)
}

.flag-icon-sj {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_277)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%20-1.25V40H40V-1.25H0Z'%20fill='%23E31D1C'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M10%200H16.25V16.875H40V23.125H16.25V40H10V23.125H0V16.875H10V0Z'%20fill='%232E42A5'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M7.5%20-2.5H18.75V14.375H42.5V25.625H18.75V42.5H7.5V25.625H-2.5V14.375H7.5V-2.5ZM10%2016.875H0V23.125H10V40H16.25V23.125H40V16.875H16.25V0H10V16.875Z'%20fill='white'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_277'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-sk {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_278)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2012.5V27.5H40V12.5H0Z'%20fill='%233D58DB'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200V12.5H40V0H0Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2027.5V40H40V27.5H0Z'%20fill='%23E31D1C'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M21.1133%2020.2958C21.5237%2017.4416%2020.7029%2010%2020.7029%2010L6.60472%2010C6.60472%2010%206.04691%2017.979%206.36656%2020.2958C6.68621%2022.6127%208.13744%2027.6993%2013.6595%2030C18.9296%2027.727%2020.7029%2023.1501%2021.1133%2020.2958Z'%20fill='%23E31D1C'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M21.9453%209.86295L20.7029%2010H6.60472L5.35776%209.91283L5.43905%208.75H21.8226L21.9453%209.86295ZM13.6595%2030C8.13744%2027.6993%206.68621%2022.6127%206.36656%2020.2958C6.04691%2017.979%206.60472%2010%206.60472%2010C5.35776%209.91283%205.35777%209.91273%205.35776%209.91283L5.3514%2010.0055L5.33406%2010.2654C5.31931%2010.4901%205.29862%2010.813%205.27482%2011.2077C5.22724%2011.9965%205.16709%2013.0735%205.11695%2014.2247C5.01924%2016.4681%204.94954%2019.1711%205.12829%2020.4667C5.47292%2022.9646%207.05433%2028.6022%2013.1787%2031.1539L13.6679%2031.3577L14.1545%2031.1478C19.9534%2028.6468%2021.9014%2023.5975%2022.3506%2020.4738C22.578%2018.892%2022.4611%2016.1826%2022.309%2013.991C22.2311%2012.869%2022.1404%2011.8386%2022.0691%2011.0891C22.0335%2010.7141%2022.0027%2010.4087%2021.9807%2010.1966C21.9697%2010.0905%2021.961%2010.0077%2021.9549%209.95116L21.9479%209.8863L21.9453%209.86295C21.9453%209.86283%2021.9453%209.86295%2020.7029%2010C20.7029%2010%2021.5237%2017.4416%2021.1133%2020.2958C20.7029%2023.1501%2018.9296%2027.727%2013.6595%2030Z'%20fill='white'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M12.4155%2011.25C12.4155%2011.25%2012.7706%2011.7158%2012.9295%2012.4282C13.0885%2013.1405%2013.1159%2014.3885%2013.1159%2014.3885L9.74723%2014.0314V16.2306L13.1912%2015.853L13.1352%2017.9403C13.1352%2017.9403%2012.1049%2018.0322%2011.2599%2017.9403C10.4148%2017.8483%208.75012%2017.4631%208.75012%2017.4631V19.9807C8.75012%2019.9807%2010.4415%2019.5149%2011.2599%2019.4079C12.0783%2019.301%2013.1352%2019.4079%2013.1352%2019.4079V22.5H14.5334V19.4079C14.5334%2019.4079%2016.0618%2019.2936%2016.9735%2019.4174C17.8853%2019.5413%2018.7501%2019.9807%2018.7501%2019.9807V17.4631C18.7501%2017.4631%2017.8739%2017.8389%2017.0475%2017.9324C16.2211%2018.026%2014.5334%2017.9403%2014.5334%2017.9403L14.5894%2015.853C14.5894%2015.853%2015.7334%2015.751%2016.3752%2015.826C17.017%2015.901%2017.8203%2016.2306%2017.8203%2016.2306V14.0314C17.8203%2014.0314%2017.0374%2014.3982%2016.4213%2014.4648C15.8053%2014.5313%2014.5141%2014.3885%2014.5141%2014.3885C14.5141%2014.3885%2014.537%2013.1006%2014.6694%2012.4734C14.8019%2011.8463%2015.177%2011.25%2015.177%2011.25H12.4155Z'%20fill='%23F7FCFF'/%3e%3cpath%20d='M19.8845%2024.1829C19.5975%2023.7407%2018.8153%2022.6678%2017.9846%2022.6678C16.9384%2022.6678%2016.2109%2023.5188%2016.2109%2023.5188C16.2109%2023.5188%2015.6125%2021.25%2013.9073%2021.25C12.2021%2021.25%2011.5025%2023.5188%2011.5025%2023.5188C11.5025%2023.5188%2010.3568%2022.3958%209.2642%2022.6678C8.37687%2022.8886%207.7673%2023.8734%207.56958%2024.2356C8.6036%2026.3691%2010.4383%2028.6566%2013.6554%2029.9983L13.6629%2029.9985C16.8754%2028.612%2018.7881%2026.3692%2019.8845%2024.1829Z'%20fill='%232E42A5'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_278'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-sl {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_279)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2012.5V27.5H40V12.5H0Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200V12.5H40V0H0Z'%20fill='%2378D843'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2027.5V40H40V27.5H0Z'%20fill='%233D58DB'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_279'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-sm {
    background-image: url(../image/sm.zDWrpQ5D.svg)
}

.flag-icon-sn {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_281)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M12.5%200H27.5V40H12.5V0Z'%20fill='%23FBCD17'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M27.5%200H40V40H27.5V0Z'%20fill='%23E11C1B'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200H12.5V40H0V0Z'%20fill='%23006923'/%3e%3cpath%20d='M20%2013.75L21.4032%2018.0686H25.9441L22.2705%2020.7377L23.6737%2025.0564L20%2022.3873L16.3264%2025.0564L17.7296%2020.7377L14.0559%2018.0686H18.5968L20%2013.75Z'%20fill='%23006923'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_281'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-so {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_282)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200H40V40H0V0Z'%20fill='%2356C6F5'/%3e%3cpath%20d='M20.0001%2012.5L21.684%2017.6824H27.133L22.7246%2020.8853L24.4085%2026.0676L20.0001%2022.8647L15.5917%2026.0676L17.2756%2020.8853L12.8672%2017.6824H18.3163L20.0001%2012.5Z'%20fill='white'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_282'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-sr {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_283)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2030H40V40H0V30Z'%20fill='%234E8B1D'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200H40V10H0V0Z'%20fill='%234E8B1D'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2013.75H40V26.25H0V13.75Z'%20fill='%23AF0100'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M-3.75%2010H43.75V30H-3.75V10ZM0%2013.75V26.25H40V13.75H0Z'%20fill='white'/%3e%3cpath%20d='M19.9999%2013.75L21.6648%2018.3335L26.5385%2018.5005L22.6938%2021.5003L24.041%2026.187L19.9999%2023.4575L15.9589%2026.187L17.3061%2021.5003L13.4614%2018.5005L18.335%2018.3335L19.9999%2013.75Z'%20fill='%23FECA00'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_283'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-ss {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_284)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M-6.25%200V12.5H48.75V0H-6.25Z'%20fill='%23272727'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M-6.25%2027.5V40H48.75V27.5H-6.25Z'%20fill='%234E8B1D'/%3e%3cpath%20d='M-6.25%2012.5V27.5H48.75V12.5H-6.25Z'%20fill='%23E31D1C'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M-8.75%2010H51.25V30H-8.75V10ZM-6.25%2027.5V12.5H48.75V27.5H-6.25Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M-6.25%200L28.75%2020L-6.25%2040V0Z'%20fill='%233D58DB'/%3e%3cpath%20d='M2.89067%2013.2206L5.83542%2016.8255L10.4359%2016.117L7.91747%2020.0315L10.0129%2024.1879L5.5117%2023.0024L2.20627%2026.2797L1.9428%2021.6324L-2.19553%2019.5015L2.14287%2017.8149L2.89067%2013.2206Z'%20fill='%23FECA00'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_284'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-st {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_285)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M-6.66675%200V40H46.6666V0H-6.66675Z'%20fill='%23FBCD17'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M-6.66675%200V13.3333H46.6666V0H-6.66675Z'%20fill='%2373BE4A'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M-6.66675%2026.6667V40H46.6666V26.6667H-6.66675Z'%20fill='%2373BE4A'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M-6.66675%200V40L9.99992%2020L-6.66675%200Z'%20fill='%23C51918'/%3e%3cpath%20d='M18.1251%2015L19.388%2018.8868H23.4748L20.1685%2021.2889L21.4314%2025.1757L18.1251%2022.7736L14.8188%2025.1757L16.0817%2021.2889L12.7754%2018.8868H16.8622L18.1251%2015Z'%20fill='%23272727'/%3e%3cpath%20d='M31.8751%2015L33.138%2018.8868H37.2248L33.9185%2021.2889L35.1814%2025.1757L31.8751%2022.7736L28.5688%2025.1757L29.8317%2021.2889L26.5254%2018.8868H30.6122L31.8751%2015Z'%20fill='%23272727'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_285'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-sv {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_286)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2012.5V27.5H40V12.5H0Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200V12.5H40V0H0Z'%20fill='%233D58DB'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2027.5V40H40V27.5H0Z'%20fill='%233D58DB'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M20%2026.2499C23.4518%2026.2499%2026.25%2023.4517%2026.25%2019.9999C26.25%2016.5482%2023.4518%2013.7499%2020%2013.7499C16.5482%2013.7499%2013.75%2016.5482%2013.75%2019.9999C13.75%2023.4517%2016.5482%2026.2499%2020%2026.2499ZM27.5%2019.9999C27.5%2024.1421%2024.1421%2027.4999%2020%2027.4999C15.8579%2027.4999%2012.5%2024.1421%2012.5%2019.9999C12.5%2015.8578%2015.8579%2012.4999%2020%2012.4999C24.1421%2012.4999%2027.5%2015.8578%2027.5%2019.9999Z'%20fill='%23E8AA00'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M23.3026%2016.4021C24.3405%2017.2995%2025%2018.6177%2025%2020.0892C25%2022.8134%2022.7492%2024.9999%2020%2024.9999C17.2508%2024.9999%2015%2022.8134%2015%2020.0892C15%2018.6177%2015.6595%2017.2995%2016.6974%2016.4021L17.5149%2017.3477C16.7362%2018.021%2016.25%2019.0007%2016.25%2020.0892C16.25%2022.0989%2017.9167%2023.7499%2020%2023.7499C22.0833%2023.7499%2023.75%2022.0989%2023.75%2020.0892C23.75%2019.0007%2023.2638%2018.021%2022.4851%2017.3477L23.3026%2016.4021Z'%20fill='%231E601B'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M21.875%2021.1249H18.125V19.8749H21.875V21.1249Z'%20fill='%23E8AA00'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M16.25%2021.8749H23.75L20.0343%2015.6249L16.25%2021.8749ZM18.4681%2020.6249H21.5526L20.0245%2018.0545L18.4681%2020.6249Z'%20fill='%23E8AA00'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_286'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-sx {
    background-image: url(../image/sx.BOliIiDv.svg)
}

.flag-icon-sy {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_288)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2012.5H40V27.5H0V12.5Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200V12.5H40V0H0Z'%20fill='%23E31D1C'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2027.5V40H40V27.5H0Z'%20fill='%23272727'/%3e%3cpath%20d='M11.25%2015L12.3726%2018.4549H16.0053L13.0664%2020.5902L14.189%2024.0451L11.25%2021.9098L8.31111%2024.0451L9.43368%2020.5902L6.49475%2018.4549H10.1275L11.25%2015Z'%20fill='%23409100'/%3e%3cpath%20d='M28.75%2015L29.8726%2018.4549H33.5053L30.5664%2020.5902L31.689%2024.0451L28.75%2021.9098L25.8111%2024.0451L26.9337%2020.5902L23.9948%2018.4549H27.6275L28.75%2015Z'%20fill='%23409100'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_288'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-sz {
    background-image: url(../image/sz.CnVau2Pp.svg)
}

.flag-icon-tc {
    background-image: url(../image/tc.CD0LHjYL.svg)
}

.flag-icon-td {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_291)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M27.5%200H40V40H27.5V0Z'%20fill='%23E11C1B'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200H12.5V40H0V0Z'%20fill='%232E42A5'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M12.5%200H27.5V40H12.5V0Z'%20fill='%23FBCD17'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_291'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-tf {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_270)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200V40H40V0H0Z'%20fill='%232E42A5'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M24.4523%2016.25H33.0755L32.2353%2017.8615H29.6192V18.727H31.6248L30.8078%2020.2262H29.6192V23.2244L31.577%2020.1394L34.1106%2024.5265H33.0755L32.714%2024.0461H30.4208L28.8082%2027.0257L28.8087%2027.1903L28.7639%2027.1076L28.7192%2027.1903L28.7196%2027.0257L27.1071%2024.0461H24.8138L24.4523%2024.5265H23.4173L25.9509%2020.1394L27.9086%2023.2244V17.8615H25.2925L24.4523%2016.25ZM31.6274%2021.9388L31.0647%2022.8042H32.1299L31.6274%2021.9388ZM25.9004%2021.9388L26.4631%2022.8042H25.3979L25.9004%2021.9388Z'%20fill='%23F7FCFF'/%3e%3cpath%20d='M21.8003%2020.9785L22.6907%2020.322L23.5811%2020.9785L23.267%2019.8784L24.1314%2019.1841L23.0468%2019.1607L22.6907%2018.0751L22.3345%2019.1607L21.25%2019.1841L22.1144%2019.8784L21.8003%2020.9785Z'%20fill='%23F7FCFF'/%3e%3cpath%20d='M34.8093%2020.322L33.9189%2020.9785L34.233%2019.8784L33.3686%2019.1841L34.4532%2019.1607L34.8093%2018.0751L35.1655%2019.1607L36.25%2019.1841L35.3856%2019.8784L35.6997%2020.9785L34.8093%2020.322Z'%20fill='%23F7FCFF'/%3e%3cpath%20d='M31.1922%2028.6821L32.0826%2028.0257L32.973%2028.6821L32.6589%2027.5821L33.5233%2026.8878L32.4388%2026.8643L32.0826%2025.7788L31.7265%2026.8643L30.6419%2026.8878L31.5063%2027.5821L31.1922%2028.6821Z'%20fill='%23F7FCFF'/%3e%3cpath%20d='M25.4174%2028.0257L24.527%2028.6821L24.8411%2027.5821L23.9767%2026.8878L25.0612%2026.8643L25.4174%2025.7788L25.7735%2026.8643L26.8581%2026.8878L25.9937%2027.5821L26.3078%2028.6821L25.4174%2028.0257Z'%20fill='%23F7FCFF'/%3e%3cpath%20d='M27.8596%2031.25L28.75%2030.5936L29.6404%2031.25L29.3263%2030.15L30.1907%2029.4556L29.1062%2029.4322L28.75%2028.3467L28.3938%2029.4322L27.3093%2029.4556L28.1737%2030.15L27.8596%2031.25Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M12.5%200H18.75V20H12.5V0Z'%20fill='%23F50100'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200H6.25V20H0V0Z'%20fill='%232E42A5'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M6.25%200H12.5V20H6.25V0Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_270'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-tg {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_292)'%3e%3cpath%20d='M0%200H40V40H0V0Z'%20fill='%235EAA22'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M-2.5%20-2.5H42.5V42.5H-2.5V-2.5ZM0%200V40H40V0H0Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M-6.25%208.75V16.25H46.25V8.75H-6.25Z'%20fill='%23FECA00'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M-6.25%2023.75V31.25H46.25V23.75H-6.25Z'%20fill='%23FECA00'/%3e%3cpath%20d='M-6.25%200H20V23.75H-6.25V0Z'%20fill='%23F50101'/%3e%3cpath%20d='M6.8749%203.75L8.97971%2010.228H15.791L10.2806%2014.2316L12.3854%2020.7095L6.8749%2016.7059L1.36441%2020.7095L3.46923%2014.2316L-2.04126%2010.228H4.77008L6.8749%203.75Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_292'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-th {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_293)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2031.6667H40V40.0001H0V31.6667Z'%20fill='%23F50101'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200H40V8.33333H0V0Z'%20fill='%23F50101'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2013.3333H40V26.6666H0V13.3333Z'%20fill='%233D58DB'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M-3.75%209.58325H43.75V30.4166H-3.75V9.58325ZM0%2013.3333V26.6666H40V13.3333H0Z'%20fill='white'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_293'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-tj {
    background-image: url(../image/tj.DzZM6mCd.svg)
}

.flag-icon-tk {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_295)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M-2.5%200V40H50.8333V0H-2.5Z'%20fill='%232E42A5'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M3.19171%2015.4631L1.86339%2016.25L2.37908%2014.929L1.25%2013.9289H2.61949L3.19171%2012.5L3.62839%2013.9289H5L4.01151%2014.929L4.49548%2016.25L3.19171%2015.4631Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M8.19171%207.9631L6.86339%208.75L7.37908%207.42899L6.25%206.42891H7.61949L8.19171%205L8.62839%206.42891H10L9.01151%207.42899L9.49548%208.75L8.19171%207.9631Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M14.4417%2014.2131L13.1134%2015L13.6291%2013.679L12.5%2012.6789H13.8695L14.4417%2011.25L14.8784%2012.6789H16.25L15.2615%2013.679L15.7455%2015L14.4417%2014.2131Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M8.83895%2023.9508L7.06785%2025L7.75544%2023.2387L6.25%2021.9052H8.07599L8.83895%2020L9.42119%2021.9052H11.25L9.93202%2023.2387L10.5773%2025L8.83895%2023.9508Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M39.3622%208.75C32.5111%2012.1629%2010%2027.5%2010%2027.5H47.5C47.1255%2027.4156%2046.7761%2027.3454%2046.4466%2027.2793C43.6938%2026.7265%2042.3349%2026.4536%2039.3622%2020.4817C36.0337%2013.7951%2039.3622%208.75%2039.3622%208.75ZM9.26605%2028.75L8.75%2030.1504L9.26605%2031.6892L47.5%2031.875L48.75%2030.3628L47.6852%2028.824L9.26605%2028.75Z'%20fill='%23FECA00'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_295'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-tl {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_296)'%3e%3cpath%20d='M-3.75%200H51.25V40H-3.75V0Z'%20fill='%23E31D1C'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M-6.25%20-2.5H53.75V42.5H-6.25V-2.5ZM-3.75%200V40H51.25V0H-3.75Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M-3.75%200L36.25%2020L-3.75%2040V0Z'%20fill='%23FECA00'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M-3.75%200L23.75%2020L-3.75%2040V0Z'%20fill='%23272727'/%3e%3cpath%20d='M5.99437%2013.1912L9.2122%2017.1097L14.2255%2016.3508L11.4931%2020.622L13.7641%2025.1555L8.85755%2023.8767L5.24775%2027.4375L4.94775%2022.3759L0.445789%2020.0431L5.16693%2018.1936L5.99437%2013.1912Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_296'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-tm {
    background-image: url(../image/tm.eTinhQiG.svg)
}

.flag-icon-tn {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_298)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M-6.66663%200V40H46.6667V0H-6.66663Z'%20fill='%23E31D1C'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M20%206.25C12.4061%206.25%206.25%2012.4061%206.25%2020C6.25%2027.5939%2012.4061%2033.75%2020%2033.75C27.5939%2033.75%2033.75%2027.5939%2033.75%2020C33.75%2012.4061%2027.5939%206.25%2020%206.25ZM23.1407%2029.9006C25.2091%2029.2454%2027.0171%2027.957%2028.3074%2026.2188C27.1222%2027.2818%2025.653%2027.9799%2024.0777%2028.2286C22.5023%2028.4772%2020.8884%2028.2657%2019.4312%2027.6198C17.974%2026.9738%2016.7362%2025.921%2015.8674%2024.5889C14.9987%2023.2568%2014.5363%2021.7025%2014.5363%2020.1141C14.5363%2018.5257%2014.9987%2016.9713%2015.8674%2015.6392C16.7362%2014.3071%2017.974%2013.2543%2019.4312%2012.6084C20.8884%2011.9624%2022.5023%2011.7509%2024.0777%2011.9996C25.653%2012.2482%2027.1222%2012.9463%2028.3074%2014.0093C27.0171%2012.2712%2025.2091%2010.9827%2023.1407%2010.3275C21.0723%209.67233%2018.8491%209.68376%2016.7876%2010.3602C14.7261%2011.0366%2012.9315%2012.3435%2011.6593%2014.0948C10.3871%2015.8462%209.7023%2017.9526%209.7023%2020.1141C9.7023%2022.2756%2010.3871%2024.382%2011.6593%2026.1333C12.9315%2027.8846%2014.7261%2029.1915%2016.7876%2029.868C18.8491%2030.5444%2021.0723%2030.5558%2023.1407%2029.9006ZM23.4834%2022.362L27.7688%2023.7427L25.122%2020.1141L27.7688%2016.4854L23.4834%2017.8661L20.8366%2014.2261V18.722L16.5626%2020.1141L20.8366%2021.5062V25.9906L23.4834%2022.362Z'%20fill='white'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_298'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-to {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_299)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200V40H40V0H0Z'%20fill='%23E31D1C'/%3e%3cpath%20d='M0%200H20V20H0V0Z'%20fill='%23F7FCFF'/%3e%3cpath%20d='M10.4167%201.25H5.83333V5.83336H1.25V10.4167H5.83333V15H10.4167V10.4167H15V5.83336H10.4167V1.25Z'%20fill='%23E31D1C'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_299'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-tr {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_300)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200V40H40V0H0Z'%20fill='%23E31D1C'/%3e%3cpath%20d='M25.0617%2014.4007C23.6708%2012.8523%2021.6402%2011.8765%2019.376%2011.8765C15.1763%2011.8765%2011.78%2015.2336%2011.78%2019.3751C11.78%2023.5165%2015.1763%2026.8736%2019.376%2026.8736C21.623%2026.8736%2023.6421%2025.9126%2025.0339%2024.3846C23.3486%2027.0076%2020.38%2028.75%2017.0023%2028.75C11.7581%2028.75%207.5%2024.5499%207.5%2019.3677C7.5%2014.1854%2011.7508%2010%2016.995%2010C20.3892%2010%2023.3765%2011.7564%2025.0617%2014.4007Z'%20fill='white'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M28.3525%2014.9917L28.2794%2018.4587L25.0511%2019.3383L28.2283%2020.4745L28.1553%2023.6483L30.2223%2021.1708L33.3556%2022.2557L31.5442%2019.5949L33.75%2016.9488L30.361%2017.887L28.3525%2014.9917Z'%20fill='white'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_300'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-tt {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_301)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200V40H40V0H0Z'%20fill='%23E31D1C'/%3e%3cpath%20d='M39.0293%2043.5594L43.3639%2040.0143L0.884695%20-5.34111L-3.44993%20-1.79608L39.0293%2043.5594Z'%20fill='%23272727'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M38.8591%2046.1207L46.1031%2040.1962L1.05472%20-7.90241L-6.18929%20-1.97797L38.8591%2046.1207ZM39.0292%2043.5594L43.3638%2040.0143L0.884641%20-5.34111L-3.44998%20-1.79608L39.0292%2043.5594Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_301'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-tv {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_302)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200V40H40V0H0Z'%20fill='%2300B4FF'/%3e%3cpath%20d='M33.571%2018.3561L34.33%2016.9493L35.9951%2016.8995L34.7058%2015.8228L35.1503%2014.3695L34.0389%2015.0373L32.6339%2014.1852L32.7699%2015.7998L31.5111%2016.5562L33.1452%2016.7605L33.571%2018.3561Z'%20fill='%23FFD018'/%3e%3cpath%20d='M29.33%2019.4493L28.571%2020.8561L28.1452%2019.2605L26.5111%2019.0562L27.7699%2018.2998L27.6339%2016.6852L29.0389%2017.5373L30.1503%2016.8695L29.7058%2018.3228L30.9951%2019.3995L29.33%2019.4493Z'%20fill='%23FFD018'/%3e%3cpath%20d='M26.071%2023.3561L26.83%2021.9493L28.4951%2021.8995L27.2058%2020.8228L27.6503%2019.3695L26.5389%2020.0373L25.1339%2019.1852L25.2699%2020.7998L24.0111%2021.5562L25.6452%2021.7605L26.071%2023.3561Z'%20fill='%23FFD018'/%3e%3cpath%20d='M21.071%2028.3561L21.83%2026.9493L23.4951%2026.8995L22.2058%2025.8228L22.6503%2024.3695L21.5389%2025.0373L20.1339%2024.1852L20.2699%2025.7998L19.0111%2026.5562L20.6452%2026.7605L21.071%2028.3561Z'%20fill='%23FFD018'/%3e%3cpath%20d='M16.2177%2032.1695L14.8426%2032.9845L15.2994%2031.3975L14.0039%2030.3808H15.4725L16.1875%2028.9267L16.953%2030.3808H18.2496L17.1201%2031.3975L17.6707%2032.9845L16.2177%2032.1695Z'%20fill='%23FFD018'/%3e%3cpath%20d='M21.83%2031.9493L21.071%2033.3561L20.6452%2031.7605L19.0111%2031.5562L20.2699%2030.7998L20.1339%2029.1852L21.5389%2030.0373L22.6503%2029.3695L22.2058%2030.8228L23.4951%2031.8995L21.83%2031.9493Z'%20fill='%23FFD018'/%3e%3cpath%20d='M26.83%2029.4493L26.071%2030.8561L25.6452%2029.2605L24.0111%2029.0562L25.2699%2028.2998L25.1339%2026.6852L26.5389%2027.5373L27.6503%2026.8695L27.2058%2028.3228L28.4951%2029.3995L26.83%2029.4493Z'%20fill='%23FFD018'/%3e%3cpath%20d='M31.83%2026.9493L31.071%2028.3561L30.6452%2026.7605L29.0111%2026.5562L30.2699%2025.7998L30.1339%2024.1852L31.5389%2025.0373L32.6503%2024.3695L32.2058%2025.8228L33.4951%2026.8995L31.83%2026.9493Z'%20fill='%23FFD018'/%3e%3cpath%20d='M33.571%2025.8561L34.33%2024.4493L35.9951%2024.3995L34.7058%2023.3228L35.1503%2021.8695L34.0389%2022.5373L32.6339%2021.6852L32.7699%2023.2998L31.5111%2024.0562L33.1452%2024.2605L33.571%2025.8561Z'%20fill='%23FFD018'/%3e%3cpath%20d='M20%200V2.5L12.5781%2010L20%2017.3047V20H17.3828L9.92188%2012.6562L2.65625%2020H0V17.3438L7.26562%2010.0391L0%202.89062V0H2.42188L9.92188%207.34375L17.1875%200H20Z'%20fill='white'/%3e%3cpath%20d='M7.1875%2012.6562L7.61719%2013.9844L1.64062%2020H0V19.8828L7.1875%2012.6562ZM12.0312%2012.1875L14.1406%2012.5L20%2018.2422V20L12.0312%2012.1875ZM20%200L12.5%207.65625L12.3438%205.9375L18.2031%200H20ZM0%200.0390625L7.53906%207.42188L5.23438%207.10938L0%201.91406V0.0390625Z'%20fill='%23F50100'/%3e%3cpath%20d='M6.875%200V20H13.125V0H6.875ZM0%206.875V13.125H20V6.875H0Z'%20fill='white'/%3e%3cpath%20d='M0%208.125V11.875H20V8.125H0ZM8.125%200V20H11.875V0H8.125Z'%20fill='%23F50100'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_302'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-tw {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_303)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M-7.5%200V40H47.5V0H-7.5Z'%20fill='%23EF0000'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200V22.5H25V0H0Z'%20fill='%232E42A5'/%3e%3cpath%20d='M14.8735%2010C14.8735%2012.0012%2013.2512%2013.6235%2011.25%2013.6235C9.24882%2013.6235%207.62654%2012.0012%207.62654%2010C7.62654%207.99886%209.24882%206.37657%2011.25%206.37657C13.2512%206.37657%2014.8735%207.99886%2014.8735%2010Z'%20fill='%23FEFFFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M11.25%2015.8249L8.90544%2018.75L8.33753%2015.0445L4.84456%2016.4054L6.20545%2012.9125L2.5%2012.3446L5.42506%2010L2.5%207.65544L6.20545%207.08753L4.84456%203.59456L8.33753%204.95545L8.90544%201.25L11.25%204.17506L13.5946%201.25L14.1625%204.95545L17.6554%203.59456L16.2946%207.08753L20%207.65544L17.0749%2010L20%2012.3446L16.2946%2012.9125L17.6554%2016.4054L14.1625%2015.0445L13.5946%2018.75L11.25%2015.8249ZM11.25%2014.5295C13.7515%2014.5295%2015.7794%2012.5017%2015.7794%2010.0002C15.7794%207.4987%2013.7515%205.47085%2011.25%205.47085C8.74855%205.47085%206.7207%207.4987%206.7207%2010.0002C6.7207%2012.5017%208.74855%2014.5295%2011.25%2014.5295Z'%20fill='%23FEFFFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_303'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-tz {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_304)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M-6.25%200V40H45V0H-6.25Z'%20fill='%233195F9'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M-6.25%200V40L45%200H-6.25Z'%20fill='%2373BE4A'/%3e%3cpath%20d='M-7.64328%2041.25L-11.25%2035.8119L47.6433%20-3.75L51.25%201.68808L-7.64328%2041.25Z'%20fill='%23272727'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M-8.51003%2045.5969L-15.5713%2034.9502L48.5102%20-8.09692L55.5714%202.5498L-8.51003%2045.5969ZM-7.64321%2041.25L51.2501%201.68808L47.6434%20-3.75L-11.2499%2035.8119L-7.64321%2041.25Z'%20fill='%23FFD018'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_304'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-ua {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_305)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200V20H40V0H0Z'%20fill='%233195F9'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2020V40H40V20H0Z'%20fill='%23FECA00'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_305'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-ug {
    background-image: url(../image/ug.D0u9tA9U.svg)
}

.flag-icon-um {
    background-image: url(../image/um.Dnag2SgY.svg)
}

.flag-icon-us {
    background-image: url(../image/us.BMNw_Q5z.svg)
}

.flag-icon-uy {
    background-image: url(../image/uy.BNQKXndA.svg)
}

.flag-icon-uz {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_311)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2027.5H40V40H0V27.5Z'%20fill='%2314DC5A'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200H40V17.5H0V0Z'%20fill='%230099B5'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2017.5H40V27.5H0V17.5Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M-1.25%2016.25H41.25V28.75H-1.25V16.25ZM0%2017.5V27.5H40V17.5H0Z'%20fill='%23C51918'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M25.6506%204.375L26.6182%203.80152L27.704%204.375L27.3141%203.20946L28.125%202.35297H27.0929L26.6168%201.25L26.2107%202.35297H25L25.9269%203.20946L25.6506%204.375ZM30.6495%204.375L31.6172%203.80152L32.7029%204.375L32.313%203.20946L33.1239%202.35297H32.0918L31.6157%201.25L31.2096%202.35297H29.9989L30.9259%203.20946L30.6495%204.375ZM15.3682%2013.1765L14.4006%2013.75L14.6769%2012.5845L13.75%2011.728H14.9607L15.3668%2010.625L15.8429%2011.728H16.875L16.0641%2012.5845L16.454%2013.75L15.3682%2013.1765ZM20.0256%2013.75L20.9932%2013.1765L22.079%2013.75L21.6891%2012.5845L22.5%2011.728H21.4679L20.9918%2010.625L20.5857%2011.728H19.375L20.3019%2012.5845L20.0256%2013.75ZM26.6182%2013.1765L25.6506%2013.75L25.9269%2012.5845L25%2011.728H26.2107L26.6168%2010.625L27.0929%2011.728H28.125L27.3141%2012.5845L27.704%2013.75L26.6182%2013.1765ZM31.2756%2013.75L32.2432%2013.1765L33.329%2013.75L32.9391%2012.5845L33.75%2011.728H32.7179L32.2418%2010.625L31.8357%2011.728H30.625L31.5519%2012.5845L31.2756%2013.75ZM37.8682%2013.1765L36.9006%2013.75L37.1769%2012.5845L36.25%2011.728H37.4607L37.8668%2010.625L38.3429%2011.728H39.375L38.5641%2012.5845L38.954%2013.75L37.8682%2013.1765ZM20.0256%209.375L20.9932%208.80152L22.079%209.375L21.6891%208.20946L22.5%207.35296H21.4679L20.9918%206.25L20.5857%207.35296H19.375L20.3019%208.20946L20.0256%209.375ZM26.6182%208.80152L25.6506%209.375L25.9269%208.20946L25%207.35296H26.2107L26.6168%206.25L27.0929%207.35296H28.125L27.3141%208.20946L27.704%209.375L26.6182%208.80152ZM31.2756%209.375L32.2432%208.80152L33.329%209.375L32.9391%208.20946L33.75%207.35296H32.7179L32.2418%206.25L31.8357%207.35296H30.625L31.5519%208.20946L31.2756%209.375ZM37.0028%208.94403L36.2756%209.375L36.5519%208.20946L35.625%207.35296H36.25H36.8357L37.2418%206.25L37.5791%207.0314L37.8668%206.25L38.3429%207.35296H38.75H39.375L38.5641%208.20946L38.954%209.375L38.1948%208.97403L38.329%209.375L37.5737%208.97607L36.9006%209.375L37.0028%208.94403ZM35.118%205.01062L33.9963%205.6339L34.3167%204.36715L33.2421%203.43629H34.6456L35.1163%202.23755L35.6683%203.43629H36.8647L35.9247%204.36715L36.3767%205.6339L35.118%205.01062ZM11.0342%2013.5743C11.0342%2013.5743%206.50448%2012.4116%206.58978%208.11097C6.67508%203.81036%2011.25%202.69379%2011.25%202.69379C9.38068%202.02383%203.8534%202.92282%203.75137%208.06736C3.64933%2013.2119%209.29237%2014.2254%2011.0342%2013.5743Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_311'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-va {
    background-image: url(../image/va.VKRFpbUt.svg)
}

.flag-icon-vc {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_313)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M10%200H30V40H10V0Z'%20fill='%23FFDC17'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M30%200H40V40H30V0Z'%20fill='%235FBF2B'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200H10V40H0V0Z'%20fill='%232E42A5'/%3e%3cpath%20d='M15.4044%2012.8125L12.1875%2017.5858L15.4044%2022.1875L18.6213%2017.5858L15.4044%2012.8125Z'%20fill='%235FBF2B'/%3e%3cpath%20d='M20%2018.4375L16.7831%2023.2108L20%2027.8125L23.2169%2023.2108L20%2018.4375Z'%20fill='%235FBF2B'/%3e%3cpath%20d='M21.3787%2017.5858L24.5956%2012.8126L27.8125%2017.5858L24.5956%2022.1875L21.3787%2017.5858Z'%20fill='%235FBF2B'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_313'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-ve {
    background-image: url(../image/ve.V43z0MnH.svg)
}

.flag-icon-vg {
    background-image: url(../image/vg.dljo5Icw.svg)
}

.flag-icon-vi {
    background-image: url(../image/vi.DVejSXdP.svg)
}

.flag-icon-vn {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_317)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200V40H40V0H0Z'%20fill='%23E31D1C'/%3e%3cpath%20d='M19.9999%208.75L22.5257%2016.5236H30.6993L24.0867%2021.3279L26.6125%2029.1014L19.9999%2024.2971L13.3873%2029.1014L15.9131%2021.3279L9.30054%2016.5236H17.4741L19.9999%208.75Z'%20fill='%23FFD221'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_317'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-vu {
    background-image: url(../image/vu.DbLW8Jda.svg)
}

.flag-icon-wf {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_269)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M27.5%200H40V40H27.5V0Z'%20fill='%23C51918'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200H12.5V40H0V0Z'%20fill='%232E42A5'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M12.5%200H27.5V40H12.5V0Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200V40H40V0H0Z'%20fill='%23F50100'/%3e%3cpath%20d='M28.5%2025.375L25.125%2022H31.875L28.5%2025.375ZM27.375%2026.5L24%2023.125V29.875L27.375%2026.5ZM28.5%2027.625L25.125%2031H31.875L28.5%2027.625ZM29.625%2026.5L33%2023.125V29.875L29.625%2026.5Z'%20fill='white'/%3e%3crect%20x='-0.5'%20y='-0.5'%20width='19.75'%20height='21'%20stroke='white'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M12.5%200H18.75V20H12.5V0Z'%20fill='%23F50100'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200H6.25V20H0V0Z'%20fill='%232E42A5'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M6.25%200H12.5V20H6.25V0Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_269'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-wo {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M20.1006%201C30.6494%201.00005%2039.201%209.55185%2039.2012%2020.1006C39.2011%2030.6495%2030.6495%2039.2011%2020.1006%2039.2012C9.55167%2039.2012%201.00004%2030.6495%201%2020.1006C1.00021%209.55182%209.55177%201%2020.1006%201ZM5.30664%2017.0537C5.10501%2018.0378%205.00003%2019.0569%205%2020.1006C5.00004%2028.1208%2011.2528%2034.679%2019.1494%2035.1699V33.4023C19.1494%2032.353%2018.2984%2031.502%2017.249%2031.502C16.2%2031.5017%2015.3498%2030.6516%2015.3496%2029.6025V27.7021C15.3496%2026.6528%2014.4986%2025.8018%2013.4492%2025.8018H12.5449C11.9214%2025.8018%2011.3373%2025.496%2010.9824%2024.9834L5.30664%2017.0537ZM26.75%206.80176C26.7498%208.90036%2025.0479%2010.6016%2022.9492%2010.6016C20.8508%2010.6018%2019.1496%2012.3029%2019.1494%2014.4014V15.0352C19.1493%2015.7347%2018.5823%2016.3017%2017.8828%2016.3018H17.249C16.1998%2016.302%2015.3496%2017.1529%2015.3496%2018.2021C15.3498%2019.2512%2016.2%2020.1013%2017.249%2020.1016H24.8496C25.899%2020.1016%2026.75%2020.9526%2026.75%2022.002V23.9023C26.7502%2026.0009%2028.4512%2027.7021%2030.5498%2027.7021C31.371%2027.7021%2032.0686%2028.2237%2032.334%2028.9531C34.137%2026.4658%2035.2012%2023.4075%2035.2012%2020.1006C35.201%2014.1473%2031.7555%208.99908%2026.75%206.54004V6.80176Z'%20fill='%23111417'/%3e%3c/svg%3e")
}

.flag-icon-ws {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_319)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200V40H40V0H0Z'%20fill='%23C51918'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200V20H20V0H0Z'%20fill='%232E42A5'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M4.37612%209.29417L3.20695%2010L3.47363%208.62265L2.5%207.59184L3.81835%207.5361L4.37612%206.25L4.93389%207.5361H6.25L5.27861%208.62265L5.57106%2010L4.37612%209.29417Z'%20fill='%23FEFFFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M14.3761%209.29417L13.207%2010L13.4736%208.62265L12.5%207.59184L13.8184%207.5361L14.3761%206.25L14.9339%207.5361H16.25L15.2786%208.62265L15.5711%2010L14.3761%209.29417Z'%20fill='%23FEFFFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M9.37612%205.54417L8.20695%206.25L8.47363%204.87265L7.5%203.84184L8.81835%203.7861L9.37612%202.5L9.93389%203.7861H11.25L10.2786%204.87265L10.5711%206.25L9.37612%205.54417Z'%20fill='%23FEFFFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M10.0007%2010.7794L9.2213%2011.25L9.39909%2010.3318L8.75%209.64456L9.6289%209.6074L10.0007%208.75L10.3726%209.6074H11.25L10.6024%2010.3318L10.7974%2011.25L10.0007%2010.7794Z'%20fill='%23FEFFFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M9.37687%2015.3089L7.42825%2016.25L7.87272%2014.4135L6.25%2013.0391L8.44725%2012.9648L9.37687%2011.25L10.3065%2012.9648H12.5L10.881%2014.4135L11.3684%2016.25L9.37687%2015.3089Z'%20fill='%23FEFFFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_319'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-ye {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_320)'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2012.5V27.5H40V12.5H0Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200V12.5H40V0H0Z'%20fill='%23E31D1C'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%2027.5V40H40V27.5H0Z'%20fill='%23272727'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%234E5B7E'%20fill-opacity='0.13'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_320'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-yt {
    background-image: url(../image/yt.B8NI7Ovb.svg)
}

.flag-icon-za {
    background-image: url(../image/za.9fVqo4h9.svg)
}

.flag-icon-zm {
    background-image: url(../image/zm.BciHDv5U.svg)
}

.flag-icon-zw {
    background-image: url(../image/zw.DcPhHAOR.svg)
}

.flag-icon-f1 {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_327)'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M27.5%200H40V40H27.5V0Z'%20fill='%23F50100'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200H12.5V40H0V0Z'%20fill='%232E42A5'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M12.5%200H27.5V40H12.5V0Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%230C2945'%20fill-opacity='0.1'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_327'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

.flag-icon-f2 {
    background-image: url("data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_18799_327)'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M27.5%200H40V40H27.5V0Z'%20fill='%23F50100'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0%200H12.5V40H0V0Z'%20fill='%232E42A5'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M12.5%200H27.5V40H12.5V0Z'%20fill='%23F7FCFF'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M1%2020C1%2030.4934%209.50659%2039%2020%2039C30.4934%2039%2039%2030.4934%2039%2020C39%209.50659%2030.4934%201%2020%201C9.50659%201%201%209.50659%201%2020ZM20%200C8.95431%200%200%208.95431%200%2020C0%2031.0457%208.95431%2040%2020%2040C31.0457%2040%2040%2031.0457%2040%2020C40%208.95431%2031.0457%200%2020%200Z'%20fill='%230C2945'%20fill-opacity='0.1'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_18799_327'%3e%3cpath%20d='M0%2020C0%208.95431%208.95431%200%2020%200C31.0457%200%2040%208.95431%2040%2020C40%2031.0457%2031.0457%2040%2020%2040C8.95431%2040%200%2031.0457%200%2020Z'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e")
}

@font-face {
    font-family: XTB Sans;
    src: url(../font/XTBSans-SemiBold.CBuUyXWy.woff2) format("woff2"), url(../font/XTBSans-SemiBold.BX6NR1XM.woff) format("woff"), url(https://xas.scdn5.secure.raxcdn.com/build/XTBSans-SemiBold.lEvuBa_y.otf) format("opentype");
    font-display: swap;
    font-style: normal;
    font-weight: 600;
    font-stretch: normal
}

:root {
    --base-black: #000000;
    --base-white: #ffffff;
    --gray-5: #f4f6f8;
    --gray-10: #ebedf0;
    --gray-20: #dadfe3;
    --gray-30: #bbc2c8;
    --gray-40: #98a2a9;
    --gray-50: #758089;
    --gray-60: #525d66;
    --gray-70: #3b464e;
    --gray-80: #293037;
    --gray-90: #161a1f;
    --gray-100: #0f1215;
    --green-5: #f9fefb;
    --green-10: #e7f9f0;
    --green-20: #cef3e0;
    --green-30: #b6edd1;
    --green-40: #9de7c2;
    --green-50: #0bc466;
    --green-60: #08aa54;
    --green-70: #078344;
    --green-80: #066233;
    --green-90: #044222;
    --green-100: #022111;
    --red-5: #fff5f6;
    --red-10: #feeced;
    --red-20: #fdd8db;
    --red-30: #fdc5c9;
    --red-40: #fcb2b7;
    --red-50: #f73e4a;
    --red-60: #db2430;
    --red-70: #b82832;
    --red-80: #7c1f25;
    --red-90: #531519;
    --red-100: #2a0b0d;
    --blue-5: #f4f9ff;
    --blue-10: #eaf2ff;
    --blue-20: #d4e5ff;
    --blue-30: #bfd8ff;
    --blue-40: #a9cbff;
    --blue-50: #287eff;
    --blue-60: #2169d5;
    --blue-70: #1b54ab;
    --blue-80: #144081;
    --blue-90: #0e2b57;
    --blue-100: #07162d;
    --yellow-5: #fffcf7;
    --yellow-10: #fef8f0;
    --yellow-20: #fdf1e0;
    --yellow-30: #fcead1;
    --yellow-40: #f9d8a9;
    --yellow-50: #f5c064;
    --yellow-60: #d38e17;
    --yellow-70: #a47c43;
    --yellow-80: #7b5d32;
    --yellow-90: #523e22;
    --yellow-100: #2a2011;
    --transparent-gray-1005: #0f12150d;
    --transparent-gray-10010: #0f12151a;
    --transparent-gray-10020: #0f121533;
    --transparent-gray-10030: #0f12154d;
    --transparent-gray-10040: #0f121566;
    --transparent-gray-10050: #0f121580;
    --transparent-gray-10060: #0f121599;
    --transparent-gray-10070: #0f1215b3;
    --transparent-gray-10080: #0f1215cc;
    --transparent-gray-10090: #0f1215e6;
    --transparent-gray-100100: #0f1215;
    --transparent-gray-55: #f4f6f812;
    --transparent-gray-510: #f4f6f81a;
    --transparent-gray-520: #f4f6f833;
    --transparent-gray-530: #f4f6f84d;
    --transparent-gray-540: #f4f6f866;
    --transparent-gray-550: #f4f6f880;
    --transparent-gray-560: #f4f6f899;
    --transparent-gray-570: #f4f6f8b3;
    --transparent-gray-580: #f4f6f8cc;
    --transparent-gray-590: #f4f6f8e6;
    --transparent-gray-5100: #f4f6f8;
    --background-strong: var(--base-white);
    --background-weak: var(--gray-5);
    --surface-secondary: var(--gray-10);
    --surface-strong: var(--base-white);
    --surface-medium: var(--gray-5);
    --surface-weak: var(--gray-30);
    --surface-inverted: var(--gray-100);
    --surface-disabled: var(--gray-5);
    --surface-selected: var(--green-10);
    --surface-info: var(--blue-60);
    --surface-success: var(--green-60);
    --surface-warning: var(--yellow-60);
    --surface-danger: var(--red-60);
    --surface-buy: var(--green-60);
    --surface-buy_weak: var(--green-10);
    --surface-sell: var(--red-60);
    --surface-sell_weak: var(--red-10);
    --surface-info_weak: var(--blue-5);
    --surface-success_weak: var(--green-5);
    --surface-warning_weak: var(--yellow-5);
    --surface-danger_weak: var(--red-5);
    --text-strong: var(--gray-100);
    --text-medium: var(--gray-80);
    --text-weak: var(--gray-60);
    --text-inverted: var(--base-white);
    --text-disabled: var(--gray-30);
    --text-info: var(--blue-60);
    --text-success: var(--green-60);
    --text-warning: var(--yellow-60);
    --text-danger: var(--red-60);
    --text-buy: var(--green-60);
    --text-sell: var(--red-60);
    --text-fixed: var(--base-white);
    --text-primary: var(--green-60);
    --icon-strong: var(--gray-100);
    --icon-medium: var(--gray-80);
    --icon-weak: var(--gray-60);
    --icon-inverted: var(--base-white);
    --icon-disabled: var(--gray-30);
    --icon-info: var(--blue-60);
    --icon-success: var(--green-60);
    --icon-warning: var(--yellow-60);
    --icon-danger: var(--red-60);
    --icon-buy: var(--green-60);
    --icon-sell: var(--red-60);
    --icon-fixed: var(--base-white);
    --border-strong: var(--gray-30);
    --border-weak: var(--gray-10);
    --border-disabled: var(--gray-20);
    --border-selected: var(--green-60);
    --border-info: var(--blue-60);
    --border-success: var(--green-60);
    --border-warning: var(--yellow-60);
    --border-danger: var(--red-60);
    --border-buy: var(--green-60);
    --border-sell: var(--red-60);
    --surface_active_primary-enabled: var(--green-60);
    --surface_active_primary-hover: var(--green-70);
    --surface_active_primary-pressed: var(--green-80);
    --surface_active_primary-disabled: var(--gray-30);
    --surface_active_primary-weak-hover: var(--green-20);
    --surface_active_secondary-enabled: var(--gray-10);
    --surface_active_secondary-hover: var(--gray-20);
    --surface_active_secondary-pressed: var(--gray-30);
    --surface_active_secondary-disabled: var(--gray-5);
    --surface_active_strong-enabled: var(--base-white);
    --surface_active_strong-hover: var(--gray-5);
    --surface_active_strong-pressed: var(--gray-10);
    --surface_active_strong-disabled: var(--gray-5);
    --surface_active_medium-enabled: var(--gray-5);
    --surface_active_medium-hover: var(--gray-10);
    --surface_active_medium-pressed: var(--gray-20);
    --surface_active_medium-disabled: var(--gray-5);
    --surface_active_weak-enabled: var(--gray-30);
    --surface_active_weak-hover: var(--gray-40);
    --surface_active_weak-pressed: var(--gray-50);
    --surface_active_weak-disabled: var(--gray-5);
    --surface_active_inverted-enabled: var(--gray-100);
    --surface_active_inverted-hover: var(--gray-90);
    --surface_active_inverted-pressed: var(--gray-80);
    --surface_active_inverted-disabled: var(--gray-30);
    --surface_active_success-enabled: var(--green-60);
    --surface_active_success-hover: var(--green-70);
    --surface_active_success-pressed: var(--green-80);
    --surface_active_success-disabled: var(--gray-30);
    --surface_active_danger-enabled: var(--red-60);
    --surface_active_danger-hover: var(--red-70);
    --surface_active_danger-pressed: var(--red-80);
    --surface_active_danger-disabled: var(--gray-30);
    --surface_active_selected-enabled: var(--green-10);
    --surface_active_selected-hover: var(--green-20);
    --surface_active_selected-pressed: var(--green-30);
    --surface_active_selected-disabled: var(--gray-5);
    --surface_active_buy-enabled: var(--green-60);
    --surface_active_buy-hover: var(--green-70);
    --surface_active_buy-pressed: var(--green-80);
    --surface_active_buy-disabled: var(--gray-30);
    --surface_active_sell-enabled: var(--red-60);
    --surface_active_sell-hover: var(--red-70);
    --surface_active_sell-pressed: var(--red-80);
    --surface_active_sell-disabled: var(--gray-30);
    --on-surface_primary-enabled: var(--green-60);
    --on-surface_primary-hover: var(--green-70);
    --on-surface_primary-pressed: var(--green-80);
    --on-surface_primary-disabled: var(--gray-30);
    --on-surface_strong-enabled: var(--gray-100);
    --on-surface_strong-hover: var(--gray-90);
    --on-surface_strong-pressed: var(--gray-80);
    --on-surface_strong-disabled: var(--gray-30);
    --on-surface_medium-enabled: var(--gray-80);
    --on-surface_medium-hover: var(--gray-70);
    --on-surface_medium-pressed: var(--gray-60);
    --on-surface_medium-disabled: var(--gray-30);
    --on-surface_weak-enabled: var(--gray-50);
    --on-surface_weak-hover: var(--gray-40);
    --on-surface_weak-pressed: var(--gray-30);
    --on-surface_weak-disabled: var(--gray-30);
    --on-surface_inverted-enabled: var(--base-white);
    --on-surface_inverted-hover: var(--gray-5);
    --on-surface_inverted-pressed: var(--gray-10);
    --on-surface_inverted-disabled: var(--gray-5);
    --on-surface_info-enabled: var(--blue-60);
    --on-surface_info-hover: var(--blue-70);
    --on-surface_info-pressed: var(--blue-80);
    --on-surface_info-disabled: var(--gray-30);
    --on-surface_success-enabled: var(--green-60);
    --on-surface_success-hover: var(--green-70);
    --on-surface_success-pressed: var(--green-80);
    --on-surface_success-disabled: var(--gray-30);
    --on-surface_warning-enabled: var(--yellow-60);
    --on-surface_warning-hover: var(--yellow-70);
    --on-surface_warning-pressed: var(--yellow-80);
    --on-surface_warning-disabled: var(--gray-30);
    --on-surface_danger-enabled: var(--red-60);
    --on-surface_danger-hover: var(--red-70);
    --on-surface_danger-pressed: var(--red-80);
    --on-surface_danger-disabled: var(--gray-30);
    --border_active_enabled: var(--gray-30);
    --border_active_hover: var(--gray-40);
    --border_active_pressed: var(--gray-100);
    --border_active_disabled: var(--gray-20);
    --border_active_selected_enabled: var(--green-60);
    --border_active_selected_hover: var(--green-70);
    --border_active_selected_pressed: var(--green-80);
    --border_active_selected_disabled: var(--gray-30);
    --border_active_danger_enabled: var(--red-60);
    --border_active_danger_hover: var(--red-70);
    --border_active_danger_pressed: var(--red-80);
    --border_active_danger_disabled: var(--gray-30);
    --border-active-primary-enabled: var(--green-60);
    --border-active-primary-hover: var(--green-70);
    --decorative-amber: #ff8e54;
    --decorative-amber_weak: #fff9f6;
    --decorative-amethyst: #a069c6;
    --decorative-amethyst_weak: #f6f0f9;
    --decorative-crystal: #5db2b4;
    --decorative-crystal_weak: #eff7f8;
    --decorative-amaranth: #ea2e74;
    --decorative-amaranth_weak: #fff1f6;
    --decorative-gravel: #767478;
    --decorative-gravel_weak: #f4f2f5;
    --miscellaneous-overlay: var(--transparent-gray-10060);
    --essentials-primary: var(--green-60);
    --essentials-secondary: var(--gray-5);
    --essentials-surface: var(--base-white);
    --essentials-on-surface: var(--gray-100);
    --essentials-info: var(--blue-60);
    --essentials-success: var(--green-60);
    --essentials-warning: var(--yellow-60);
    --essentials-danger: var(--red-60);
    --essentials-buy: var(--green-60);
    --essentials-sell: var(--red-60);
    --essentials-brand: #f8313e
}

html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%
}

@supports (-webkit-touch-callout: none) {
    html {
        -webkit-text-size-adjust: none !important
    }
}

*:focus,
* input:focus {
    outline: none;
    box-shadow: none
}

*:focus-visible,
* input.focus-with-tab {
    outline: 2px auto var(--surface_active_primary-enabled);
    outline-offset: 2px
}

* button:focus-visible,
* a.component-button:focus-visible,
* a.foundations-button:focus-visible,
* a.btn:focus-visible {
    outline: 2px solid white;
    box-shadow: 0 0 0 4px var(--surface_active_primary-enabled);
    outline-offset: 0
}

* {
    -webkit-tap-highlight-color: transparent
}

.intercom-lightweight-app-launcher {
    bottom: 5px !important
}

.intercom-lightweight-app-launcher:focus {
    outline: 2px solid white !important;
    box-shadow: 0 0 0 4px var(--surface_active_primary-enabled) !important;
    outline-offset: 0
}

body {
    font-family: Roboto, Arial, Segoe UI, Helvetica Neue, -apple-system, system-ui, sans-serif;
    color: var(--text-strong);
    margin: 0;
    position: relative;
    transition: color .3s, background-color .3s
}

body[dir=rtl] {
    text-align: right
}

body.browser-mobile .hide-on-mobile {
    display: none !important
}

body:not(.browser-mobile) .hide-on-desktop {
    display: none !important
}

body .intercom-app,
body .intercom-lightweight-app {
    visibility: visible;
    opacity: 1;
    transition-delay: .3s
}

body.disabled-scroll {
    overflow: hidden;
    height: 100%;
    touch-action: none
}

body.disabled-scroll .intercom-app,
body.disabled-scroll .intercom-lightweight-app,
body.disabled-scroll chat-ai-widget {
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transition-delay: 0s
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: XTB Sans, Arial, Segoe UI, Helvetica Neue, -apple-system, system-ui, sans-serif;
    font-weight: 600
}

a {
    color: var(--text-primary);
    text-decoration: none
}

a:hover {
    color: var(--surface_active_primary-hover)
}

li a,
p a {
    color: inherit;
    text-decoration: underline;
    text-decoration-color: #08aa54;
    text-decoration-thickness: 7%;
    text-underline-offset: .25em;
    transition: color .3s, text-decoration-color .3s
}

li a:hover,
p a:hover {
    color: #131825a8;
    text-decoration-color: #0d5935
}

.inverted li a,
.inverted p a {
    text-decoration-color: #10bf66
}

.inverted li a:hover,
.inverted p a:hover {
    color: #f4f6f880;
    text-decoration-color: #3cd085
}

hr {
    border-color: #18181e14
}

b,
strong {
    font-weight: 700
}

button {
    border: none;
    border-radius: 0;
    padding: 0;
    margin: 0;
    background: transparent;
    cursor: pointer
}

table {
    width: 100%
}

.ltr,
input[type=tel] {
    direction: ltr;
    unicode-bidi: bidi-override;
    text-align: inherit
}

.ltr {
    display: inline-block
}

.breadcrumb {
    margin: 20px auto 40px;
    text-transform: uppercase;
    font-size: 12px
}

.breadcrumb a {
    color: #18181e66;
    text-decoration: none
}

.breadcrumb li {
    color: #18181e66;
    display: inline-block
}

.breadcrumb li.active {
    color: var(--surface_active_primary-enabled)
}

.breadcrumb li+li:before {
    color: #ccc;
    content: "›";
    padding: 0 10px
}

.panel {
    padding: 25px;
    margin: 0 0 27px;
    box-shadow: 0 12px 50px #0014ae12;
    position: relative;
    background: #fff;
    font-size: 18px;
    font-weight: 300
}

.panel .panel-header {
    font-size: 30px;
    margin: 0 0 25px;
    font-weight: 300
}

.panel p,
.panel li {
    font-size: 18px;
    font-weight: 300
}

[class^=col-] {
    position: relative
}

.zoom-box-image {
    transform: scale(1.0761);
    transition: transform .3s ease
}

@media all and (max-width: 1199px) {

    .panel,
    .panel p,
    .panel li {
        font-size: 16px
    }
}

@media all and (max-width: 767px) {
    .panel {
        font-size: 14px
    }

    .panel .panel-header {
        font-size: 24px
    }

    .panel p,
    .panel li {
        font-size: 14px
    }
}

.overall-footer {
    background: var(--base-white);
    margin: 120px 0 0;
    padding: 0 0 135px
}

.overall-footer-top {
    display: flex;
    justify-content: space-between;
    margin: 0 0 80px
}

.overall-footer-top-left {
    align-items: center;
    display: flex;
    grid-gap: 24px
}

.overall-footer-top-spacer {
    background: var(--gray-10);
    display: inline-block;
    height: 16px;
    width: 1px
}

.overall-footer-top-socials {
    display: flex;
    flex-wrap: wrap;
    grid-gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0
}

.overall-footer-top-socials-link {
    border-radius: 8px;
    display: block;
    transition: background-color .3s
}

.overall-footer-top-socials-link svg {
    width: 40px;
    height: 40px
}

.overall-footer-top-socials-link:hover {
    background-color: var(--gray-5)
}

.overall-footer-menu {
    display: grid;
    grid-auto-columns: 1fr;
    grid-auto-flow: column;
    grid-gap: 24px;
    margin: 0 0 64px
}

.overall-footer-menu-wrapper {
    display: flex;
    flex-direction: column;
    grid-gap: 24px
}

.overall-footer-menu-list-title {
    color: var(--text-strong);
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: .15px;
    margin: 0 0 8px;
    padding: 0 11px
}

.overall-footer-menu-list {
    list-style: none;
    margin: 0;
    padding: 0
}

.overall-footer-menu-list-link {
    color: var(--text-weak);
    border-radius: 8px;
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: .15px;
    padding: 8px 11px;
    transition: background-color .3s;
    text-decoration: none
}

.overall-footer-menu-list-link:hover {
    background-color: var(--gray-5);
    color: var(--text-weak)
}

.overall-footer-btns {
    display: flex;
    justify-content: space-between;
    margin: 0 0 72px
}

.overall-footer-btns-list {
    display: flex;
    grid-gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0
}

.overall-footer-btns-target-os {
    display: none
}

.overall-footer-notes {
    color: var(--gray-50);
    font-size: 14px;
    letter-spacing: .15px;
    line-height: 20px;
    margin: 0 0 16px;
    font-weight: 400
}

.overall-footer-copyright {
    margin: 22px 0 0;
    display: flex;
    grid-gap: 8px;
    align-items: center
}

.overall-footer-language {
    color: var(--text-strong);
    font-size: 16px;
    line-height: 24px;
    letter-spacing: .15px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    grid-gap: 24px
}

.overall-footer-language-flag {
    width: 14px;
    height: 14px
}

.overall-footer-language-text {
    display: flex;
    align-items: center;
    grid-gap: 5px
}

.overall-footer-language-text span {
    text-transform: capitalize
}

@media all and (max-width: 991px) {
    .overall-footer {
        margin: 56px 0 0;
        padding: 0 72px 56px
    }

    .overall-footer-top {
        margin: 0 0 24px;
        display: block
    }

    .overall-footer-top-left {
        display: block
    }

    .overall-footer-top-socials {
        margin: 24px 0
    }

    .overall-footer-menu {
        grid-auto-columns: auto;
        grid-auto-flow: row;
        margin: 0 0 48px
    }

    .overall-footer-menu-list-title {
        padding: 0
    }

    .overall-footer-menu-list-link {
        margin: 0 -11px
    }

    .overall-footer-btns {
        flex-direction: column;
        grid-gap: 24px;
        margin: 0 0 48px
    }

    .overall-footer-btns-list {
        flex-direction: column
    }

    .overall-footer-btns-spacer {
        background: var(--gray-10);
        height: 1px
    }

    .overall-footer-btns-link {
        width: 100%
    }
}

@media all and (max-width: 767px) {
    .overall-footer {
        padding: 0 12px 56px
    }
}

.warnings {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999
}

.alert {
    display: none;
    overflow: hidden;
    background: #f73e4a;
    position: relative;
    transition: height .3s;
    z-index: 1000
}

.alert-container {
    height: 100%;
    position: relative
}

.alert-content {
    bottom: 0;
    left: 0;
    line-height: 1.3;
    padding: 12px 0;
    width: 100%
}

.alert-content p {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    margin: 0
}

.alert-content a {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: underline;
    text-transform: uppercase;
    margin: 0 0 0 24px
}

.alert.alert-show {
    display: block
}

.risk-warning-hide-on-desktop {
    display: none
}

body[dir=rtl] .alert-content a {
    margin: 0 24px 0 0
}

@media all and (max-width: 767px) {
    .alert-content {
        line-height: 1
    }

    .alert-content p,
    .alert-content a {
        display: inline;
        margin: 0;
        font-size: 12px
    }

    .disabled-scroll .alert {
        z-index: initial
    }

    .risk-warning-hide-on-desktop {
        display: block
    }

    .risk-warning-hide-on-mobile {
        display: none
    }
}

.modal-backdrop {
    z-index: 1001
}

.modal-backdrop.in {
    opacity: .6;
    filter: alpha(opacity=60)
}

.transparent-backdrop .modal-backdrop {
    background: transparent
}

.modal-buy-sell,
.modal-risk-warning,
.modal-img-zoom,
.modal-try-real,
.modal-try-demo,
.modal-white,
.modal-close-only {
    text-align: center;
    z-index: 1002
}

.modal-buy-sell .modal-dialog,
.modal-risk-warning .modal-dialog,
.modal-img-zoom .modal-dialog,
.modal-try-real .modal-dialog,
.modal-try-demo .modal-dialog,
.modal-white .modal-dialog,
.modal-close-only .modal-dialog {
    display: inline-block;
    vertical-align: middle
}

.modal-buy-sell .modal-content,
.modal-risk-warning .modal-content,
.modal-img-zoom .modal-content,
.modal-try-real .modal-content,
.modal-try-demo .modal-content,
.modal-white .modal-content,
.modal-close-only .modal-content {
    box-shadow: none;
    border-radius: 0;
    border: none
}

.modal-buy-sell .modal-footer,
.modal-risk-warning .modal-footer,
.modal-img-zoom .modal-footer,
.modal-try-real .modal-footer,
.modal-try-demo .modal-footer,
.modal-white .modal-footer,
.modal-close-only .modal-footer {
    text-align: center
}

.modal-risk-warning .modal-dialog,
.modal-try-real .modal-dialog,
.modal-try-demo .modal-dialog,
.modal-buy-sell .modal-dialog,
.modal-white .modal-dialog,
.modal-close-only .modal-dialog {
    max-width: 580px
}

.modal-risk-warning .modal-content,
.modal-try-real .modal-content,
.modal-try-demo .modal-content,
.modal-buy-sell .modal-content,
.modal-white .modal-content,
.modal-close-only .modal-content {
    background: #fff
}

.modal-risk-warning .modal-header,
.modal-try-real .modal-header,
.modal-try-demo .modal-header,
.modal-buy-sell .modal-header,
.modal-white .modal-header,
.modal-close-only .modal-header {
    color: #18181e;
    font-size: 25px;
    font-weight: 300;
    border: none;
    padding: 30px 30px 20px
}

.modal-risk-warning .modal-body,
.modal-try-real .modal-body,
.modal-try-demo .modal-body,
.modal-buy-sell .modal-body,
.modal-white .modal-body,
.modal-close-only .modal-body {
    padding: 0 30px
}

.modal-risk-warning .modal-body p,
.modal-try-real .modal-body p,
.modal-try-demo .modal-body p,
.modal-buy-sell .modal-body p,
.modal-white .modal-body p,
.modal-close-only .modal-body p {
    font-weight: 300;
    color: #18181e;
    margin: 0;
    font-size: 16px
}

.modal-risk-warning .modal-body p.additional,
.modal-try-real .modal-body p.additional,
.modal-try-demo .modal-body p.additional,
.modal-buy-sell .modal-body p.additional,
.modal-white .modal-body p.additional,
.modal-close-only .modal-body p.additional {
    font-size: 13px;
    margin: 20px 0
}

.modal-risk-warning .modal-footer,
.modal-try-real .modal-footer,
.modal-try-demo .modal-footer,
.modal-buy-sell .modal-footer,
.modal-white .modal-footer,
.modal-close-only .modal-footer {
    padding: 20px 30px 30px
}

.modal-risk-warning .btn,
.modal-try-real .btn,
.modal-try-demo .btn,
.modal-buy-sell .btn,
.modal-white .btn,
.modal-close-only .btn {
    margin: 0 3px;
    padding: 5px 10px
}

.modal-risk-warning .modal-body {
    overflow-y: auto;
    max-height: 300px;
    text-align: left
}

.modal-risk-warning .modal-body p {
    font-size: 14px
}

.modal-img-zoom .modal-dialog {
    max-width: 100%
}

.modal-img-zoom .modal-content {
    background: #fff
}

.modal-img-zoom .modal-close {
    display: block;
    width: 14px;
    height: 14px;
    position: absolute;
    top: -24px;
    right: 0;
    margin: 0;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABkBAMAAACCzIhnAAAALVBMVEUAAAD///////////////////////////////////////////////////////+hSKubAAAADnRSTlMApfbt4aaZkhi7Tk06vIih6qQAAAGGSURBVFjDndi9TcRAEIbhIYAACK4CchJiIko4UQGiAmIiEgJyCqAERAlUgnRwgABpakAOkIW+4F2/Ts7e9d5zP+vdmam6Wx8/1eCxf7+9rjo86/4YHXLV/fZct93dq7ERO9O9p3UzvWzGhhxN937WumdmBOltdc8MI9NRJz0zI0i/1kMwgHzVY8/MCNI/tdczM4L05Xy6GkM2/86HkFVcMJJXjBCTCDKJABNItjCSTYhkGyPZiEi2MpLNiGQ7I9lBCPfM74U+I9FHSHQiEr2EZDci2c9I3oBIMowkg0gyjCSDSDKJMBMIM4kwEwgy7xeBIBMIM4EAEwgwiTATCDOJMBMIHrt/Q871EP/B/NfnH9n/lX7C+GnJk98/Yv5B9ssFL0p+6fMLLC/jdrPwW5Lf+Hh7tZu4DxV8QMJhjwiuTAgnAkUTjoqg14TWIoA3aYJIRkzKIxIrk76JJNGkoiLhNWm1SN5FiWB5IeK7XhaXO0RRRZRuRIFIlKFEsUuU1JYV7g6mwt0vypMHop2vUC8AAAAASUVORK5CYII=) no-repeat 0 0;
    background-size: 14px 14px;
    border: none
}

.modal-white .modal-body {
    text-align: left
}

.modal-try-demo .modal-content.modal-content-mobile,
.modal-try-real .modal-content.modal-content-mobile,
.browser-mobile .modal-try-demo .modal-content,
.browser-mobile .modal-try-real .modal-content {
    display: none
}

.browser-mobile .modal-try-demo .modal-content.modal-content-mobile,
.browser-mobile .modal-try-real .modal-content.modal-content-mobile {
    display: block
}

.modal-try-demo .modal-header,
.modal-try-real .modal-header,
.modal-buy-sell .modal-header,
.modal-close-only .modal-header {
    padding: 40px 45px 20px
}

.modal-try-demo .modal-close,
.modal-try-real .modal-close,
.modal-buy-sell .modal-close,
.modal-close-only .modal-close {
    display: block;
    width: 18px;
    height: 18px;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABkBAMAAACCzIhnAAAALVBMVEUAAAC1vcG1vcG1vcG1vcG1vcG1vcG1vcG1vcG1vcG1vcG1vcG1vcG1vcG1vcH/07esAAAADnRSTlMApfbt4aaZkhi7Tk06vIih6qQAAAGGSURBVFjDndi9TcRAEIbhIYAACK4CchJiIko4UQGiAmIiEgJyCqAERAlUgnRwgABpakAOkIW+4F2/Ts7e9d5zP+vdmam6Wx8/1eCxf7+9rjo86/4YHXLV/fZct93dq7ERO9O9p3UzvWzGhhxN937WumdmBOltdc8MI9NRJz0zI0i/1kMwgHzVY8/MCNI/tdczM4L05Xy6GkM2/86HkFVcMJJXjBCTCDKJABNItjCSTYhkGyPZiEi2MpLNiGQ7I9lBCPfM74U+I9FHSHQiEr2EZDci2c9I3oBIMowkg0gyjCSDSDKJMBMIM4kwEwgy7xeBIBMIM4EAEwgwiTATCDOJMBMIHrt/Q871EP/B/NfnH9n/lX7C+GnJk98/Yv5B9ssFL0p+6fMLLC/jdrPwW5Lf+Hh7tZu4DxV8QMJhjwiuTAgnAkUTjoqg14TWIoA3aYJIRkzKIxIrk76JJNGkoiLhNWm1SN5FiWB5IeK7XhaXO0RRRZRuRIFIlKFEsUuU1JYV7g6mwt0vypMHop2vUC8AAAAASUVORK5CYII=) no-repeat 0 0;
    background-size: 14px 14px;
    border: none;
    position: absolute;
    top: 15px;
    left: 100%;
    margin: 0 0 0 -33px
}

.modal-try-demo .modal-body,
.modal-try-real .modal-body,
.modal-buy-sell .modal-body,
.modal-close-only .modal-body {
    padding: 0 35px 35px
}

.modal-try-demo .btn,
.modal-try-real .btn,
.modal-buy-sell .btn,
.modal-close-only .btn {
    margin: 35px 0;
    padding: 10px 45px
}

.modal-buy-sell .btn {
    padding: 10px;
    margin: 0 3px
}

.modal-buy-sell .modal-body p {
    margin: 0 0 35px
}

.modal-tradebeat-info .modal-header {
    font-weight: 400;
    padding: 40px 35px 10px
}

.modal-tradebeat-info .modal-body p {
    margin: 0
}

.modal-tradebeat-info .modal-content {
    background: #fff url(../image/tradebeatPopup.nPHZb9rW.png) top center no-repeat;
    display: block
}

.modal-tradebeat-info img {
    height: 40px;
    margin-top: 70px
}

.modal-tradebeat-info .btn {
    margin: 10px 0 50px
}

.modal-close-only .modal-body {
    padding: 40px 35px 35px
}

@media screen and (min-width: 768px) {

    .modal-buy-sell:before,
    .modal-risk-warning:before,
    .modal-img-zoom:before,
    .modal-try-real:before,
    .modal-try-demo:before,
    .modal-white:before,
    .modal-close-only:before {
        display: inline-block;
        vertical-align: middle;
        content: "";
        height: 100%
    }
}

@media screen and (max-width: 767px) {

    .modal-buy-sell .modal-body p,
    .modal-risk-warning .modal-body p,
    .modal-white .modal-body p,
    .modal-close-only .modal-body p {
        font-size: 14px
    }

    .modal-buy-sell .btn,
    .modal-risk-warning .btn,
    .modal-white .btn,
    .modal-close-only .btn {
        display: block;
        margin: 0 0 10px;
        width: 100%
    }

    .modal-buy-sell .btn:only-child,
    .modal-risk-warning .btn:only-child,
    .modal-white .btn:only-child,
    .modal-close-only .btn:only-child {
        margin: 0
    }

    .modal-risk-warning .modal-body {
        max-height: 150px
    }

    .modal-try-demo .modal-dialog,
    .modal-try-real .modal-dialog {
        display: flex;
        align-items: center;
        height: 100%;
        width: 100%;
        max-width: none;
        margin: 0;
        padding: 10px
    }

    .modal-try-demo .modal-content,
    .modal-try-real .modal-content {
        margin: 0 auto
    }

    .modal-try-demo .modal-header,
    .modal-try-real .modal-header {
        padding: 30px 15px 20px
    }

    .modal-try-demo .modal-body,
    .modal-try-real .modal-body {
        padding: 0 15px 30px
    }

    .modal-try-demo .btn,
    .modal-try-real .btn {
        margin: 20px 0;
        width: 100%;
        padding: 10px
    }

    .modal-buy-sell .btn {
        margin: 0 0 10px
    }

    .modal-tradebeat-info .btn {
        margin: 10px 0 50px;
        display: inline-block;
        width: auto
    }
}

.iblock-oab {
    background: #f3f3f4;
    padding: 24px 24px 9px;
    margin: 30px 0
}

.iblock-oab h2 {
    margin: 0 0 18px;
    font-size: 28px
}

.iblock-oab .btn {
    display: none;
    margin: 0 15px 15px 0;
    padding: 16px
}

body[dir=rtl] .iblock-oab .btn {
    margin: 0 0 15px 15px
}

@media all and (max-width: 767px) {
    .iblock-oab .btn {
        width: 100%;
        white-space: normal;
        margin: 0 0 15px
    }

    body[dir=rtl] .iblock-oab .btn {
        margin: 0 0 15px
    }
}

#CybotCookiebotDialogBodyUnderlay {
    background: #18181e99 !important
}

#CybotCookiebotDialog.CybotCookiebotDialogActive+#CybotCookiebotDialogBodyUnderlay {
    opacity: 1 !important
}

#CybotCookiebotDialog {
    box-shadow: 0 -16px 44px #18181e0d !important;
    border-radius: 12px !important;
    font-family: Roboto, sans-serif !important;
    color: #18181e !important
}

#CybotCookiebotDialog h2 {
    font-weight: 700 !important
}

#CybotCookiebotDialog .CookieCard {
    font-weight: 300 !important;
    border-bottom: 1px solid #e8e8e9 !important
}

#CybotCookiebotDialog .CookieCard .CybotCookiebotDialogDetailBodyContentCookieContainerButton:hover {
    color: #0bc466 !important
}

#CybotCookiebotDialog .CybotCookiebotScrollContainer {
    border: none !important
}

#CybotCookiebotDialog .CybotCookiebotDialogBodyButton {
    padding: 14px 10px !important;
    text-transform: uppercase !important;
    font-size: 16px !important;
    box-shadow: 0 7px 14px #0014ae1a !important;
    border-radius: 4px !important;
    line-height: 20px !important;
    border-color: #0bc466 !important;
    color: #0bc466 !important;
    font-weight: 700 !important
}

#CybotCookiebotDialog .CybotCookiebotDialogBodyButton#CybotCookiebotDialogBodyButtonAccept,
#CybotCookiebotDialog .CybotCookiebotDialogBodyButton#CybotCookiebotDialogBodyLevelButtonAccept,
#CybotCookiebotDialog .CybotCookiebotDialogBodyButton#CybotCookiebotDialogBodyLevelButtonLevelOptinAllowAll {
    background: #0bc466 !important;
    color: #fff !important
}

#CybotCookiebotDialogHeader {
    border-bottom: none !important
}

#CybotCookiebotDialogHeader:before {
    display: block !important;
    content: url(../image/cookie.DQp8B6ZY.svg) !important
}

#CybotCookiebotDialogNav {
    border-bottom: none !important
}

#CybotCookiebotDialogNav .CybotCookiebotDialogNavItemLink {
    border-bottom: 1px solid #e8e8e9 !important
}

#CybotCookiebotDialogNav .CybotCookiebotDialogNavItemLink:hover {
    color: #0bc466 !important
}

#CybotCookiebotDialogNav .CybotCookiebotDialogNavItemLink.CybotCookiebotDialogActive {
    color: #0bc466 !important;
    border-bottom: 1px solid #15b042 !important
}

#CybotCookiebotDialogBodyContentText,
#CybotCookiebotDialogDetailFooter,
#CybotCookiebotDialogDetailBodyContentTextAbout {
    font-weight: 300 !important
}

#CybotCookiebotDialogBodyLevelButtonsSelectPane,
#CybotCookiebotDialogBodyLevelButtonsSelectPane .CybotCookiebotDialogBodyLevelButtonWrapper {
    border: none !important
}

#CybotCookiebotDialogTabContent input:checked+.CybotCookiebotDialogBodyLevelButtonSlider {
    background: #18181e !important
}

#CybotCookiebotDialogTabContent input:checked+.CybotCookiebotDialogBodyLevelButtonSlider:before {
    transform: translate(12px) !important
}

#CybotCookiebotDialogTabContent input:focus+.CybotCookiebotDialogBodyLevelButtonSlider {
    box-shadow: none !important
}

#CybotCookiebotDialogTabContent .CybotCookiebotDialogBodyLevelButtonSliderWrapper {
    height: 20px !important;
    width: 32px !important
}

#CybotCookiebotDialogTabContent .CybotCookiebotDialogBodyLevelButtonSlider {
    background: #f3f3f4 !important
}

#CybotCookiebotDialogTabContent .CybotCookiebotDialogBodyLevelButtonSlider:before {
    width: 16px !important;
    height: 16px !important;
    bottom: 2px !important;
    left: 2px !important
}

#CybotCookiebotDialogTabContent .CybotCookiebotDialogDetailBulkConsentCount {
    background-color: #e8e8e9 !important
}

#CybotCookiebotDialogDetailBodyContentCookieContainerTypes .CybotCookiebotDialogDetailBodyEmptyCategoryMessage {
    border-color: #e8e8e9 !important
}

#CookiebotWidget-widgetContent {
    box-shadow: 0 -16px 44px #18181e0d !important;
    border-radius: 12px !important
}

#CookiebotWidget {
    font-family: Roboto, sans-serif !important;
    font-weight: 300 !important
}

#CookiebotWidget strong {
    font-weight: 700 !important
}

#CookiebotWidget .CookiebotWidget-header {
    border-color: #e8e8e9 !important
}

#CookiebotWidget .CookiebotWidget-body .CookiebotWidget-consents-list li svg {
    fill: #0bc466 !important
}

#CookiebotWidget .CookiebotWidget-consent-details button {
    color: #0bc466 !important
}

#CookiebotWidget .CookiebotWidget-consent-details .CookiebotWidget-consent-details-box {
    background: #e8e8e9 !important;
    font-weight: 300 !important
}

#CookiebotWidget-buttons {
    border-color: #e8e8e9 !important
}

#CookiebotWidget-buttons button {
    padding: 14px 10px !important;
    text-transform: uppercase !important;
    font-size: 16px !important;
    box-shadow: 0 7px 14px #0014ae1a !important;
    border-radius: 4px !important;
    line-height: 20px !important;
    border-color: #0bc466 !important;
    color: #0bc466 !important;
    font-weight: 700 !important
}

#CookiebotWidget-buttons button#CookiebotWidget-btn-change {
    background: #0bc466 !important;
    color: #fff !important
}

.cookies-popup-heading {
    display: flex;
    align-items: center;
    grid-gap: 8px
}

.cookies-popup-paragraph {
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    color: #18181e
}

.cookies-popup-switch {
    position: absolute;
    top: 24px;
    right: 27px;
    width: 32px;
    height: 20px;
    background: #f3f3f4;
    border-radius: 50px;
    transition: background-color .5s
}

.cookies-popup-switch span {
    width: 16px;
    height: 16px;
    display: block;
    position: absolute;
    background: var(--base-white);
    top: 2px;
    left: 3px;
    border-radius: 50%;
    transition: left .5s
}

.cookies-popup-switch.active,
.cookies-popup-switch.is-required {
    background: var(--text-strong)
}

.cookies-popup-switch.active span,
.cookies-popup-switch.is-required span {
    left: 13px
}

.cookies-popup-switch.is-required {
    cursor: not-allowed
}

.cookies-popup-settings-content {
    display: none;
    flex-direction: column
}

.cookies-popup-settings-section {
    border-top: 1px solid var(--border-weak);
    padding: 24px 0;
    position: relative;
    margin-left: 4px
}

.cookies-popup-settings-section-content {
    display: none
}

.cookies-popup-settings-section-content p {
    font-size: 16px;
    line-height: 24px;
    margin: 12px 0
}

.cookies-popup-settings-btn-collapse {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    color: var(--text-strong)
}

.cookies-popup-settings-btn-collapse.active svg {
    transform: rotate(180deg)
}

.cookies-popup-settings-btn-cookies {
    font-size: 16px;
    line-height: 24px;
    margin: 0 0 17px;
    text-align: left;
    color: var(--text-strong)
}

.cookies-popup-settings-btn-cookies svg {
    margin: 0 8px
}

.cookies-popup-settings-btn-cookies.active svg {
    transform: rotate(180deg)
}

.cookies-popup-settings-table {
    display: none
}

.cookies-popup-settings-table table {
    table-layout: fixed;
    border-spacing: 0;
    border-collapse: separate;
    border-radius: 4px;
    border: 1px solid var(--border-weak);
    overflow: hidden;
    word-break: break-word
}

.cookies-popup-settings-table td,
.cookies-popup-settings-table th {
    padding: 12px;
    vertical-align: top;
    border-bottom: 1px solid var(--border-weak)
}

.cookies-popup-settings-table td p,
.cookies-popup-settings-table th p {
    margin: 0;
    font-size: 14px
}

.cookies-popup-settings-table td:first-child,
.cookies-popup-settings-table th:first-child {
    width: 45%;
    border-right: 1px solid var(--border-weak)
}

.cookies-popup-settings-table th {
    background: var(--background-weak)
}

.cookies-popup-settings-table tr:last-child td {
    border-bottom: none
}

.cookies-popup-settings-footer {
    display: none;
    flex-direction: column;
    grid-gap: 10px
}

.cookies-popup-main-footer {
    display: flex;
    flex-direction: column;
    grid-gap: 8px
}

.cookies-popup-main-footer-btn-wrapper {
    display: grid;
    grid-gap: 8px
}

.cookies-bar {
    padding: 16px 0;
    background: #fff;
    border-top: 1px solid var(--border-weak)
}

.cookies-bar svg {
    width: 33.33px;
    height: 33.33px;
    display: inline-block;
    flex-shrink: 0
}

.cookies-bar p {
    color: var(--text-strong);
    font-size: 16px;
    font-weight: 400;
    line-height: 23px;
    padding: 0 40px 0 20px;
    margin: 0
}

.cookies-bar-btns {
    display: flex;
    grid-gap: 8px;
    white-space: nowrap
}

.es .cookies-popup .js-settings button {
    display: none
}

.cookies-popup-settings-content button {
    align-items: center
}

.cookies-popup-settings-footer button {
    justify-content: center
}

body[dir=rtl] .cookies-popup-switch {
    right: auto;
    left: 27px
}

body[dir=rtl] .cookies-popup-settings-section {
    margin: 0 4px 0 0
}

body[dir=rtl] .cookies-popup-settings-table th:first-child,
body[dir=rtl] .cookies-popup-settings-table td:first-child {
    border-left: 1px solid var(--border-weak);
    border-right: none
}

@media all and (max-width: 991px) {
    .cookies-popup-paragraph {
        font-size: 16px;
        line-height: 22px
    }

    .cookies-bar svg {
        display: none
    }

    .cookies-bar p {
        font-size: 14px;
        line-height: 15px;
        padding: 0;
        margin: 0 0 16px
    }

    .cookies-bar button {
        width: 50%;
        font-size: 14px;
        line-height: 18px;
        padding: 8px
    }
}

@media all and (max-width: 767px) {
    .cookies-popup-paragraph {
        font-size: 16px;
        line-height: 22px
    }

    .cookies-popup-settings-table th,
    .cookies-popup-settings-table td {
        padding: 10px;
        font-size: 14px
    }

    .cookies-popup-settings-table th:first-child,
    .cookies-popup-settings-table td:first-child {
        width: 160px
    }

    .cookies-popup-main-footer-btn-wrapper {
        grid-template-columns: 1fr 1fr
    }

    .cookies-bar p {
        font-size: 12px
    }
}

.language-popup.show-country-selector .language-popup-country-search {
    display: flex
}

.language-popup .component-popup-header {
    align-items: center
}

.language-popup .component-popup-content {
    scrollbar-gutter: stable
}

.language-popup .component-popup-gradient {
    display: none
}

.language-popup-selection,
.language-popup-confirm {
    min-height: 236px
}

.language-popup-selection {
    position: relative
}

.language-popup-selection.unavailable .language-popup-unavailable {
    display: flex
}

.language-popup-selection.unavailable .language-popup-languages-wrapper {
    display: none
}

.language-popup-selection.unavailable .language-popup-country-selected {
    border-color: var(--text-danger)
}

.language-popup-selection-btns.unavailable button {
    background-color: var(--surface-disabled);
    color: var(--text-disabled);
    cursor: default;
    pointer-events: none
}

.language-popup-header {
    align-items: center;
    display: flex;
    grid-gap: 16px
}

.language-popup-back {
    width: 32px;
    height: 32px;
    line-height: 10px;
    transition: .3s;
    border-radius: 80px;
    background-color: #404a640d;
    margin: auto 0;
    min-width: 32px;
    display: none;
    flex-shrink: 0
}

.language-popup-back img {
    width: 16px;
    height: 16px
}

.language-popup-label {
    color: var(--text-weak);
    font-size: 12px;
    letter-spacing: .1px;
    line-height: 16px;
    margin-bottom: 8px
}

.language-popup-chevron {
    transform: rotate(90deg);
    transition: transform .3s
}

.show-country-selector .language-popup-chevron {
    transform: rotate(-90deg)
}

.language-popup-country-selected,
.language-popup-country-button {
    align-items: center;
    border-radius: 8px;
    color: var(--text-strong);
    display: flex;
    font-size: 14px;
    font-weight: 700;
    justify-content: space-between;
    letter-spacing: .15px;
    line-height: 20px;
    width: 100%
}

.language-popup-country-selected {
    border: 1px solid var(--border_active_enabled);
    padding: 11px;
    transition: border-color .3s
}

.show-country-selector .language-popup-country-selected {
    border: 2px solid var(--border_active_pressed);
    padding: 10px
}

.language-popup-country-selected-text,
.language-popup-country-button-text {
    align-items: center;
    display: flex;
    grid-gap: 8px;
    text-align: initial
}

.language-popup-country-search {
    background: #fff;
    border: 1px solid var(--border-weak);
    border-radius: 8px;
    box-shadow: 0 12px 50px #0014ae12;
    display: none;
    flex-direction: column;
    height: 296px;
    margin: 4px 0 0;
    padding: 16px 0 0;
    position: fixed;
    right: 32px;
    width: 325px;
    z-index: 2
}

.language-popup-country-search-input {
    background: var(--background-strong) url("data:image/svg+xml,%3csvg%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M16.7192%2016.7197C17.012%2016.4268%2017.4869%2016.4268%2017.7798%2016.7196L21.5302%2020.4696C21.8231%2020.7625%2021.8231%2021.2374%2021.5302%2021.5303C21.2374%2021.8232%2020.7625%2021.8232%2020.4696%2021.5304L16.7192%2017.7804C16.4263%2017.4875%2016.4263%2017.0126%2016.7192%2016.7197Z'%20fill='%2318181E'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M11%2018.5C15.1421%2018.5%2018.5%2015.1421%2018.5%2011C18.5%206.85786%2015.1421%203.5%2011%203.5C6.85786%203.5%203.5%206.85786%203.5%2011C3.5%2015.1421%206.85786%2018.5%2011%2018.5ZM11%2020C15.9706%2020%2020%2015.9706%2020%2011C20%206.02944%2015.9706%202%2011%202C6.02944%202%202%206.02944%202%2011C2%2015.9706%206.02944%2020%2011%2020Z'%20fill='%2318181E'/%3e%3c/svg%3e") no-repeat 12px 14px;
    background-size: 16px;
    border: 2px solid var(--border_active_pressed);
    border-radius: 8px;
    color: var(--text-strong);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .15px;
    line-height: 20px;
    padding: 12px 12px 12px 36px;
    margin: 0 16px
}

.language-popup-country-search-input::placeholder {
    color: var(--text-weak);
    font-weight: 400
}

.language-popup-country-list {
    display: flex;
    flex-direction: column;
    grid-gap: 8px;
    margin: 0 3px;
    overflow: auto;
    padding: 16px 9px 16px 13px;
    scrollbar-gutter: stable
}

.language-popup-country-list::-webkit-scrollbar {
    position: absolute;
    background: transparent;
    width: 4px
}

.language-popup-country-list::-webkit-scrollbar-thumb {
    background: var(--surface-secondary);
    border-radius: 2px
}

.language-popup-country-list::-webkit-scrollbar-thumb:hover {
    background: var(--surface-secondary)
}

.language-popup-country-row.selected .language-popup-country-button {
    background-color: var(--surface-selected)
}

.language-popup-country-row.selected .language-popup-country-button-icon {
    display: block
}

.language-popup-country-button {
    padding: 8px 16px;
    transition: background-color .3s
}

.language-popup-country-button:hover {
    background-color: var(--surface-selected)
}

.language-popup-country-button-icon {
    display: none
}

.language-popup-languages-wrapper {
    margin-top: 24px;
    min-height: 214px
}

.language-popup-languages {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 18px 8px
}

.language-popup-radio {
    border: 1px solid var(--border_active_enabled);
    border-radius: 8px;
    color: var(--text-weak);
    cursor: pointer;
    display: flex;
    font-size: 12px;
    grid-gap: 8px;
    letter-spacing: .1px;
    line-height: 16px;
    padding: 8px;
    transition: background-color .3s
}

.language-popup-radio strong {
    color: var(--text-strong);
    display: block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .15px;
    line-height: 20px;
    text-transform: capitalize
}

.language-popup-radio input[type=radio] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    flex-shrink: 0;
    height: 24px;
    position: relative;
    width: 24px
}

.language-popup-radio input[type=radio]:before {
    border: 1px solid var(--border_active_enabled);
    border-radius: 50%;
    content: "";
    display: block;
    height: 16px;
    left: 4px;
    position: absolute;
    top: 4px;
    transition: border .3s;
    width: 16px
}

.language-popup-radio input[type=radio]:checked:before {
    border: 5px solid var(--border-selected)
}

.language-popup-radio:has(input[type=radio]:checked) {
    background-color: var(--surface-selected)
}

.language-popup-disclaimer {
    color: var(--text-weak);
    font-size: 12px;
    letter-spacing: .1px;
    line-height: 16px;
    margin: 16px 0
}

.language-popup-confirm,
.language-popup-confirm-btns {
    display: none
}

.language-popup-confirm-text {
    color: var(--text-strong);
    font-size: 16px;
    letter-spacing: .15px;
    line-height: 24px
}

.language-popup-unavailable {
    display: none;
    grid-gap: 4px;
    margin: 8px 0 0
}

.language-popup-unavailable-img {
    flex-shrink: 0
}

.language-popup-unavailable-text {
    color: var(--text-danger);
    font-size: 12px;
    letter-spacing: .1px;
    line-height: 16px;
    margin: 0
}

.language-popup-btns button {
    width: 100%
}

body:not([dir=rtl]) .language-popup .component-popup-content {
    margin-left: -4px;
    padding-left: 4px
}

body[dir=rtl] .language-popup .component-popup-content {
    margin-right: -4px;
    padding-right: 4px
}

body[dir=rtl] .language-popup-back-img {
    transform: rotate(180deg)
}

body[dir=rtl] .language-popup-country-search {
    right: unset;
    left: 32px
}

body[dir=rtl] .language-popup-country-search-input {
    background-position: calc(100% - 12px) 14px;
    padding: 12px 36px 12px 12px
}

body[dir=rtl] .language-popup-country-list {
    padding: 16px 13px 16px 9px
}

@media (max-width: 991px) {
    .language-popup.show-country-selector .component-popup-popup:after {
        display: none
    }

    .language-popup.show-country-selector .component-popup-content {
        overflow: visible
    }

    .language-popup.show-country-selector .language-popup-country,
    .language-popup.show-country-selector .language-popup-languages-wrapper,
    .language-popup.show-country-selector .component-popup-footer {
        display: none
    }

    .language-popup.show-country-selector .language-popup-back {
        display: block !important
    }

    .language-popup .component-popup-popup {
        min-height: 75vh
    }

    .language-popup .component-popup-content {
        scrollbar-gutter: initial
    }

    .language-popup-country-search {
        background: transparent;
        border: none;
        border-radius: 0;
        box-shadow: none;
        height: auto;
        margin: 0;
        padding: 0;
        position: static;
        width: auto
    }

    .language-popup-country-search-input {
        font-size: 16px;
        margin: 0;
        position: sticky;
        top: 92px;
        z-index: 6
    }

    .language-popup-country-list {
        margin: 0;
        padding: 16px 0 0;
        scrollbar-gutter: initial
    }

    .language-popup-languages-wrapper {
        min-height: unset
    }

    .body:not([dir=rtl]) .language-popup .component-popup-content {
        margin-left: 0;
        padding-left: 0
    }

    body[dir=rtl] .language-popup .component-popup-content {
        margin-right: 0;
        padding-right: 0
    }

    body[dir=rtl] .language-popup-country-list {
        padding: 16px 0 0
    }
}

.redirect-popup-title {
    margin-top: 2px
}

.redirect-popup-content {
    padding: 20px 0
}

.redirect-popup-footer {
    display: flex;
    flex-direction: column;
    grid-gap: 8px
}

.redirect-popup .component-title {
    font-size: 24px
}

body[dir=rtl] .redirect-popup .component-popup-header {
    padding: 0 0 0 24px
}

@media screen and (max-width: 991px) {
    .redirect-popup-content {
        padding: 0
    }

    body[dir=rtl] .redirect-popup .component-popup-header {
        padding: 36px 0 16px
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.fade-animation-enter-active,
.fade-animation-leave-active {
    transition: opacity .5s
}

.fade-animation-leave-to {
    opacity: 0
}

.slide-animation-leave-active {
    transition: transform .5s
}

.slide-animation-leave-to {
    transform: translateY(100%)
}

.global-search {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    overflow: hidden
}

.global-search-wrapper {
    width: 752px;
    border-radius: 16px;
    border: 1px solid var(--border-weak);
    background: var(--base-white);
    max-height: 552px;
    animation: slideUp .5s forwards;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%) translateY(-50%);
    overflow: hidden
}

@keyframes slideUp {
    0% {
        top: 67%
    }

    to {
        top: 50%
    }
}

.global-search-input-wrapper {
    border-color: var(--border-weak);
    border-style: solid;
    border-width: 0 0 1px;
    display: flex;
    position: relative
}

.global-search-input {
    border: none;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    background: url("data:image/svg+xml,%3csvg%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M16.7192%2016.7197C17.012%2016.4268%2017.4869%2016.4268%2017.7798%2016.7196L21.5302%2020.4696C21.8231%2020.7625%2021.8231%2021.2374%2021.5302%2021.5303C21.2374%2021.8232%2020.7625%2021.8232%2020.4696%2021.5304L16.7192%2017.7804C16.4263%2017.4875%2016.4263%2017.0126%2016.7192%2016.7197Z'%20fill='%2318181E'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M11%2018.5C15.1421%2018.5%2018.5%2015.1421%2018.5%2011C18.5%206.85786%2015.1421%203.5%2011%203.5C6.85786%203.5%203.5%206.85786%203.5%2011C3.5%2015.1421%206.85786%2018.5%2011%2018.5ZM11%2020C15.9706%2020%2020%2015.9706%2020%2011C20%206.02944%2015.9706%202%2011%202C6.02944%202%202%206.02944%202%2011C2%2015.9706%206.02944%2020%2011%2020Z'%20fill='%2318181E'/%3e%3c/svg%3e") no-repeat 24px 24px;
    background-size: 16px;
    caret-color: var(--surface_active_primary-enabled);
    color: var(--text-weak);
    font-size: 16px;
    height: 64px;
    letter-spacing: .15px;
    line-height: 24px;
    padding: 0 40px 0 48px;
    width: 100%;
    position: relative
}

.global-search .custom-placeholder {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: gray;
    pointer-events: none;
    width: calc(100% - 16px);
    padding-left: 48px
}

.global-search-close-modal,
.global-search-clear-input {
    padding: 8px;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    position: absolute;
    right: 12px
}

.global-search-close-modal {
    display: flex;
    top: 17px
}

.global-search-close-modal:hover {
    cursor: pointer;
    background-color: var(--surface-active-strong-hover, #f4f6f8)
}

.global-search-close-modal svg {
    width: 16px;
    height: 16px
}

.global-search-clear-input {
    display: none;
    top: 12px
}

.global-search-tags-wrapper {
    border-bottom: 1px solid var(--gray-10);
    overflow: hidden;
    position: relative;
    scrollbar-width: none;
    white-space: nowrap;
    -ms-overflow-style: none
}

.global-search-tags-wrapper::-webkit-scrollbar {
    display: none
}

.global-search-tags-horizontal-overlay {
    display: flex;
    justify-content: space-between;
    position: absolute;
    height: 100%;
    width: 100%
}

.global-search-chevron-wrapper {
    display: flex;
    align-items: center;
    pointer-events: none;
    transition: .5s;
    z-index: 1
}

.global-search-chevron-wrapper-left {
    background: linear-gradient(90deg, #fff 44.71%, #fff0);
    padding: 0 32px 0 16px;
    margin-left: -80px
}

.global-search-chevron-wrapper-left.visible {
    margin-left: 0
}

.global-search-chevron-wrapper-right {
    background: linear-gradient(270deg, #fff 44.71%, #fff0);
    padding: 0 16px 0 32px;
    margin-right: -80px
}

.global-search-chevron-wrapper-right.visible {
    margin-right: 0
}

.global-search-chevron {
    border-radius: 8px;
    cursor: pointer;
    padding: 8px;
    pointer-events: all;
    color: var(--surface_active_primary-enabled)
}

.global-search-chevron:hover {
    background-color: var(--surface-active-strong-hover, #f4f6f8)
}

.global-search-chevron-left {
    transform: rotate(180deg)
}

.global-search-chevron svg {
    display: block
}

.global-search-tags {
    display: inline-flex;
    height: 56px;
    margin: 0;
    padding: 0 24px;
    position: relative;
    list-style: none;
    touch-action: none;
    transition: .5s
}

.global-search-tag-wrapper {
    padding: 8px 0;
    position: relative
}

.global-search-tag-wrapper.active:after {
    background: var(--surface_active_primary-enabled);
    bottom: -.5px;
    content: "";
    display: block;
    height: 2px;
    left: 0;
    position: absolute;
    width: 100%
}

.global-search-tag {
    align-items: center;
    color: var(--text-weak);
    display: flex;
    font-size: 16px;
    letter-spacing: .15px;
    line-height: 24px;
    padding: 8px 16px;
    white-space: nowrap;
    border-radius: 9px;
    grid-gap: 8px
}

.global-search-tag.active {
    color: var(--surface_active_primary-enabled);
    font-weight: 700;
    pointer-events: none;
    position: relative
}

.global-search-tag.no-tag-results {
    color: var(--gray-30);
    pointer-events: none
}

.global-search-tag.no-tag-results.active {
    color: var(--surface_active_primary-enabled)
}

.global-search-tag:hover {
    background: var(--background-weak)
}

.global-search-tag.no-tag-results .global-search-tag-count-pill {
    background: none;
    border: 1px solid var(--border-disabled);
    color: var(--text-disabled)
}

.global-search-tag.active .global-search-tag-count-pill {
    background: var(--surface_active_primary-enabled);
    color: var(--base-white);
    border: 1px solid var(--surface_active_primary-enabled)
}

.global-search-results-wrapper {
    position: relative;
    overflow: hidden;
    padding: 4px 4px 0;
    height: 308px;
    max-height: calc(100vh - 145px)
}

.global-search-no-results-wrapper {
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    margin: 0 auto;
    max-width: 348px;
    text-align: center;
    justify-content: center
}

.global-search-no-results-image-wrapper {
    height: 104px;
    width: 104px;
    background: transparent url(../image/visual.6ziTBV48.png) center no-repeat
}

.global-search-no-results-heading {
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis
}

.global-search-no-results-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px
}

.global-search-results-section-loader {
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    align-items: center
}

.global-search-results {
    height: 100%;
    list-style: none;
    overflow-y: auto;
    padding: 4px 4px 8px;
    margin: 0
}

.global-search-results::-webkit-scrollbar {
    background: transparent;
    width: 3px;
    z-index: 1
}

.global-search-results::-webkit-scrollbar-thumb {
    background: #bababc;
    border-radius: 2px
}

.global-search-result {
    display: flex;
    grid-gap: 16px;
    padding: 10px 16px;
    border-radius: 9px;
    text-decoration: none
}

.global-search-result:hover {
    background: var(--background-weak)
}

.global-search mark {
    padding: 0;
    font-weight: 700;
    color: var(--text-strong);
    background-color: transparent
}

.global-search-result-img {
    background: var(--gray-5);
    border-radius: 8px;
    height: 40px;
    width: 40px;
    margin-top: 2px;
    overflow: hidden
}

.global-search-result-img .image-padding {
    padding: 8px
}

.global-search-result-img.no-image img {
    display: none
}

.global-search-result-img.no-image:after {
    color: var(--gray-50);
    content: attr(data-first-letter);
    display: block;
    font-size: 20px;
    font-weight: 800;
    height: 40px;
    line-height: 40px;
    text-align: center;
    top: 0;
    width: 40px
}

.global-search-result-name-wrapper {
    width: calc(100% - 200px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1 0 0
}

.global-search-result-name-and-type {
    display: flex;
    align-items: center;
    grid-gap: 6px
}

.global-search-result-name {
    color: var(--text-strong);
    letter-spacing: .15px
}

.global-search-result-name.search-active {
    font-weight: 400
}

.global-search-result-type {
    border: 1px solid var(--border-weak);
    border-radius: 4px;
    color: var(--text-strong);
    font-size: 10px;
    font-weight: 700;
    line-height: 12px;
    padding: 1px 4px
}

.global-search-result-description-wrapper {
    width: 100%;
    display: flex;
    white-space: nowrap;
    color: var(--text-weak);
    font-size: 14px;
    letter-spacing: .15px;
    line-height: 20px
}

.global-search-result-description {
    overflow: hidden;
    text-overflow: ellipsis
}

.global-search-result-description.ltr {
    direction: ltr
}

.global-search-result-description.rtl {
    direction: rtl
}

.global-search-result-description-dot {
    margin: 0 4px;
    width: 6px;
    display: inline-block
}

.global-search-result-price {
    align-items: flex-end;
    color: var(--text-strong);
    display: flex;
    flex-direction: column;
    font-size: 16px;
    justify-content: center;
    letter-spacing: .15px;
    line-height: 24px;
    text-align: center;
    min-width: 60px
}

.global-search-result-price small {
    align-items: center;
    display: flex;
    font-size: 14px;
    grid-gap: 4px;
    letter-spacing: .15px;
    line-height: 20px
}

.global-search-result-price small.down {
    color: var(--surface-sell)
}

.global-search-result-price small.down .icon {
    background: transparent url("data:image/svg+xml,%3csvg%20width='16'%20height='16'%20viewBox='0%200%2016%2016'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M2%204.99951L5.87594%208.97002L8.56882%206.44535L13.9546%2011.9995M9.50001%2011.9995H14V7.49951'%20stroke='%23F73E4A'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/svg%3e") no-repeat center
}

.global-search-result-price small.up {
    color: var(--surface-buy)
}

.global-search-result-price small.up .icon {
    background: transparent url("data:image/svg+xml,%3csvg%20width='16'%20height='16'%20viewBox='0%200%2016%2016'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M2%2011.5L5.87594%207.52949L8.56882%2010.0542L13.9546%204.5M9.50001%204.5H14V9'%20stroke='%230BC466'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/svg%3e") no-repeat center
}

.global-search-result-price .change-value {
    direction: ltr
}

.global-search-result-price .icon {
    display: inline-block;
    height: 16px;
    width: 16px
}

.global-search-results-loader {
    position: relative;
    width: 20px;
    height: 20px;
    margin: 5px auto
}

.global-search-loader-icon {
    height: 20px;
    width: 20px;
    border: solid 2px transparent;
    border-top-color: var(--text-strong);
    border-radius: 50%;
    transform: rotate(135deg);
    animation: spin 1.3s linear infinite
}

.global-search-anchor {
    height: 1px
}

@keyframes spin {
    0% {
        transform: rotate(0)
    }

    to {
        transform: rotate(360deg)
    }
}

body[dir=rtl] .global-search-input {
    padding: 0 48px 0 40px;
    background-position: bottom 24px right 24px
}

body[dir=rtl] .global-search .custom-placeholder {
    padding: 0 48px 0 0
}

body[dir=rtl] .global-search-chevron-wrapper {
    transform: rotate(180deg)
}

body[dir=rtl] .global-search-chevron-wrapper-left {
    margin-right: -80px;
    margin-left: 0
}

body[dir=rtl] .global-search-chevron-wrapper-left.visible {
    margin-right: 0
}

body[dir=rtl] .global-search-chevron-wrapper-right {
    margin-right: 0;
    margin-left: -80px
}

body[dir=rtl] .global-search-chevron-wrapper-right.visible {
    margin-left: 0
}

body[dir=rtl] .global-search-close-modal {
    right: unset;
    left: 12px
}

@media all and (max-width: 991px) {

    .global-search-tag:hover,
    .global-search-cross-icon:hover,
    .global-search-close-icon:hover {
        background: none
    }
}

@media all and (max-width: 767px) {
    .global-search-wrapper {
        width: 100%;
        height: 100%;
        margin: 0;
        border-radius: 0;
        border: none;
        max-height: unset
    }

    .global-search-title {
        margin: 0 16px 32px
    }

    .global-search-btn {
        margin: 0 16px 40px
    }

    .global-search-input {
        background: none
    }

    .global-search .custom-placeholder {
        padding: 0 16px 0 48px
    }

    .global-search-tags-horizontal-overlay {
        display: none
    }

    .global-search-mobile-back {
        height: 32px;
        width: 32px;
        display: flex;
        position: absolute;
        background: transparent url("data:image/svg+xml,%3csvg%20width='16'%20height='16'%20viewBox='0%200%2016%2016'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20id='back'%3e%3cpath%20id='Vector'%20d='M7.48328%203.51656C7.67854%203.71183%207.67854%204.02841%207.48328%204.22367L4.20718%207.49977H12.9996C13.2757%207.49977%2013.4996%207.72363%2013.4996%207.99977C13.4996%208.27591%2013.2757%208.49977%2012.9996%208.49977H4.20718L7.48328%2011.7759C7.67854%2011.9711%207.67854%2012.2877%207.48328%2012.483C7.28802%2012.6782%206.97144%2012.6782%206.77617%2012.483L2.29297%207.99977L6.77617%203.51656C6.97144%203.3213%207.28802%203.3213%207.48328%203.51656Z'%20fill='%230F1215'/%3e%3c/g%3e%3c/svg%3e") no-repeat 8px 8px;
        top: 16px;
        left: 16px;
        z-index: 1
    }

    .global-search-mobile-back:hover {
        cursor: pointer
    }

    .global-search-close-modal {
        display: none
    }

    .global-search-clear-input {
        display: flex
    }

    .global-search-tags-wrapper {
        overflow: unset
    }

    .global-search-tags {
        width: 100%;
        padding: 0 16px;
        overflow-x: scroll;
        overflow-y: hidden;
        scrollbar-width: none;
        touch-action: auto
    }

    .global-search-tags::-webkit-scrollbar {
        display: none
    }

    .global-search-no-results-wrapper {
        max-width: none;
        padding: 56px 0 0;
        height: auto
    }

    .global-search-scroll {
        display: flex;
        flex-direction: column;
        height: 100%
    }

    .global-search-results-wrapper {
        height: 100%;
        padding: 8px 5px;
        max-height: unset
    }

    .global-search-result {
        padding: 8px 11px;
        max-height: unset;
        grid-gap: 12px
    }

    .global-search-results {
        padding: 0 0 8px
    }

    .global-search-no-results-text {
        padding: 0 16px
    }

    .global-search-anchor {
        padding-bottom: 60px
    }

    body[dir=rtl] .global-search-input {
        background-position: bottom 24px right 16px
    }

    body[dir=rtl] .global-search .custom-placeholder {
        padding: 0 48px 0 16px
    }

    body[dir=rtl] .global-search-mobile-back {
        left: unset;
        right: 16px;
        transform: rotate(180deg)
    }

    body[dir=rtl] .global-search-clear-input {
        right: unset;
        left: 12px
    }
}

.component-badge {
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    letter-spacing: .1px;
    padding: 1px 8px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    grid-gap: 4px;
    flex-shrink: 0;
    border-radius: 14px;
    border: 1px solid;
    text-align: center
}

.component-badge-active {
    background-color: var(--surface_active_primary-enabled);
    border-color: var(--border-selected);
    color: var(--text-inverted)
}

.component-badge-enabled {
    background-color: var(--surface-secondary);
    border-color: var(--surface-secondary);
    color: var(--text-strong)
}

.component-badge-disabled {
    background-color: var(--base-white);
    border-color: var(--border-disabled);
    color: var(--text-disabled)
}

.component-badge-deafult-inverted {
    background-color: #d6e1ec40;
    border-color: transparent;
    color: var(--text-inverted)
}

.component-badge svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    flex-shrink: 0
}

.component-button {
    display: inline-block;
    transition: all .3s;
    border-radius: 4px;
    font-style: normal;
    font-weight: 700;
    border: 1px solid;
    text-align: center;
    text-decoration: none
}

.component-button * {
    pointer-events: none
}

.component-button-icon {
    white-space: nowrap
}

.component-button-primary {
    color: var(--text-inverted);
    background: var(--surface_active_primary-enabled);
    border-color: transparent
}

.component-button-primary:hover {
    background: var(--surface_active_primary-hover);
    color: var(--text-inverted)
}

.component-button-secondary {
    color: var(--on-surface_primary-enabled);
    background-color: var(--base-white);
    border-color: var(--border-active-primary-enabled)
}

.component-button-secondary:hover {
    color: var(--on-surface_primary-hover);
    border-color: var(--border-active-primary-hover)
}

.component-button-secondary-gray {
    border-color: var(--border-weak);
    color: var(--text-strong);
    background: var(--surface_active_strong-enabled)
}

.component-button-secondary-gray:hover {
    background: var(--surface_active_strong-hover);
    color: var(--text-strong)
}

.component-button-ghost {
    color: var(--text-primary);
    border-color: transparent
}

.component-button-ghost:hover {
    background: var(--surface_active_primary-weak-hover);
    color: var(--text-primary)
}

.component-button-compact,
.component-button-compact-arrow {
    color: var(--text-primary);
    border-color: transparent;
    text-align: initial
}

.component-button-compact:hover,
.component-button-compact-arrow:hover {
    color: var(--surface_active_primary-hover)
}

.component-button-compact.component-button-s,
.component-button-compact.component-button-m,
.component-button-compact.component-button-l,
.component-button-compact.component-button-xl,
.component-button-compact-arrow.component-button-s,
.component-button-compact-arrow.component-button-m,
.component-button-compact-arrow.component-button-l,
.component-button-compact-arrow.component-button-xl {
    padding: 0
}

.component-button-compact-paddings {
    color: var(--text-primary);
    border-color: transparent;
    text-align: initial
}

.component-button-compact-paddings:hover {
    color: var(--surface_active_primary-hover)
}

.component-button-compact-paddings.component-button-s {
    padding: 8px 0
}

.component-button-compact-paddings.component-button-m {
    padding: 10px 0
}

.component-button-compact-paddings.component-button-l {
    padding: 14px 0
}

.component-button-compact-paddings.component-button-xl {
    padding: 20px 0
}

.component-button-s {
    font-size: 12px;
    line-height: 16px;
    letter-spacing: .1px;
    padding: 8px
}

.component-button-m {
    padding: 10px 20px
}

.component-button-l {
    padding: 14px 24px
}

.component-button-xl {
    font-size: 16px;
    line-height: 24px;
    padding: 20px 24px
}

.component-button-m,
.component-button-l {
    font-size: 14px;
    line-height: 20px
}

.component-button-m,
.component-button-l,
.component-button-xl {
    letter-spacing: .15px
}

.component-button svg {
    fill: currentColor;
    margin-top: -2px
}

.component-button-text {
    white-space: normal
}

body[dir=rtl] .component-button-icon-start-arrow svg,
body[dir=rtl] .component-button-icon-end-arrow svg {
    transform: rotate(180deg)
}

.component-disclaimer {
    display: flex;
    font-size: 12px;
    font-weight: 400;
    justify-content: center;
    letter-spacing: .1px;
    line-height: 20px;
    text-align: center
}

.component-disclaimer p {
    margin: 0
}

.component-disclaimer a,
.component-disclaimer a:hover {
    color: inherit;
    text-decoration: underline;
    text-decoration-color: currentColor;
    -webkit-text-decoration-color: currentColor
}

.component-disclaimer-top {
    border-bottom: 1px solid
}

.component-disclaimer-bottom {
    border-top: 1px solid
}

.component-disclaimer-light {
    color: #2c3e50;
    border-color: #4e5b7e21
}

.component-disclaimer-light-bottom {
    background-color: #fffc;
    backdrop-filter: blur(60px);
    -webkit-backdrop-filter: blur(60px)
}

.component-disclaimer-dark {
    color: #c7c9cc;
    border-color: transparent;
    background: #000
}

.component-disclaimer-text {
    padding: 8px 32px;
    margin: 0 auto;
    font-size: 14px
}

.component-disclaimer-text-short,
.component-disclaimer-text-collapse,
.component-disclaimer-toggler {
    display: none
}

.dark .component-disclaimer-dark {
    background: transparent;
    border-color: #dbe2ea2b
}

.dark .component-disclaimer-light {
    color: #c7c9cc;
    border-color: #dbe2ea2b
}

.dark .risk-warning-inverted .component-disclaimer-dark {
    color: #111417;
    border-color: transparent;
    background: #fff
}

.dark .risk-warning-inverted .component-disclaimer-light {
    background-color: #000;
    color: #c7c9cc
}

.dark.transparent .component-disclaimer-dark,
.dark.transparent .component-disclaimer-light {
    border-color: #dbe2ea2b
}

@media all and (max-width: 1439px) {
    .component-disclaimer-text {
        padding: 8px 16px
    }
}

@media all and (max-width: 767px) {
    .risk-warning-collapse .component-disclaimer-dark .component-disclaimer-text {
        padding-bottom: 0
    }

    .component-disclaimer-text-long {
        display: none
    }

    .component-disclaimer-text-short {
        display: block
    }

    .component-disclaimer-toggler {
        align-items: center;
        justify-content: center
    }

    .component-disclaimer-toggler:before,
    .component-disclaimer-toggler:after {
        content: "";
        display: block;
        height: 1px;
        width: 100%
    }

    .component-disclaimer-toggler-light {
        height: 1px
    }

    .component-disclaimer-toggler-light svg {
        color: #131825a8
    }

    .component-disclaimer-toggler-light:before,
    .component-disclaimer-toggler-light:after {
        background: #4e5b7e21
    }

    .component-disclaimer-toggler-dark {
        background-color: #000
    }

    .component-disclaimer-toggler-dark svg {
        color: #f6f7f8
    }

    .component-disclaimer-toggler-button {
        transform: rotate(180deg);
        padding: 0 4px
    }

    .risk-warning-collapse .component-disclaimer-text-short {
        display: block
    }

    .risk-warning-collapse .component-disclaimer-text-collapse {
        display: none
    }

    .risk-warning-collapse .component-disclaimer-top,
    .risk-warning-collapse .component-disclaimer-bottom {
        border: none
    }

    .risk-warning-collapse .component-disclaimer-toggler {
        display: flex
    }

    .risk-warning-collapsed .component-disclaimer-text-short {
        display: none
    }

    .risk-warning-collapsed .component-disclaimer-text-collapse {
        display: block
    }

    .risk-warning-collapsed .component-disclaimer-toggler-button {
        transform: none
    }

    .risk-warning-collapse:not(.risk-warning-collapsed) .component-disclaimer-toggler-light svg {
        color: #08aa54
    }

    .dark .risk-warning-collapse:not(.risk-warning-collapsed) .component-disclaimer-toggler-dark svg {
        color: #08aa54
    }

    .dark .component-disclaimer-toggler-light svg {
        color: #f6f7f8
    }

    .dark .component-disclaimer-toggler-light:before,
    .dark .component-disclaimer-toggler-light:after {
        background: #dbe2ea2b
    }

    .dark .component-disclaimer-toggler-dark {
        background-color: transparent
    }

    .dark .component-disclaimer-toggler-dark:before,
    .dark .component-disclaimer-toggler-dark:after {
        background: #dbe2ea2b
    }

    .risk-warning-collapse:not(.risk-warning-collapsed) .dark .component-disclaimer-toggler-light svg {
        color: #f6f7f8
    }
}

.component-heading {
    font-family: XTB Sans, Arial, Segoe UI, Helvetica Neue, -apple-system, system-ui, sans-serif;
    font-style: normal;
    margin: 0;
    max-width: 100%;
    word-break: break-word
}

.component-heading-h1 {
    font-size: 48px;
    line-height: 56px
}

.component-heading-h2 {
    font-size: 32px;
    line-height: 42px
}

.component-heading-h3 {
    font-size: 20px;
    line-height: 28px
}

.component-heading-light {
    color: var(--text-inverted)
}

.component-heading-dark {
    color: var(--text-strong)
}

@media all and (max-width: 991px) {
    .component-heading-h1 {
        font-size: 32px;
        line-height: 42px
    }

    .component-heading-h2 {
        font-size: 24px;
        line-height: 32px
    }
}

.component-highlight {
    border-left: 2px solid var(--border-success);
    padding: 0 16px
}

.component-highlight-heading {
    font-family: XTB Sans, Arial, Segoe UI, Helvetica Neue, -apple-system, system-ui, sans-serif;
    font-size: 32px;
    line-height: 42px;
    color: var(--text-inverted)
}

.component-highlight .component-title-light {
    color: var(--gray-30)
}

body[dir=rtl] .component-highlight {
    border-left: none;
    border-right: 2px solid var(--border-success);
    padding: 0 16px
}

.component-news {
    border: 1px solid var(--border-weak);
    border-radius: 16px;
    padding: 16px;
    text-align: left;
    cursor: pointer;
    display: block
}

.component-news.loading {
    pointer-events: none
}

.component-news-image {
    border-radius: 8px;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.component-news-image-wrapper {
    width: 100%;
    height: 120px;
    margin-bottom: 18px
}

.component-news-text,
.component-news-reading-time {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: .15px;
    color: var(--text-weak);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    grid-gap: 8px
}

.component-news-text {
    min-height: 24px
}

.component-news-reading-time {
    min-height: 20px
}

.component-news-lock svg {
    margin-top: -2px
}

.component-news-title {
    font-family: Roboto, Arial, Segoe UI, Helvetica Neue, -apple-system, system-ui, sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    height: 48px;
    letter-spacing: 0;
    text-align: left;
    color: var(--text-strong);
    margin-bottom: 16px;
    max-width: 100%;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden
}

.component-news-icon {
    width: 24px;
    height: 24px;
    background-color: var(--gray-10);
    border-radius: 4px;
    overflow: hidden
}

.component-news-icon img {
    width: 100%;
    height: 100%
}

.component-news-icon.error img {
    display: none
}

.component-news-icon.error:after {
    align-items: center;
    color: #0000004d;
    content: attr(data-first-letter);
    display: flex;
    font-size: 12px;
    font-weight: 700;
    height: 24px;
    justify-content: center;
    width: 24px
}

.loading>.component-news-image-wrapper,
.loading>.component-news-text,
.loading>.component-news-title,
.loading>.component-news-reading-time,
.loading>.component-news-button-wrapper {
    position: relative
}

.loading>.component-news-image-wrapper:before,
.loading>.component-news-image-wrapper:after,
.loading>.component-news-text:before,
.loading>.component-news-text:after,
.loading>.component-news-title:before,
.loading>.component-news-title:after,
.loading>.component-news-reading-time:before,
.loading>.component-news-reading-time:after,
.loading>.component-news-button-wrapper:before,
.loading>.component-news-button-wrapper:after {
    display: block;
    content: " ";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%
}

.loading>.component-news-image-wrapper:before,
.loading>.component-news-text:before,
.loading>.component-news-title:before,
.loading>.component-news-reading-time:before,
.loading>.component-news-button-wrapper:before {
    background: var(--base-white)
}

.loading>.component-news-image-wrapper:after,
.loading>.component-news-text:after,
.loading>.component-news-title:after,
.loading>.component-news-reading-time:after,
.loading>.component-news-button-wrapper:after {
    animation: 1.5s shine linear infinite;
    background: linear-gradient(90deg, #f0f0f0 -145%, #fff 307.5%);
    background-size: 200% 100%;
    border-radius: 4px
}

.component-news:hover .component-button {
    color: var(--surface_active_primary-hover)
}

body[dir=rtl] .component-news-title,
body[dir=rtl] .component-news-button-wrapper {
    text-align: right
}

.component-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--miscellaneous-overlay);
    z-index: -1
}

.component-popup-wrapper {
    overscroll-behavior: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    overflow: hidden;
    display: none
}

.component-popup-wrapper.open {
    display: block
}

.component-popup-wrapper.dark .component-popup-popup {
    background: #1c2026;
    border: 1px solid rgba(219, 226, 234, .17)
}

.component-popup-wrapper.dark .component-popup-content {
    color: #c7c9cc
}

.component-popup-wrapper.dark .component-popup-close {
    background: #d6e1ec40
}

.component-popup-wrapper.dark .component-popup-close svg path {
    fill: #f6f7f8
}

.component-popup-wrapper.dark .component-popup-gradient-top:after {
    background: linear-gradient(180deg, #1c2026, #fff0 50.14%)
}

.component-popup-wrapper.dark .component-popup-gradient-bottom:after {
    background: linear-gradient(360deg, #1c2026, #fff0 50.14%)
}

.component-popup-popup {
    position: absolute;
    width: 470px;
    max-height: 80vh;
    top: 50%;
    left: 50%;
    transform: translate(-50%) translateY(-50%);
    padding: 32px 8px 24px 32px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #ffffff;
    display: flex;
    flex-direction: column;
    transition: top .5s
}

.component-popup-popup.animation {
    top: 67%
}

.component-popup-popup.loading .component-popup-loader {
    display: flex
}

.component-popup-popup:focus-visible {
    outline: none !important;
    box-shadow: none !important
}

.component-popup-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff9;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1;
    border-radius: 20px
}

.component-popup-close {
    z-index: 1;
    width: 32px;
    height: 32px;
    line-height: 10px;
    display: block;
    transition: .3s;
    border-radius: 80px;
    background-color: #404a640d;
    margin: 0;
    min-width: 32px
}

.component-popup-close svg {
    width: 9.25px;
    height: 9.25px;
    pointer-events: none
}

.component-popup-header {
    display: flex;
    align-items: flex-start;
    grid-gap: 24px;
    justify-content: space-between;
    flex-shrink: 1;
    padding-right: 24px;
    margin: 0 0 16px
}

.component-popup-content {
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    padding-right: 24px
}

.component-popup-content::-webkit-scrollbar {
    background: transparent;
    width: 4px;
    z-index: 1
}

.component-popup-content::-webkit-scrollbar-thumb {
    background: #e5e5e7;
    border-radius: 2px;
    height: 20px
}

.component-popup-gradient {
    height: 0;
    width: 101%;
    position: relative;
    display: block;
    transition: opacity 1s;
    z-index: 1
}

.component-popup-gradient:after {
    content: "";
    left: -1px;
    pointer-events: none;
    height: 112px;
    width: calc(100% - 4px);
    display: block;
    position: absolute
}

.component-popup-gradient-top {
    opacity: 0
}

.component-popup-gradient-top:after {
    background: linear-gradient(180deg, #fff, #fff0 50.14%);
    top: -1px
}

.component-popup-gradient-bottom {
    opacity: 0
}

.component-popup-gradient-bottom:after {
    background: linear-gradient(360deg, #fff, #fff0 50.14%);
    bottom: -1px
}

.component-popup-footer {
    flex-shrink: 1;
    padding-top: 24px;
    padding-right: 24px
}

.component-popup-footer:empty {
    padding-top: 0
}

.component-popup-footer .btn {
    white-space: initial
}

body[dir=rtl] .component-popup-popup {
    padding: 38px 32px 24px 8px
}

body[dir=rtl] .component-popup-close {
    right: unset;
    left: 40px
}

body[dir=rtl] .component-popup-header {
    padding: 0 0 0 16px
}

body[dir=rtl] .component-popup-content {
    padding-right: 0;
    padding-left: 24px
}

body[dir=rtl] .component-popup-gradient:after {
    left: unset;
    right: -1px
}

body[dir=rtl] .component-popup-footer {
    padding-right: 0;
    padding-left: 24px
}

@media all and (max-width: 991px) {
    .component-popup-wrapper {
        overflow: auto
    }

    .component-popup-wrapper::-webkit-scrollbar {
        display: none
    }

    .component-popup-wrapper::-webkit-scrollbar-thumb {
        display: none
    }

    .component-popup-wrapper.open .component-popup-popup:after {
        transform: translate(0)
    }

    .component-popup-wrapper.dark .component-popup-header,
    .component-popup-wrapper.dark .component-popup-popup:after {
        background: #1c2026
    }

    .component-popup-wrapper.dark .component-popup-footer {
        background: #1c2026
    }

    .component-popup-popup {
        position: fixed;
        display: flex;
        width: 100%;
        max-width: 100%;
        max-height: unset;
        left: 0;
        top: 100vh;
        transform: none;
        padding: 0 32px;
        border-radius: 24px 24px 0 0;
        border-bottom-width: 0;
        z-index: 10
    }

    .component-popup-popup:after {
        content: "";
        width: 100%;
        height: 16px;
        background: #fff;
        position: fixed;
        bottom: 0;
        left: 0
    }

    .component-popup-popup.animation {
        top: 100%
    }

    .component-popup-close {
        right: 8px
    }

    .component-popup-header {
        position: sticky;
        top: 0;
        background: #fff;
        padding: 32px 0 16px;
        z-index: 5
    }

    .component-popup-content {
        overflow: hidden;
        padding: 0 0 16px
    }

    .component-popup-gradient {
        position: sticky;
        left: 0;
        z-index: 1
    }

    .component-popup-gradient-top {
        top: 16px
    }

    .component-popup-gradient-bottom {
        bottom: 0
    }

    .component-popup-footer {
        position: sticky;
        width: 100%;
        bottom: 0;
        background: #fff;
        padding: 15px 0;
        margin-top: auto
    }

    body[dir=rtl] .component-popup-popup {
        padding: 0 32px
    }

    body[dir=rtl] .component-popup-header {
        padding: 32px 0 16px
    }

    body[dir=rtl] .component-popup-close {
        right: unset;
        left: 8px
    }

    body[dir=rtl] .component-popup-content {
        padding: 0 0 16px
    }

    body[dir=rtl] .component-popup-footer {
        padding: 16px 0
    }
}

@media all and (max-width: 575px) {

    .component-popup-popup,
    body[dir=rtl] .component-popup-popup {
        padding: 0 26px
    }
}

.component-tag {
    display: inline-flex;
    padding: 6px 10px;
    justify-content: center;
    align-items: center;
    grid-gap: 8px;
    border-radius: 24px;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: .15px;
    border: 1px solid;
    transition: .3s
}

.component-tag-light {
    border-color: var(--border-weak);
    background-color: var(--surface-strong);
    color: var(--text-weak)
}

.component-tag-dark {
    color: var(--text-disabled);
    background-color: var(--surface-inverted);
    border-color: var(--gray-70)
}

.component-tag-clickable-dark {
    border-color: var(--surface_active_inverted-enabled);
    background-color: var(--surface_active_inverted-enabled);
    color: var(--text-inverted)
}

.component-tag-clickable-dark:hover {
    background-color: var(--surface_active_inverted-hover);
    border-color: var(--surface_active_inverted-hover);
    cursor: pointer;
    color: var(--text-inverted)
}

.component-tag-clickable-light {
    border-color: var(--border-weak);
    background-color: var(--surface-strong);
    color: var(--text-strong)
}

.component-tag-clickable-light:hover {
    background-color: var(--background-weak);
    cursor: pointer;
    color: var(--text-strong)
}

.component-tag svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    flex-shrink: 0
}

body[dir=rtl] .component-tag-clickable .arrow svg {
    transform: scaleX(-1)
}

.component-tile {
    border-radius: 16px;
    border: 1px solid var(--border-weak);
    padding: 24px;
    text-align: left
}

.component-tile-with-button {
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.component-tile-content {
    display: flex;
    flex-direction: column
}

.component-tile-title {
    margin: 24px 0 8px
}

.component-tile-text {
    color: var(--text-weak);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: .15px
}

.component-tile-text p {
    margin: 0
}

.component-tile .component-icon svg {
    height: 24px;
    width: 24px
}

.component-tile .component-button {
    margin-top: 16px
}

.component-tile-button {
    margin-top: 40px
}

.browser-mobile .component-tile-button,
.component-tile-button-mobile {
    display: none
}

.browser-mobile .component-tile-button-mobile,
.browser-mobile .component-tile-button-show-on-mobile {
    display: inline-block
}

body[dir=rtl] .component-tile {
    text-align: right
}

@media (max-width: 991px) {
    .component-tile {
        display: flex;
        grid-gap: 16px;
        padding: 16px
    }

    .component-tile-with-button {
        grid-gap: 8px
    }

    .component-tile-content {
        display: inline
    }

    .component-tile-content-wrapper {
        display: flex;
        grid-gap: 16px
    }

    .component-tile-title {
        font-size: 16px
    }

    .component-tile .component-button {
        margin-top: 0;
        margin-left: 40px
    }

    body[dir=rtl] .component-tile .component-button {
        margin-left: 0;
        margin-right: 40px
    }
}

@media (max-width: 767px) {
    .component-tile-text {
        font-size: 14px;
        letter-spacing: .1px;
        line-height: 20px
    }
}

.component-title {
    width: fit-content;
    display: flex;
    grid-gap: 8px;
    color: var(--text-strong)
}

.component-title-dark {
    color: var(--text-strong)
}

.component-title-dark .custom-tooltip {
    color: inherit
}

.component-title-light {
    color: var(--text-inverted)
}

.component-title-light .custom-tooltip {
    color: inherit
}

.component-title-icon-m svg,
.component-title-icon-m img {
    width: 24px;
    height: 24px
}

.component-title-icon-s svg,
.component-title-icon-s img {
    width: 16px;
    height: 16px
}

.component-title-xs {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: .15px
}

.component-title-s {
    font-size: 14px;
    font-weight: 700;
    line-height: 20px
}

.component-title-m {
    font-size: 16px;
    font-weight: 700;
    line-height: 24px
}

.component-title-l {
    font-size: 20px;
    font-weight: 700;
    line-height: 28px
}

.component-title-xl {
    font-size: 32px;
    font-weight: 700;
    line-height: 42px
}

.component-title p {
    margin: 0
}

.component-tooltip {
    display: none;
    max-width: 400px;
    background: #4f535a;
    color: #f6f7f8;
    padding: 16px;
    font-size: 14px;
    line-height: 20px;
    border-radius: 4px;
    letter-spacing: .15px;
    grid-gap: 8px;
    z-index: 1002
}

.component-tooltip[data-show] {
    display: flex
}

.component-tooltip-arrow,
.component-tooltip-arrow:before {
    position: absolute;
    width: 24px;
    height: 8px;
    background-color: transparent;
    background-image: url("data:image/svg+xml,%3csvg%20width='25'%20height='8'%20viewBox='0%200%2025%208'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M5.59866%202.24677L9.95065%206.87661C11.3586%208.37446%2013.6414%208.37446%2015.0493%206.87661L19.4013%202.24677C20.7536%200.808183%2022.5876%200%2024.5%200H0.5C2.41237%200%204.24641%200.808183%205.59866%202.24677Z'%20fill='%234F535A'/%3e%3c/svg%3e")
}

.component-tooltip-arrow {
    visibility: hidden
}

.component-tooltip-arrow:before {
    visibility: visible;
    content: "";
    transform: rotate(45deg)
}

.component-tooltip[data-popper-placement^=top]>.component-tooltip-arrow {
    bottom: -8px
}

.component-tooltip[data-popper-placement^=top]>.component-tooltip-arrow:before {
    transform: rotate(0)
}

.component-tooltip[data-popper-placement^=bottom]>.component-tooltip-arrow {
    top: -8px
}

.component-tooltip[data-popper-placement^=bottom]>.component-tooltip-arrow:before {
    transform: rotate(180deg)
}

.component-tooltip[data-popper-placement^=left]>.component-tooltip-arrow {
    right: -8px
}

.component-tooltip[data-popper-placement^=left]>.component-tooltip-arrow:before {
    transform: rotate(90deg)
}

.component-tooltip[data-popper-placement^=right]>.component-tooltip-arrow {
    left: -8px
}

.component-tooltip[data-popper-placement^=right]>.component-tooltip-arrow:before {
    transform: rotate(270deg)
}

.component-tooltip-close {
    width: 32px;
    height: 32px;
    display: none;
    background-image: url("data:image/svg+xml,%3csvg%20width='16'%20height='16'%20viewBox='0%200%2016%2016'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M11.6558%203.47752C11.8983%203.31758%2012.2284%203.34419%2012.4419%203.55759C12.6554%203.77107%2012.6819%204.10116%2012.522%204.34373L12.4419%204.44236L8.88427%207.99998L12.4419%2011.5576L12.522%2011.6562C12.6819%2011.8988%2012.6554%2012.2289%2012.4419%2012.4424C12.2284%2012.6558%2011.8983%2012.6824%2011.6558%2012.5224L11.5571%2012.4424L7.99951%208.88474L4.44189%2012.4424C4.1978%2012.6864%203.80117%2012.6864%203.55712%2012.4424C3.31315%2012.1983%203.31315%2011.8017%203.55712%2011.5576L7.11474%207.99998L3.55712%204.44236L3.47704%204.34373C3.31716%204.1012%203.34374%203.77106%203.55712%203.55759C3.77057%203.34415%204.1007%203.31764%204.34326%203.47752L4.44189%203.55759L7.99951%207.11521L11.5571%203.55759L11.6558%203.47752Z'%20fill='%23F6F7F8'/%3e%3c/svg%3e");
    background-size: 16px 16px;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    right: 4px;
    top: 4px
}

.component-tooltip .component-overlay,
.component-tooltip .component-bottomsheet-heading {
    display: none
}

.component-tooltip p {
    margin: 0
}

.browser-mobile .component-tooltip[data-show] {
    display: grid;
    grid-template-columns: 1fr 20px
}

.browser-mobile .component-tooltip[data-show] .component-tooltip-close {
    display: block
}

.browser-mobile .component-bottomsheet {
    visibility: hidden;
    opacity: 0;
    position: fixed !important;
    inset: unset !important;
    transform: unset !important;
    bottom: 0 !important;
    z-index: 2147483005;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100vh;
    transition: visibility .3s linear, opacity .15s linear
}

.browser-mobile .component-bottomsheet[data-show] {
    visibility: visible;
    transition: visibility .3s linear, opacity .15s linear;
    opacity: 1
}

.browser-mobile .component-bottomsheet[data-show] .component-bottomsheet-wrapper {
    bottom: 0;
    transition: bottom .5s
}

.browser-mobile .component-bottomsheet-close {
    display: block;
    width: 32px;
    height: 32px;
    background-color: #404a640d;
    border-radius: 80px;
    background-image: url("data:image/svg+xml,%3csvg%20width='16'%20height='16'%20viewBox='0%200%2016%2016'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M11.6558%203.47752C11.8983%203.31758%2012.2284%203.34419%2012.4419%203.55759C12.6554%203.77107%2012.6819%204.10116%2012.522%204.34373L12.4419%204.44236L8.88427%207.99998L12.4419%2011.5576L12.522%2011.6562C12.6819%2011.8988%2012.6554%2012.2289%2012.4419%2012.4424C12.2284%2012.6558%2011.8983%2012.6824%2011.6558%2012.5224L11.5571%2012.4424L7.99951%208.88474L4.44189%2012.4424C4.1978%2012.6864%203.80117%2012.6864%203.55712%2012.4424C3.31315%2012.1983%203.31315%2011.8017%203.55712%2011.5576L7.11474%207.99998L3.55712%204.44236L3.47704%204.34373C3.31716%204.1012%203.34374%203.77106%203.55712%203.55759C3.77057%203.34415%204.1007%203.31764%204.34326%203.47752L4.44189%203.55759L7.99951%207.11521L11.5571%203.55759L11.6558%203.47752Z'%20fill='%23111417'/%3e%3c/svg%3e");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 16px
}

.browser-mobile .component-bottomsheet-wrapper {
    bottom: -300px;
    left: 0;
    transition: bottom .5s;
    width: 100vw;
    overflow: scroll;
    position: relative;
    -ms-overflow-style: none;
    scrollbar-width: none
}

.browser-mobile .component-bottomsheet-heading {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0;
    text-align: start;
    padding: 32px 32px 14px;
    background: #fff;
    position: sticky;
    top: 0;
    margin-top: 40vh;
    border-top-right-radius: 24px;
    border-top-left-radius: 24px
}

.browser-mobile .component-bottomsheet-content {
    background: #fff;
    padding: 10px 32px 24px;
    max-width: 100%;
    color: #111417;
    margin: 0;
    box-shadow: none;
    font-size: 16px;
    line-height: 24px;
    text-align: start
}

.browser-mobile .component-bottomsheet-top-blur {
    top: 99%;
    left: 0;
    height: 26px;
    pointer-events: none;
    position: absolute;
    width: 100%;
    background: linear-gradient(0deg, #fff0 3.76%, #fff 96.25%)
}

.browser-mobile .component-bottomsheet-bottom-blur {
    bottom: 0;
    height: 26px;
    pointer-events: none;
    position: absolute;
    width: 100%;
    background: linear-gradient(180deg, #fff0 3.76%, #fff 96.25%)
}

.browser-mobile .component-bottomsheet-footer {
    width: 100%;
    height: 20px;
    position: fixed;
    bottom: 0;
    left: 0;
    background: #fff
}

.browser-mobile .component-bottomsheet p {
    margin: 0
}

.custom-tooltip {
    text-decoration: underline;
    text-decoration-style: dotted;
    text-underline-offset: .3em;
    text-align: initial
}

body[dir=rtl] .component-tooltip-close {
    right: auto;
    left: 4px
}

@media all and (max-width: 450px) {
    .component-tooltip {
        max-width: calc(100% - 24px)
    }
}

.foundations-badge {
    align-items: center;
    border-radius: 32px;
    display: inline-flex;
    font-size: 12px;
    font-weight: 700;
    line-height: 15px;
    letter-spacing: .1px;
    padding: 2px 8px;
    grid-gap: 4px;
    text-align: center
}

.foundations-badge-default {
    background: #404a640d;
    color: #111417
}

.foundations-badge-default-alternative {
    background: #fff;
    color: #111417
}

.foundations-badge-profit {
    background: #08aa54;
    color: #f6f7f8
}

.foundations-badge-loss {
    background: #d2323d;
    color: #f6f7f8
}

.foundations-badge-info {
    background: #2c8dfb12;
    color: #2374d0
}

.foundations-badge-success {
    background: #10bf6612;
    color: #08aa54
}

.foundations-badge-warning {
    background: #ffcf4d1f;
    color: #de830a
}

.foundations-badge-disabled {
    background: #404a640d;
    color: #1a1f2e78
}

.foundations-badge-disabled-inverted {
    background: #d6e1ec40;
    color: #d6e1ec40
}

.foundations-badge-default-inverted {
    background-color: #d6e1ec40;
    color: #f6f7f8
}

.foundations-badge-inverted {
    background-color: #1c2026;
    color: #f6f7f8
}

.foundations-badge svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    flex-shrink: 0
}

.foundations-body {
    color: #131825a8;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: .15px
}

.foundations-body ol:last-child,
.foundations-body p:last-child,
.foundations-body ul:last-child {
    margin-bottom: 0
}

.foundations-body-inverted,
.foundations-body-inverted a,
.foundations-body-inverted a:hover {
    color: #c7c9cc
}

.foundations-body-small {
    font-size: 14px;
    line-height: 20px
}

@media all and (max-width: 991px) {
    .foundations-body {
        font-size: 14px;
        line-height: 20px
    }
}

.foundations-button {
    display: inline-block;
    transition: all .3s;
    border-radius: 8px;
    font-style: normal;
    font-weight: 700;
    text-align: center
}

.foundations-button svg {
    margin-top: -2px;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    transition: inherit
}

.foundations-button-icon {
    white-space: nowrap
}

.foundations-button-text {
    white-space: normal
}

.foundations-button-compact,
.foundations-button-compact-arrow {
    color: #08aa54;
    border-color: transparent;
    text-align: initial
}

.foundations-button-compact:hover,
a:hover .foundations-button-compact,
.foundations-button-compact-arrow:hover,
a:hover .foundations-button-compact-arrow {
    color: #0d7d46
}

.foundations-button-compact-paddings {
    color: var(--text-primary);
    border-color: transparent;
    text-align: initial
}

.foundations-button-compact-paddings:hover,
a:hover .foundations-button-compact-paddings {
    color: #0d7d46
}

.foundations-button-s {
    font-size: 12px;
    line-height: 16px;
    letter-spacing: .1px;
    padding: 8px
}

.foundations-button-m {
    padding: 10px 16px
}

.foundations-button-l {
    padding: 14px 20px
}

.foundations-button-m,
.foundations-button-l {
    font-size: 14px;
    line-height: 20px
}

.foundations-button-m,
.foundations-button-l {
    letter-spacing: .15px
}

.foundations-button-compact.foundations-button-s,
.foundations-button-compact.foundations-button-m,
.foundations-button-compact.foundations-button-l,
.foundations-button-compact-arrow.foundations-button-s,
.foundations-button-compact-arrow.foundations-button-m,
.foundations-button-compact-arrow.foundations-button-l,
.foundations-button-compact-paddings.foundations-button-s,
.foundations-button-compact-paddings.foundations-button-m,
.foundations-button-compact-paddings.foundations-button-l,
.foundations-button-ghost-compact.foundations-button-s,
.foundations-button-ghost-compact.foundations-button-m,
.foundations-button-ghost-compact.foundations-button-l {
    padding: 8px 0
}

.foundations-button-primary:disabled,
.foundations-button-primary[aria-disabled=true],
.foundations-button-secondary:disabled,
.foundations-button-secondary[aria-disabled=true],
.foundations-button-ghost-compact:disabled,
.foundations-button-ghost-compact[aria-disabled=true] {
    pointer-events: none
}

.foundations-button-primary:disabled svg,
.foundations-button-primary[aria-disabled=true] svg,
.foundations-button-secondary:disabled svg,
.foundations-button-secondary[aria-disabled=true] svg,
.foundations-button-ghost-compact:disabled svg,
.foundations-button-ghost-compact[aria-disabled=true] svg {
    fill: #1a1f2e78
}

.foundations-button-primary:disabled,
.foundations-button-primary[aria-disabled=true],
.foundations-button-secondary:disabled,
.foundations-button-secondary[aria-disabled=true] {
    background: #404a640d;
    color: #1a1f2e78
}

.foundations-button-primary {
    color: #f6f7f8;
    background: #08aa54;
    border-color: transparent
}

.foundations-button-primary svg {
    fill: #f6f7f8
}

.foundations-button-primary:hover,
a:hover .foundations-button-primary {
    color: #f6f7f8;
    background: #0d7d46
}

.foundations-button-secondary {
    color: #111417;
    background-color: #404a640d;
    border-color: transparent
}

.foundations-button-secondary svg {
    fill: #111417
}

.foundations-button-secondary:hover,
a:hover .foundations-button-secondary {
    color: #111417;
    background-color: #4e5b7e21
}

.foundations-button-ghost-compact {
    color: #08aa54;
    border-color: transparent
}

.foundations-button-ghost-compact svg {
    fill: #08aa54
}

.foundations-button-ghost-compact:hover,
a:hover .foundations-button-ghost-compact {
    background: transparent;
    color: #0d7d46
}

.foundations-button-ghost-compact:hover svg,
a:hover .foundations-button-ghost-compact svg {
    fill: #0d7d46
}

.foundations-button-ghost-compact:disabled,
.foundations-button-ghost-compact[aria-disabled=true] {
    color: #1a1f2e78
}

.foundations-button.desktop,
.foundations-button.os-ios,
.foundations-button.os-apple,
.foundations-button.os-android,
.foundations-button.os-windows {
    display: none
}

.dark .foundations-button-primary:disabled,
.dark .foundations-button-primary[aria-disabled=true] {
    color: #d6e1ec40;
    background: #dbe2ea2b
}

.dark .foundations-button-primary:disabled svg,
.dark .foundations-button-primary[aria-disabled=true] svg {
    fill: #d6e1ec40
}

.dark .foundations-button-secondary {
    color: #f6f7f8;
    background: #dbe2ea2b
}

.dark .foundations-button-secondary svg {
    fill: #f6f7f8
}

.dark .foundations-button-secondary:hover {
    color: #f6f7f8;
    background: #d7e1eb59
}

.dark .foundations-button-secondary:disabled,
.dark .foundations-button-secondary[aria-disabled=true] {
    color: #d6e1ec40;
    background: #dbe2ea2b
}

.dark .foundations-button-secondary:disabled svg,
.dark .foundations-button-secondary[aria-disabled=true] svg {
    fill: #d6e1ec40
}

.dark .foundations-button-ghost-compact:disabled,
.dark .foundations-button-ghost-compact[aria-disabled=true] {
    color: #d6e1ec40
}

.dark .foundations-button-ghost-compact:disabled svg,
.dark .foundations-button-ghost-compact[aria-disabled=true] svg {
    fill: #d6e1ec40
}

body[dir=rtl] .foundations-button-icon-start-arrow svg,
body[dir=rtl] .foundations-button-icon-end-arrow svg {
    transform: rotate(180deg)
}

.foundations-card-grid {
    display: grid;
    grid-gap: 24px;
    grid-template-columns: 1fr 1fr
}

.foundations-card {
    background: #404a640d;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    position: relative
}

.foundations-card-image-wrapper {
    align-items: flex-end;
    display: flex;
    height: 289px;
    justify-content: flex-end;
    margin-top: auto;
    overflow: hidden;
    width: 100%
}

.foundations-card-image-wrapper svg {
    height: auto;
    max-width: 100%;
    transform-origin: center;
    transition: transform .3s ease
}

.foundations-card-image {
    height: 100%;
    object-fit: contain;
    object-position: right bottom;
    transform-origin: center;
    transition: transform .3s ease;
    width: 100%
}

.foundations-card-heading,
.foundations-card-text {
    align-items: flex-start;
    align-self: stretch;
    display: flex;
    flex-direction: column
}

.foundations-card-heading {
    grid-gap: 24px;
    z-index: 1
}

.foundations-card-text {
    grid-gap: 16px
}

.foundations-card-body {
    max-width: calc(100% - 64px)
}

.foundations-card:has(.foundations-button:hover) .foundations-card-image {
    transform: scale(1.0761)
}

.foundations-card:has(.foundations-button:hover) .foundations-card-image-wrapper svg {
    transform: scale(1.0761)
}

.foundations-card-small {
    flex-direction: column
}

.foundations-card-small-heading {
    padding: 40px 48px 0
}

.foundations-card-big {
    grid-column: 1/span 2;
    min-height: 480px
}

.foundations-card-big-image-wrapper {
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    width: 50%
}

.foundations-card-big-heading {
    justify-content: center;
    padding: 48px
}

.foundations-card-big-text {
    width: 379px
}

.foundations-card-inverted {
    background: #1c2026
}

.foundations-card-inverted .foundations-card-image-wrapper {
    width: 70.594%
}

.foundations-card-inverted .foundations-card-image-wrapper:after {
    background: linear-gradient(90deg, #1c2026 .02%, #1c202600 57.19%);
    content: "";
    display: block;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%
}

.foundations-card-inverted .foundations-card-image {
    object-fit: cover;
    object-position: center
}

body[dir=rtl] .foundations-card-image {
    object-position: left bottom
}

body[dir=rtl] .foundations-card-big-image-wrapper {
    left: 0;
    right: auto
}

body[dir=rtl] .foundations-card-inverted .foundations-card-image-wrapper:after {
    transform: rotate(180deg)
}

body[dir=rtl] .foundations-card-inverted .foundations-card-image {
    object-position: center
}

@media all and (max-width: 991px) {
    .foundations-card-grid {
        grid-gap: 16px;
        grid-template-columns: 1fr
    }

    .foundations-card-heading {
        grid-gap: 12px;
        padding: 32px 32px 16px
    }

    .foundations-card-text {
        grid-gap: 8px;
        width: 100%
    }

    .foundations-card-body {
        max-width: calc(100% - 32px)
    }

    .foundations-card-image-wrapper {
        height: auto;
        max-height: 289px;
        position: static;
        width: 100%
    }

    .foundations-card-big {
        flex-direction: column;
        grid-column: 1;
        height: auto
    }

    .foundations-card-big.foundations-card-inverted {
        flex-direction: column-reverse
    }

    .foundations-card-inverted {
        display: flex;
        flex-direction: column-reverse
    }

    .foundations-card-inverted .foundations-card-image-wrapper {
        width: 100%;
        height: 100%;
        max-height: 100%;
        position: relative
    }

    .foundations-card-inverted .foundations-card-image-wrapper:after {
        background: linear-gradient(0deg, #1c2026 .03%, #1c202600 50.54%)
    }

    .foundations-card-inverted .foundations-card-heading {
        padding-top: 0
    }

    body[dir=rtl] .foundations-card-inverted .foundations-card-image-wrapper:after {
        transform: none
    }
}

@media all and (max-width: 767px) {
    .foundations-card-inverted .foundations-card-heading {
        padding: 0 32px 24px
    }
}

.foundations-ghost {
    display: flex;
    flex-direction: column;
    grid-gap: 24px;
    width: calc(100% - 32px)
}

.foundations-ghost .foundations-body {
    width: calc(100% - 64px)
}

.foundations-ghost-title {
    color: #111417;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: .15px
}

.foundations-ghost-text {
    display: flex;
    flex-direction: column;
    grid-gap: 16px
}

.foundations-ghost-img {
    width: 100%;
    overflow: hidden
}

.foundations-ghost-img img,
.foundations-ghost-img svg {
    max-height: 128px;
    width: auto
}

.foundations-ghost-icon svg {
    height: 48px;
    width: 48px
}

.foundations-ghost-top {
    align-items: center;
    color: #131825a8;
    display: flex;
    font-size: 14px;
    grid-gap: 8px;
    letter-spacing: .15px;
    line-height: 20px
}

.foundations-ghost-top-logos {
    display: flex;
    grid-gap: 4px;
    background: #f6f7f8;
    border-radius: 8px;
    height: 32px;
    width: 32px
}

.foundations-ghost-top-logos img {
    border-radius: 8px
}

.foundations-ghost-small,
.foundations-ghost-small-text {
    grid-gap: 12px
}

.foundations-ghost-small-icon svg {
    height: 40px;
    width: 40px
}

.foundations-ghost-news:hover .foundations-button-dummy {
    color: #0d7d46
}

@media all and (max-width: 991px) {
    .foundations-ghost {
        grid-gap: 12px
    }

    .foundations-ghost-text {
        grid-gap: 8px
    }

    .foundations-ghost-small-text {
        grid-gap: 12px
    }
}

.foundations-heading {
    font-family: XTB Sans, Arial, Segoe UI, Helvetica Neue, -apple-system, system-ui, sans-serif;
    font-weight: 600;
    margin: 0;
    max-width: 100%;
    word-break: break-word
}

.foundations-heading-default {
    color: #111417
}

.foundations-heading-inverted {
    color: #f6f7f8
}

.foundations-heading-xxxl {
    font-size: 72px;
    line-height: 74px
}

.foundations-heading-xxl,
.foundations-heading-xxl-xl {
    font-size: 48px;
    line-height: 50px
}

.foundations-heading-xl,
.foundations-heading-xl-l {
    font-size: 32px;
    line-height: 36px
}

.foundations-heading-l {
    font-size: 24px;
    line-height: 28px
}

.foundations-heading-m {
    font-size: 20px;
    line-height: 26px
}

.foundations-heading-s {
    font-size: 16px;
    line-height: 22px
}

.foundations-heading-light {
    color: #f6f7f8
}

.foundations-heading-dark {
    color: #111417
}

.dark .foundations-heading-default {
    color: #f6f7f8
}

.dark .foundations-heading-inverted {
    color: #111417
}

@media all and (max-width: 991px) {
    .foundations-heading-xl-l {
        font-size: 24px;
        line-height: 28px
    }

    .foundations-heading-xxl-xl {
        font-size: 32px;
        line-height: 36px
    }
}

.foundations-module {
    margin: 120px 0
}

.foundations-module-heading {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    grid-gap: 16px;
    margin: 0 0 48px;
    max-width: 524px
}

.foundations-module-heading .foundations-body {
    max-width: calc(100% - 64px)
}

.foundations-module-heading-centered {
    align-items: center;
    text-align: center;
    margin: 0 auto 48px;
    max-width: 700px
}

.foundations-module-heading-centered .foundations-body {
    max-width: calc(100% - 128px)
}

.foundations-module-heading-side {
    margin: 0;
    max-width: calc(100% - 121px)
}

.foundations-module-heading-big-margin {
    margin-bottom: 72px
}

.foundations-module-additional-info {
    color: #1a1f2e78;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: .15px;
    max-width: 678px;
    margin: 40px 0 0
}

.foundations-module-additional-info p,
.foundations-module-additional-info li,
.foundations-module-additional-info ul {
    margin-bottom: 8px
}

.foundations-module-additional-info p:last-child,
.foundations-module-additional-info li:last-child,
.foundations-module-additional-info ul:last-child {
    margin-bottom: 0
}

.foundations-module-bottom-button {
    margin: 40px 0 0
}

.foundations-module-top-button {
    margin: 8px 0 0
}

.foundations-grid-2 {
    display: grid;
    grid-row-gap: 40px;
    grid-template-columns: 1fr 1fr
}

.foundations-grid-3 {
    display: grid;
    grid-column-gap: 24px;
    grid-row-gap: 56px;
    grid-template-columns: 1fr 1fr 1fr
}

@media all and (max-width: 991px) {
    .foundations-module {
        margin: 80px 0;
        padding: 0 72px
    }

    .foundations-module-heading {
        max-width: none;
        margin-bottom: 40px
    }

    .foundations-module-heading-side {
        margin: 0;
        max-width: none
    }

    .foundations-module-heading-mobile-centered {
        align-items: center;
        text-align: center
    }

    .foundations-module-heading-side-mobile {
        align-items: flex-start;
        text-align: initial
    }

    .foundations-module-additional-info {
        font-size: 14px;
        line-height: 20px
    }

    .foundations-grid-3,
    .foundations-grid-2 {
        grid-row-gap: 40px;
        grid-template-columns: 1fr
    }
}

@media all and (max-width: 767px) {
    .foundations-module {
        padding: 0
    }
}

.foundations-tabs-wrapper {
    position: relative
}

.foundations-tabs,
.foundations-chips {
    display: flex;
    align-items: center;
    white-space: nowrap;
    overflow: scroll;
    padding: 2px;
    -ms-overflow-style: none;
    scrollbar-width: none
}

.foundations-tabs :focus-visible,
.foundations-chips :focus-visible {
    outline: 2px solid #08aa54;
    box-shadow: none
}

.foundations-tabs::-webkit-scrollbar,
.foundations-chips::-webkit-scrollbar {
    display: none
}

.foundations-tabs {
    margin-bottom: 24px
}

.foundations-tabs-center {
    max-width: 558px;
    display: flex;
    justify-content: center;
    margin-right: auto;
    margin-left: auto
}

.foundations-tabs-arrow {
    display: none
}

.foundations-tabs-scrollable .foundations-tabs-arrow {
    display: inline;
    width: 80px;
    height: 44px;
    position: absolute;
    pointer-events: none;
    top: 0;
    z-index: 2
}

.foundations-tabs-scrollable .foundations-tabs-arrow.arrow-right {
    background: linear-gradient(270deg, #fff 43.75%, #fff0);
    right: 0
}

.foundations-tabs-scrollable .foundations-tabs-arrow.arrow-right svg {
    transform: rotate(270deg);
    position: absolute;
    width: 32px;
    height: 32px;
    padding: 11px 7px;
    cursor: pointer;
    pointer-events: visible;
    right: 0;
    top: 6px;
    border-radius: 8px
}

.foundations-tabs-scrollable .foundations-tabs-arrow.arrow-right svg:hover {
    background-color: #404a640d
}

.foundations-tabs-scrollable .foundations-tabs-arrow.arrow-left {
    background: linear-gradient(90deg, #fff 43.75%, #fff0);
    left: 0
}

.foundations-tabs-scrollable .foundations-tabs-arrow.arrow-left svg {
    transform: rotate(90deg);
    position: absolute;
    width: 32px;
    height: 32px;
    padding: 11px 7px;
    cursor: pointer;
    pointer-events: visible;
    left: 0;
    top: 6px;
    border-radius: 8px
}

.foundations-tabs-scrollable .foundations-tabs-arrow.arrow-left svg:hover {
    background-color: #404a640d
}

.inverted .foundations-tabs-scrollable .foundations-tabs-arrow.arrow-right {
    background: linear-gradient(270deg, #0f1215 43.75%, #fff0)
}

.inverted .foundations-tabs-scrollable .foundations-tabs-arrow.arrow-right svg path {
    fill: #c7c9cc
}

.inverted .foundations-tabs-scrollable .foundations-tabs-arrow.arrow-left {
    background: linear-gradient(90deg, #0f1215 43.75%, #fff0)
}

.inverted .foundations-tabs-scrollable .foundations-tabs-arrow.arrow-left svg path {
    fill: #c7c9cc
}

.foundations-tab,
.foundations-chip {
    align-items: center;
    display: flex;
    font-size: 14px;
    grid-gap: 4px;
    justify-content: center;
    line-height: 20px;
    letter-spacing: .15px;
    white-space: nowrap
}

.foundations-tab.active,
.foundations-tab.disabled,
.foundations-chip.active,
.foundations-chip.disabled {
    cursor: default
}

.foundations-tab.disabled,
.foundations-chip.disabled {
    pointer-events: none;
    color: #1a1f2e78
}

.foundations-tab:focus-visible,
.foundations-chip:focus-visible {
    z-index: 1
}

.foundations-tab {
    border-bottom: 1px solid rgba(78, 91, 126, .13);
    padding: 4px 8px;
    color: #131825a8;
    transition: border-bottom-color .3s
}

.foundations-tab-inner {
    align-items: center;
    border-radius: 8px;
    display: flex;
    grid-gap: 8px;
    justify-content: center;
    padding: 8px;
    transition: background-color .3s, color .3s
}

.foundations-tab:hover .foundations-tab-inner {
    background-color: #404a640d
}

.foundations-tab.active:hover .foundations-tab-inner,
.foundations-tab.disabled:hover .foundations-tab-inner {
    background-color: transparent
}

.foundations-tab.active {
    border-bottom-color: #111417;
    position: relative
}

.foundations-tab.active .foundations-tab-inner {
    color: #111417;
    font-weight: 700
}

.foundations-tab-content {
    display: none
}

.foundations-tab-content.active {
    display: block
}

.foundations-chips {
    grid-gap: 8px
}

.foundations-chip {
    border-radius: 80px;
    border: 1px solid rgba(78, 91, 126, .13);
    color: #111417;
    min-height: 40px;
    padding: 2px 16px;
    transition: background-color .3s
}

.foundations-chip:hover {
    background-color: #404a640d
}

.foundations-chip.active {
    border-color: #08aa54;
    background-color: #10bf6612
}

.foundations-tab-inverted.foundations-tab {
    border-color: #dbe2ea2b;
    color: #c7c9cc
}

.foundations-tab-inverted.foundations-tab:hover .foundations-tab-inner {
    background-color: #d6e1ec40
}

.foundations-tab-inverted.foundations-tab.active:hover .foundations-tab-inner,
.foundations-tab-inverted.foundations-tab.disabled:hover .foundations-tab-inner {
    background-color: transparent
}

.foundations-tab-inverted.foundations-tab.active {
    border-bottom-color: #f6f7f8
}

.foundations-tab-inverted.foundations-tab.active .foundations-tab-inner {
    color: #f6f7f8
}

.foundations-tab-inverted.foundations-tab.disabled {
    color: #d6e1ec40
}

.foundations-chip-inverted.foundations-chip {
    border-color: #dbe2ea2b;
    color: #f6f7f8
}

.foundations-chip-inverted:hover {
    background-color: #10bf661a
}

.foundations-chip-inverted.active {
    border-color: #08aa54
}

.foundations-tabs-wrapper-element {
    overflow: hidden;
    margin: -4px -16px 4px;
    padding: 4px 0;
    position: relative;
    scrollbar-width: none;
    white-space: nowrap;
    -ms-overflow-style: none
}

.foundations-tabs-wrapper-element::-webkit-scrollbar {
    display: none
}

.foundations-tabs-horizontal-overlay {
    display: flex;
    justify-content: space-between;
    position: absolute;
    width: 100%;
    height: calc(100% - 8px);
    pointer-events: none;
    padding: 0 16px
}

.foundations-tabs-chevron-wrapper {
    display: flex;
    align-items: center;
    pointer-events: none;
    transition: .3s;
    z-index: 1
}

.foundations-tabs-chevron-wrapper-left {
    background: linear-gradient(90deg, #fff 44.71%, #fff0);
    padding: 0 48px 0 16px;
    opacity: 0
}

.foundations-tabs-chevron-wrapper-left.visible {
    margin-left: -16px;
    opacity: 1
}

.foundations-tabs-chevron-wrapper-right {
    background: linear-gradient(270deg, #fff 44.71%, #fff0);
    padding: 0 16px 0 48px;
    opacity: 0
}

.foundations-tabs-chevron-wrapper-right.visible {
    margin-right: -16px;
    opacity: 1
}

.foundations-tabs-chevron {
    border-radius: 8px;
    cursor: pointer;
    padding: 11px 7px;
    pointer-events: all;
    color: #111417;
    transform: rotate(270deg)
}

.foundations-tabs-chevron:hover {
    background-color: #404a640d
}

.foundations-tabs-chevron-left {
    transform: rotate(90deg)
}

.foundations-tabs-chevron svg {
    display: block
}

.foundations-bars-wrapper {
    height: 0;
    margin: -4px -16px;
    overflow: hidden;
    padding: 4px 0;
    position: relative;
    transition: height .3s
}

.foundations-bars-wrapper .foundations-tabs-horizontal-overlay {
    display: none;
    height: 100%
}

.foundations-bars-wrapper.active {
    height: 56px
}

.foundations-bars-wrapper.active .foundations-tabs-horizontal-overlay {
    display: flex
}

body[dir=rtl] .foundations-tabs-chevron-wrapper {
    transform: rotate(180deg)
}

body[dir=rtl] .foundations-tabs-chevron-wrapper-left {
    margin-right: -80px;
    margin-left: 0
}

body[dir=rtl] .foundations-tabs-chevron-wrapper-left.visible {
    margin-right: -16px
}

body[dir=rtl] .foundations-tabs-chevron-wrapper-right {
    margin-right: 0;
    margin-left: -80px
}

body[dir=rtl] .foundations-tabs-chevron-wrapper-right.visible {
    margin-left: -16px
}

@media all and (max-width: 991px) {
    .foundations-tabs {
        padding-right: .75rem;
        padding-left: .75rem
    }

    .foundations-tabs-scrollable .foundations-tabs-arrow {
        width: 50px
    }

    .foundations-tabs-scrollable .foundations-tabs-arrow.arrow-right {
        background: linear-gradient(270deg, #fff 23.75%, #fff0)
    }

    .foundations-tabs-scrollable .foundations-tabs-arrow.arrow-right svg {
        display: none
    }

    .foundations-tabs-scrollable .foundations-tabs-arrow.arrow-left {
        background: linear-gradient(90deg, #fff 23.75%, #fff0)
    }

    .foundations-tabs-scrollable .foundations-tabs-arrow.arrow-left svg {
        display: none
    }

    .foundations-tabs-horizontal-overlay {
        display: none
    }

    .foundations-tabs-wrapper-element,
    .foundations-bars-wrapper {
        flex-shrink: 0;
        margin-left: -84px;
        margin-right: -84px
    }

    .foundations-bars-wrapper.active .foundations-tabs-horizontal-overlay {
        display: none
    }
}

@media all and (max-width: 767px) {

    .foundations-tabs-wrapper-element,
    .foundations-bars-wrapper {
        margin-left: -12px;
        margin-right: -12px
    }
}

.foundations-title {
    width: fit-content;
    display: flex;
    grid-gap: 8px;
    color: #111417
}

.foundations-title-m {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .15px;
    line-height: 20px
}

.foundations-title p {
    margin: 0
}

.foundations-article-box {
    border-radius: 16px;
    text-align: left;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    height: 337px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-end;
    row-gap: 4px
}

.foundations-article-box.loading {
    pointer-events: none;
    background: none
}

.foundations-article-box.loading .foundations-article-box-reading-time {
    color: transparent
}

.foundations-article-box.loading .foundations-article-box-content {
    background: none
}

.foundations-article-box-image {
    border-radius: 8px;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.foundations-article-box-image-wrapper {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
    transition: .3s
}

.foundations-article-box-content {
    padding: 40px 24px 18px;
    background: linear-gradient(359.93deg, #1c2026 60%, #1c202600);
    width: 100%
}

.foundations-article-box-text,
.foundations-article-box-reading-time {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: .1px;
    color: #c7c9cc;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    grid-gap: 8px
}

.foundations-article-box-text {
    min-height: 24px
}

.foundations-article-box-reading-time {
    min-height: 20px
}

.foundations-article-box-lock svg {
    margin-top: -2px
}

.foundations-article-box-title {
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: .15px;
    vertical-align: middle;
    text-align: start;
    color: #f6f7f8;
    margin-bottom: 0;
    max-width: 100%;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden
}

.loading>.foundations-article-box-image-wrapper:before,
.loading>.foundations-article-box-image-wrapper:after,
.loading>.foundations-article-box-text:before,
.loading>.foundations-article-box-text:after,
.loading>.foundations-article-box-title:before,
.loading>.foundations-article-box-title:after,
.loading>.foundations-article-box-reading-time:before,
.loading>.foundations-article-box-reading-time:after,
.loading>.foundations-article-box-button-wrapper:before,
.loading>.foundations-article-box-button-wrapper:after {
    display: block;
    content: " ";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%
}

.loading>.foundations-article-box-image-wrapper:before,
.loading>.foundations-article-box-text:before,
.loading>.foundations-article-box-title:before,
.loading>.foundations-article-box-reading-time:before,
.loading>.foundations-article-box-button-wrapper:before {
    background: #fff
}

.loading>.foundations-article-box-image-wrapper:after,
.loading>.foundations-article-box-text:after,
.loading>.foundations-article-box-title:after,
.loading>.foundations-article-box-reading-time:after,
.loading>.foundations-article-box-button-wrapper:after {
    animation: 1.5s shine linear infinite;
    background: linear-gradient(90deg, #f0f0f0 -145%, #fff 307.5%);
    background-size: 200% 100%;
    border-radius: 4px
}

.foundations-article-box:hover .foundations-article-box-image-wrapper {
    width: 110%;
    height: 110%
}

.foundations-article-box body[dir=rtl] .foundations-article-box {
    text-align: right
}

@keyframes shine {
    to {
        background-position-x: -200%
    }
}

@media all and (max-width: 991px) {
    .foundations-article-box {
        height: 297px
    }
}

.foundations-input {
    border: none;
    border-radius: 8px;
    color: #131825a8;
    font-size: 14px;
    letter-spacing: .15px;
    line-height: 20px;
    margin: 0 0 4px;
    padding: 18px;
    width: 100%
}

.foundations-input-with-icon {
    background: #404a640d url("data:image/svg+xml,%3csvg%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M16.7192%2016.7197C17.012%2016.4268%2017.4869%2016.4268%2017.7798%2016.7196L21.5302%2020.4696C21.8231%2020.7625%2021.8231%2021.2374%2021.5302%2021.5303C21.2374%2021.8232%2020.7625%2021.8232%2020.4696%2021.5304L16.7192%2017.7804C16.4263%2017.4875%2016.4263%2017.0126%2016.7192%2016.7197Z'%20fill='%2318181E'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M11%2018.5C15.1421%2018.5%2018.5%2015.1421%2018.5%2011C18.5%206.85786%2015.1421%203.5%2011%203.5C6.85786%203.5%203.5%206.85786%203.5%2011C3.5%2015.1421%206.85786%2018.5%2011%2018.5ZM11%2020C15.9706%2020%2020%2015.9706%2020%2011C20%206.02944%2015.9706%202%2011%202C6.02944%202%202%206.02944%202%2011C2%2015.9706%206.02944%2020%2011%2020Z'%20fill='%2318181E'/%3e%3c/svg%3e") no-repeat 24px 20px;
    background-size: 16px;
    padding: 18px 24px 18px 48px
}

.foundations-input:hover {
    background-color: #4e5b7e21
}

.foundations-input:focus {
    border: 2px solid #000000;
    margin-bottom: 2px;
    margin-top: -2px
}

body[dir=rtl] .foundations-input-with-icon {
    padding: 18px 48px 18px 24px;
    background-position: bottom 20px right 20px
}