@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");.dashboard-navbar {
    background-color: #fff
}

.dashboard-container {
    background-color: #efefef;
    height: 100dvh;
    padding-bottom: 20px;
    overflow-y: auto
}

.dashboard-layout {
    display: flex;
    width: 100%;
    font-family: Poppins,sans-serif
}

.dashboard-container {
    width: 100%
}

.logo-box {
    background-color: #1f68ca;
    width: 40px;
    height: 40px;
    border-radius: 7px;
    display: grid;
    place-content: center
}

.sidebar {
    height: 100vh;
    overflow: auto;
    animation: all 2s ease-in-out
}

.sidebar .nav-item {
    font-size: 15px
}

.sidebar .nav-link.active {
    background-color: #1a963f!important
}

.sidebar .nav-link:hover {
    background-color: #167f35!important
}

.sidebar .nav-item a {
    display: flex;
    align-items: center;
    gap: 10px
}

@media (max-width: 768px) {
    .sidebar {
        width:auto;
        position: fixed;
        z-index: 999;
        height: 100dvh;
        overflow-y: auto
    }

    .sidebar .nav-link span {
        display: none
    }

    .sidebar.collapsed {
        width: 0!important;
        overflow: hidden;
        padding: 0!important
    }
}

.toggle-sidebar-btn {
    position: fixed;
    top: 50%;
    left: -5px;
    z-index: 1000;
    opacity: .7;
    border: none;
    background-color: transparent
}

@media (min-width: 769px) {
    .toggle-sidebar-btn {
        display:none
    }
}

.dashboard-navbar .nav-item:hover {
    border-radius: 5px;
    background-color: #1fca58!important
}

.dashboard-navbar .nav-item a:hover {
    color: #fff!important
}

.dashboard-layout .navbar {
    justify-content: end!important
}

.dashboard-layout .navbar-main {
    padding: 35px 25px
}

.dashboard-container .navbar {
    background-color: #212529!important
}

.dashboard-container table {
    font-size: small
}

.profile-nav-section {
    display: flex;
    background: #f4f4f4;
    box-shadow: 0 0 3px rgba(0,0,0,.2)
}

.profile-nav-section div {
    padding: 6px;
    border-radius: 6px;
    cursor: pointer
}

.profile-nav-section .active {
    color: #fff;
    background-color: #198754;
    box-shadow: 0 0 5px rgba(0,0,0,.2)
}

.profile-nav-section div:hover {
    background-color: #0f8654;
    color: #fff
}

.rank-container .rank {
    padding: 4px;
    border-radius: 7px;
    font-size: small
}

.rank-container span.newcomer {
    background-color: #c0c7cf;
    color: #333;
    border: 2px solid #333
}

.rank-container span.vip {
    background-color: #9face4;
    color: #2046de;
    border: 2px solid #0527af
}

.rank-container span.gold {
    background-color: #f1eabb;
    color: #b8860b;
    border: 2px solid #c8aa02
}

.rank-container span.king {
    background-color: #f3e5f5;
    color: #7b1fa2;
    font-weight: 700;
    border: 2px solid #7b1fa2;
    box-shadow: 0 0 15px rgba(123,31,162,.6)
}

.stats-container {
    justify-content: space-around;
    margin: 20px auto;
    flex-wrap: wrap;
    background-color: #e9f0e8;
    box-shadow: 0 2px 4px rgba(0,0,0,.1)
}

.stat-item,.stats-container {
    display: flex;
    padding: 20px;
    gap: 10px;
    border-radius: 8px
}

.stat-item {
    text-align: center;
    flex: 1 1;
    background-color: #fff;
    justify-content: center;
    min-width: 120px;
    border: 1px solid #ddd;
    transition: transform .3s,box-shadow .3s
}

.stat-item div span {
    font-size: 15px;
    color: grey
}

.stat-icon {
    font-size: x-large;
    color: #000
}

.stat-item h2 {
    font-size: 23px;
    margin-bottom: 10px
}

.stat-item p {
    font-size: 24px;
    font-weight: 700;
    color: #007bff
}

.stat-item.income {
    box-shadow: inset 1px 1px 6px #28a745
}

.stat-item.stock {
    box-shadow: inset 1px 1px 6px #17a2b8
}

.stat-item.sold {
    box-shadow: inset 1px 1px 6px #ffc107
}

.stat-item.refunded {
    box-shadow: inset 1px 1px 6px #dc3545
}

.withdraw-reject-reason {
    max-width: 200px;
    max-height: 100px;
    overflow: auto
}

body {
    background-color: #f8fff7
}

.text-red {
    color: red
}

.text-green {
    color: green
}

.text-blue {
    color: blue
}

.semi-bold {
    font-weight: 600
}

.mt-50 {
    margin-top: 50px
}

.mt-100 {
    margin-top: 100px
}

.c-gray {
    background-color: #f8fff7
}

.w-max-content {
    width: max-content
}

.custom-container {
    margin-left: 3%;
    margin-right: 3%;
    width: 94%
}

.container-center-page {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center
}

.cursor-pointer {
    cursor: pointer
}

.text-gray-700 {
    color: #374151
}

.text-gray-600 {
    color: #4b5563
}

.text-sm {
    font-size: small
}

.custom-input-group {
    display: flex;
    align-items: center;
    justify-content: center
}

.custom-input-group>div {
    flex: 1 1
}

.select-country button {
    border: none;
    padding: 0
}

.select-country button span {
    padding: 0;
    margin: 0
}

.c-grey {
    color: #545454
}

.bg-grey {
    background-color: #d8d8d8ee
}

.secondary-navbar {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: -moz-fit-content;
    width: fit-content;
    margin: 8px auto auto;
    gap: 10px;
    border-radius: 10px;
    padding: 3px 10px
}

.secondary-navbar button {
    background-color: #d8d8d8;
    box-shadow: 1px 1px 4px #000000b0
}

.secondary-navbar button.active {
    background-color: #108a00;
    color: #fff
}

.navbar-main {
    color: #fff
}

@keyframes slideDown {
    0% {
        transform: translateY(-100%);
        opacity: 0
    }

    to {
        transform: translateY(0);
        opacity: 1
    }
}

.floating-notification {
    position: static;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg,rgba(0,0,0,.3),rgba(0,0,0,.7));
    color: #fff;
    text-align: center;
    padding: 10px 20px;
    z-index: 1000;
    max-width: 100%;
    margin: auto;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,.2);
    animation: slideDown 1s ease-in-out
}

.floating-notification button {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: #fff;
    padding: 0 15px;
    transition: color .3s ease
}

.floating-notification button:hover {
    color: #ff5c5c
}

.authpage h2 {
    margin: 0;
    text-align: center
}

.authpage p {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: .5px;
    margin: 20px 0 30px
}

.autocomplete-dropdown-container>* {
    padding: 10px
}

.authpage span {
    font-size: 12px
}

.authpage a {
    color: #333;
    font-size: 14px;
    text-decoration: none;
    margin: 15px 0
}

.btn {
    box-shadow: 0 4px 6px rgba(0,0,0,.1);
    font-size: 11px;
    font-weight: 700;
    padding: 8px 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: transform 80ms ease-in
}

.btn,.btn-main,.btn:hover {
    color: #fff
}

.btn-main {
    border: none;
    background-color: #108a00
}

.btn-outline-main {
    color: #fff;
    border: 1px solid #108a00
}

.sm-btn {
    font-size: xx-small;
    padding: 5px 11px
}

.btn:active {
    transform: scale(.95)
}

.btn-main:hover,.btn-outline-main:hover {
    background-color: #108a00
}

.btn-copy {
    background-color: #007bff
}

.btn-copy:hover {
    background-color: #0169d8
}

.btn-main:focus {
    box-shadow: none;
    outline: none!important
}

.btn-good {
    position: relative;
    font-family: inherit;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: .05em;
    border-radius: .8em;
    cursor: pointer;
    border: none;
    background: linear-gradient(90deg,#108a00,#55e642);
    color: #f8f8ff;
    overflow: hidden
}

.btn-good svg {
    width: 1.2em;
    height: 1.2em;
    margin-right: .5em
}

.btn-good span {
    position: relative;
    transition: color .4s;
    display: inline-flex;
    align-items: center;
    padding: .4em .6em .4em .525em
}

.btn-good:after,.btn-good:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0
}

.btn-good:before {
    content: "";
    background: #000;
    width: 120%;
    left: -10%;
    transform: skew(30deg);
    transition: transform .4s cubic-bezier(.3,1,.8,1)
}

.btn-good:hover:before {
    transform: translate3d(100%,0,0)
}

.btn-good:active {
    transform: scale(.95)
}

button.ghost {
    background-color: transparent;
    border-color: #fff;
    box-shadow: 1px 1px 9px 0 #1f1f1f
}

.auth-form {
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 50px;
    height: 100%;
    text-align: center
}

.auth-form input,.auth-form textarea {
    background-color: #eee;
    border: none;
    padding: 12px 15px;
    margin: 8px 0;
    width: 100%
}

.authcontainer {
    width: 768px;
    max-width: 100%;
    min-height: 550px
}

.authcontainer,.protectcontainer {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 14px 28px rgba(0,0,0,.25),0 10px 10px rgba(0,0,0,.22);
    position: relative;
    overflow: hidden;
    margin: auto
}

.protectcontainer {
    width: 96%;
    max-width: 40rem;
    min-height: 250px;
    font-size: large
}

.protectcontainer .card-body {
    padding: 2rem
}

.form-container {
    position: absolute;
    top: 0;
    height: 100%;
    transition: all .6s ease-in-out;
    color: #000
}

.sign-in-container {
    left: 0;
    width: 50%;
    z-index: 2
}

.authcontainer.right-panel-active .sign-in-container {
    transform: translateX(100%)
}

.sign-up-container {
    left: 0;
    width: 50%;
    opacity: 0;
    z-index: 1
}

.authcontainer.right-panel-active .sign-up-container {
    transform: translateX(100%);
    opacity: 1;
    z-index: 5;
    animation: show .6s
}

.error {
    color: red
}

.usernamestatus {
    width: 100%;
    display: block;
    text-align: left;
    margin: auto;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eee
}

.usernametaken {
    padding: 12px 16px;
    color: red
}

.usernameAvailable {
    padding: 12px 16px;
    color: green
}

@keyframes show {
    0%,49.99% {
        opacity: 0;
        z-index: 1
    }

    50%,to {
        opacity: 1;
        z-index: 5
    }
}

.overlay-container {
    position: absolute;
    top: 0;
    left: 50%;
    width: 50%;
    height: 100%;
    overflow: hidden;
    transition: transform .6s ease-in-out;
    z-index: 100
}

.authcontainer.right-panel-active .overlay-container {
    transform: translateX(-100%)
}

.overlay {
    background: #108a00;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 0 0;
    position: relative;
    left: -100%;
    height: 100%;
    width: 200%;
    transform: translateX(0);
    transition: transform .6s ease-in-out
}

.overlay,.overlay-panel h1,.overlay-panel h2 {
    color: #fff!important
}

.authcontainer.right-panel-active .overlay {
    transform: translateX(50%)
}

.overlay-panel {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 40px;
    text-align: center;
    top: 0;
    height: 100%;
    width: 50%;
    transform: translateX(0);
    transition: transform .6s ease-in-out
}

.overlay-left {
    transform: translateX(-20%)
}

.authcontainer.right-panel-active .overlay-left,.overlay-right {
    transform: translateX(0)
}

.overlay-right {
    right: 0
}

.authcontainer.right-panel-active .overlay-right {
    transform: translateX(20%)
}

.social-container {
    margin: 20px 0
}

.social-container a {
    border: 1px solid #ddd;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 0 5px;
    height: 40px;
    width: 40px
}

@media (max-width: 1000px) {
    .overlay-container {
        display:none!important
    }

    .sign-in-container,.sign-up-container {
        width: 100%
    }

    .authcontainer {
        padding: 0 4%;
        width: 94vw!important;
        max-width: 800px!important
    }

    .auth-form {
        padding: 0 4%
    }

    .activeMobile {
        z-index: 1;
        opacity: 1
    }

    .notactiveMobile {
        z-index: 0;
        opacity: 0
    }

    .mobileactiveotp .sign-in-container,.mobileactiveotp .sign-up-container {
        transform: translateX(0)!important
    }

    .auth-form {
        padding: 0 30px
    }
}

@media (max-width: 400px) {
    .auth-form {
        padding:0 10px
    }
}

.loadercontainer {
    min-height: 80vh
}

.loadercontainer,.sm-loadercontainer {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%
}

.sm-loadercontainer {
    min-height: 50px!important
}

.lds-ring {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px
}

.sm-lds-ring {
    width: 50px;
    height: 50px
}

.lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 64px;
    height: 64px;
    margin: 8px;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(.5,0,.5,1) infinite;
    border: 4px solid transparent;
    border-top-color: #000
}

.sm-lds-ring div {
    width: 37.5px;
    height: 37.5px
}

.lds-ring div:first-child {
    animation-delay: -.45s
}

.lds-ring div:nth-child(2) {
    animation-delay: -.3s
}

.lds-ring div:nth-child(3) {
    animation-delay: -.15s
}

@keyframes lds-ring {
    0% {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(1turn)
    }
}

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: hsla(0,0%,100%,.4);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999
}

.loader {
    border: 5px solid #f3f3f3;
    border-top-color: #3fe915;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite
}

@keyframes spin {
    0% {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(1turn)
    }
}

.lineloader {
    display: block;
    position: relative;
    height: 12px;
    width: 200px;
    border: 1px solid #000;
    border-radius: 10px;
    overflow: hidden
}

.lineloader:after {
    content: "";
    width: 40%;
    height: 100%;
    background: #ff3d00;
    position: absolute;
    top: 0;
    left: 0;
    box-sizing: border-box;
    animation: animlineloader 2s linear infinite
}

@keyframes animlineloader {
    0% {
        left: 0;
        transform: translateX(-100%)
    }

    to {
        left: 100%;
        transform: translateX(0)
    }
}

.iosspinner div.spinner {
    position: relative;
    width: 60px;
    height: 60px;
    display: inline-block;
    margin-left: 50%;
    margin-right: 50%;
    background: #6bf859;
    padding: 10px;
    border-radius: 10px
}

.iosspinner div.spinner div {
    width: 6%;
    height: 16%;
    background: #fff;
    position: absolute;
    left: 49%;
    top: 43%;
    opacity: 0;
    border-radius: 50px;
    box-shadow: 0 0 3px rgba(0,0,0,.2);
    animation: fade 1s linear infinite
}

@keyframes fade {
    0% {
        opacity: 1
    }

    to {
        opacity: .25
    }
}

div.spinner div.bar1 {
    transform: rotate(0deg) translateY(-130%);
    animation-delay: 0s
}

div.spinner div.bar2 {
    transform: rotate(30deg) translateY(-130%);
    animation-delay: -.9167s
}

div.spinner div.bar3 {
    transform: rotate(60deg) translateY(-130%);
    animation-delay: -.833s
}

div.spinner div.bar4 {
    transform: rotate(90deg) translateY(-130%);
    animation-delay: -.7497s
}

div.spinner div.bar5 {
    transform: rotate(120deg) translateY(-130%);
    animation-delay: -.667s
}

div.spinner div.bar6 {
    transform: rotate(150deg) translateY(-130%);
    animation-delay: -.5837s
}

div.spinner div.bar7 {
    transform: rotate(180deg) translateY(-130%);
    animation-delay: -.5s
}

div.spinner div.bar8 {
    transform: rotate(210deg) translateY(-130%);
    animation-delay: -.4167s
}

div.spinner div.bar9 {
    transform: rotate(240deg) translateY(-130%);
    animation-delay: -.333s
}

div.spinner div.bar10 {
    transform: rotate(270deg) translateY(-130%);
    animation-delay: -.2497s
}

div.spinner div.bar11 {
    transform: rotate(300deg) translateY(-130%);
    animation-delay: -.167s
}

div.spinner div.bar12 {
    transform: rotate(330deg) translateY(-130%);
    animation-delay: -.0833s
}

.footer {
    background-color: #e9f0e8
}

.footer .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap
}

.footer .company-info {
    flex: 1 1;
    padding: 12px
}

.footer .company-logo {
    width: 100px;
    height: auto
}

.footer .company-name {
    margin-top: 10px;
    font-size: 1.2rem
}

.footer .company-description {
    margin-top: 10px;
    font-size: .9rem
}

.footer .footer-info {
    text-align: center;
    max-width: 70rem;
    margin: auto;
    padding: 15px
}

.footer .social-media {
    margin-top: 10px
}

.footer .social-media img {
    width: 30px;
    height: auto;
    margin-right: 10px
}

.footer .contact-info p {
    margin: 5px 0;
    font-size: .9rem
}

.footer .copyright {
    margin-top: 20px;
    color: #676666;
    font-size: .8rem
}

.footer-end {
    display: flex;
    align-items: center;
    justify-content: center
}

.activity-table {
    background-color: #fff;
    padding: 20px;
    border: 1px solid rgba(0,0,0,.175)
}

.btn-sm-main {
    background-color: #108a00
}

.btn-danger-main,.btn-sm-main {
    padding: 5px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    gap: 2px;
    border: none;
    color: #fff
}

.btn-danger-main {
    background-color: red
}

.btn-success-main {
    background-color: green
}

.btn-cancel-main,.btn-success-main {
    padding: 5px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    gap: 2px;
    border: none;
    color: #fff
}

.btn-cancel-main {
    background-color: #212529
}

.btn-secondary {
    padding: 7px 11px;
    font-size: 11px;
    gap: 2px;
    border: none;
    color: #fff;
    background-color: #2e3032
}

.btn-secondary,.search-input {
    display: flex;
    align-items: center;
    justify-content: center
}

.search-input {
    gap: 10px
}

.pagination {
    display: flex;
    list-style: none;
    padding: 0;
    gap: 5px;
    justify-content: flex-end;
    margin-top: 20px;
    flex-wrap: wrap
}

.page-link {
    padding: 8px 12px;
    border-radius: 5px;
    border: 1px solid #ddd;
    background-color: #fff;
    color: #108a00;
    text-decoration: none;
    cursor: pointer;
    box-shadow: -3px -3px 7px #ffffff73,3px 3px 5px rgba(94,104,121,.288);
    transition: background-color .3s ease,color .3s ease
}

.page-link:hover {
    background-color: #108a00;
    color: #fff
}

.page-item.disabled .page-link {
    color: #ccc;
    pointer-events: none;
    cursor: not-allowed
}

.page-item.active .page-link {
    background-color: #108a00;
    color: #fff;
    border-color: #108a00
}

.telegram-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    vertical-align: middle
}

.welcome-card {
    color: #fff;
    padding: 12px 25px;
    background: #108a00;
    display: flex;
    align-items: center;
    border-radius: 10px;
    margin-top: 50px;
    justify-content: space-between;
    box-shadow: 0 2px 7px 4px rgba(0,0,0,.1)
}

.welcome-card .profile-img {
    width: 40px;
    border-radius: 50%;
    height: 40px;
    overflow: hidden
}

@media (max-width: 550px) {
    .welcome-card {
        flex-direction:column;
        align-items: center;
        gap: 20px;
        justify-content: center
    }
}

.stat-Cards {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap
}

.stat-Card {
    display: flex;
    gap: 10px;
    flex-direction: column;
    text-align: center;
    font-weight: 600;
    width: 150px;
    font-size: 14px
}

.stat-Card div {
    padding: 10px;
    background-color: #fff;
    display: flex;
    box-shadow: 0 2px 7px 4px rgba(0,0,0,.1);
    border-radius: 10px;
    justify-content: center;
    align-items: center
}

.stat-Card div i {
    font-size: 70px;
    color: #108a00
}

.important-Cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 120px
}

.important-Cards ul {
    padding: 30px;
    background-color: #fff;
    box-shadow: 0 2px 7px 4px rgba(0,0,0,.1);
    border-radius: 10px;
    word-wrap: break-word;
    gap: 22px
}

.important-Cards ul,.news-card {
    display: flex;
    flex-direction: column
}

.news-item {
    position: relative;
    box-shadow: 0 2px 7px 4px rgba(0,0,0,.1);
    margin: .6em 0;
    max-width: 92vw
}

.news-card .toggle-input {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    visibility: hidden
}

.news-card h5 {
    background: #fff;
    color: #000;
    padding: 10px;
    margin: 0;
    position: relative
}

.accordion-icon {
    opacity: .5;
    pointer-events: none;
    position: absolute;
    right: .5rem;
    transition: all .3s ease-in-out
}

.accordion-icon svg {
    width: 1.5rem;
    height: 1.5rem
}

.news-card .toggle-label {
    cursor: pointer;
    font-size: 16px;
    position: relative;
    display: flex;
    align-items: center
}

.news-card .content {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease-in-out
}

.news-card .content p {
    padding: 2em
}

.news-card .toggle-input:checked~h5 .accordion-icon {
    transform: rotate(180deg)
}

.news-card .toggle-input:checked~h5~.content {
    max-height: 400px
}

.news-card-data {
    display: flex;
    flex-direction: column;
    background-color: #ebf3e7;
    gap: 10px;
    padding: 10px 20px;
    font-size: 13px
}

.news-card-data div {
    display: flex;
    align-items: center;
    gap: 30px
}

.news-card-data .label {
    font-weight: 600
}

@media (max-width: 600px) {
    .news-card .toggle-label {
        font-size:12px
    }

    .news-card .toggle-label span {
        overflow-wrap: break-word
    }

    .news-card-data {
        font-size: 11px
    }
}

@media (max-width: 550px) {
    .stat-Cards {
        justify-content:center
    }
}

.section-group {
    display: flex;
    margin-top: 60px;
    gap: 20px;
    align-items: flex-start;
    justify-content: center
}

.important-right,.news-left {
    flex: 1 1
}

@media (max-width: 1150px) {
    .section-group {
        flex-direction:column-reverse;
        align-items: center;
        gap: 50px
    }
}

.hqdemoVideo>.modal-dialog {
    max-width: 900px
}

@media (min-width: 1500px) {
    .hqdemoVideo>.modal-dialog {
        max-width:1000px
    }
}

@media (min-width: 2000px) {
    .hqdemoVideo>.modal-dialog {
        max-width:1400px
    }
}

.user-info-container {
    display: flex;
    background: #e9f0e8;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    border-radius: .5rem;
    flex-direction: row;
    width: 100%;
    padding: 18px
}

.user-info-details {
    display: flex;
    align-self: flex-start;
    flex-direction: column;
    font-weight: 500;
    gap: 10px
}

.user-basic-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px
}

@media (max-width: 700px) {
    .user-info-container {
        justify-content:space-evenly
    }
}

.user-info-container .user-balance {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 12px
}

.user-info-container .user-rank-details {
    display: flex;
    align-items: center;
    gap: 10px
}

.user-info-container .info-card-item {
    flex-direction: column
}

.telegram-button,.user-info-container .info-card-item {
    display: flex;
    align-items: center;
    justify-content: center
}

.telegram-button {
    font-family: inherit;
    font-size: 15px;
    background: linear-gradient(180deg,#4dc7d9 0,#66a6ff);
    color: #fff;
    padding: .8em 1.2em;
    border: none;
    border-radius: 25px;
    box-shadow: 0 5px 10px rgba(0,0,0,.2);
    transition: all .3s
}

.telegram-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0,0,0,.3)
}

button:active {
    transform: scale(.95);
    box-shadow: 0 2px 5px rgba(0,0,0,.2)
}

.telegram-button span {
    display: block;
    margin-left: .4em;
    transition: all .3s
}

.telegram-button svg {
    width: 18px;
    height: 18px;
    fill: #fff;
    transition: all .3s
}

.telegram-button .svg-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: hsla(0,0%,100%,.2);
    margin-right: .5em;
    transition: all .3s
}

.telegram-button:hover .svg-wrapper {
    background-color: hsla(0,0%,100%,.5)
}

.telegram-button:hover svg {
    transform: rotate(45deg)
}

.specialbtn {
    font-size: 16px;
    padding: .8rem 1.9rem;
    border: none;
    outline: none;
    border-radius: .4rem;
    cursor: pointer;
    text-transform: uppercase;
    background-color: #0e0e1a;
    color: #eaeaea;
    font-weight: 700;
    transition: .6s;
    box-shadow: 0 0 60px #1f6525;
    -webkit-box-reflect: below 10px linear-gradient(180deg,transparent,rgba(0,0,0,.4))
}

.specialbtn:active {
    scale: .92
}

.specialbtn:hover {
    background: #021d4e;
    background: linear-gradient(270deg,rgba(2,78,12,.681),rgba(31,232,71,.873) 60%);
    color: #040426
}

.rank {
    text-align: center;
    font-size: 15px;
    font-weight: 700
}

.rank.vip {
    background: linear-gradient(181deg,#8b0000,#b22222,#3e0e06);
    color: #fff;
    box-shadow: 1px 1px 8px 0 #ea6868;
    text-shadow: 1px 1px 5px #000
}

.rank.newbie,.rank.vip {
    padding: 5px;
    border-radius: 5px
}

.rank.newbie {
    background: radial-gradient(328px at 2.9% 15%,#bfe0fb 0,#e8e9fb 25.8%,#fceffa 50.8%,#eafbfb 77.6%,#f0fbf4 100.7%);
    color: #000;
    box-shadow: 1px 1px 7px 1px #bfe0fb;
    text-shadow: 2px 2px 4px #fff
}

.rank.king {
    background: linear-gradient(90deg,#040404,#000,#656565);
    color: #fff;
    box-shadow: 0 4px 8px hsla(240,0%,53%,.592)
}

.rank.gold,.rank.king {
    padding: 5px;
    border-radius: 5px
}

.rank.gold {
    background: linear-gradient(90deg,#bf953f,#fcf6ba,#b38728,#fbf5b7,#aa771c);
    color: #000;
    box-shadow: 1px 1px 7px 1px #bf953f;
    text-shadow: 2px 2px 4px #fff
}

.card-table {
    font-size: small
}

.search-container {
    background-color: #fff;
    padding: 20px;
    border: 1px solid rgba(0,0,0,.175);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr
}

@media (max-width: 1000px) {
    .search-container {
        grid-template-columns:1fr 1fr
    }
}

@media (max-width: 500px) {
    .search-container {
        grid-template-columns:1fr
    }
}

.range-slider {
    position: relative;
    width: 100%;
    height: 20px
}

.range-slider input[type=range] {
    -webkit-appearance: none;
    width: 100%;
    height: 10px;
    background: #d3d3d3;
    border-radius: 5px;
    outline: none;
    margin: 0;
    padding: 0;
    position: absolute
}

.range-slider input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: #007bff;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    z-index: 2
}

.range-slider input[type=range]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: #007bff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    z-index: 2
}

.plus-track-icon {
    display: flex;
    margin: auto;
    width: 22px;
    align-items: center;
    justify-content: center;
    height: 26px
}

.plus-track-icon i {
    font-size: 20px!important
}

.plus-track-icon .fa-check {
    color: green
}

.plus-track-icon .fa-xmark {
    color: red
}

.country-td {
    flex-wrap: wrap
}

.country-td,.personal-data-column {
    display: flex;
    align-items: center;
    gap: 10px
}

.personal-data-column {
    justify-content: center;
    flex-direction: column
}

.personal-data-column div {
    gap: 5px
}

.personal-data-column div,.personal-data-column i {
    display: flex;
    align-items: center;
    justify-content: center
}

.personal-data-column i {
    height: 26px;
    font-size: 20px!important;
    width: 22px
}

.personal-data-column .fa-check {
    color: green
}

.personal-data-column .fa-xmark {
    color: red
}

.discount-price-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column
}

.discount-price-container .oldprice {
    font-size: 11px;
    text-decoration: line-through;
    color: red
}

.discount-price-container .newprice {
    font-size: 14px;
    color: green
}

.descriptionCell {
    max-width: 550px
}

.subTh b {
    font-weight: 600;
    color: #303030
}

.cryptoTypeCard {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column-reverse;
    gap: 10px;
    border-radius: 7px;
    border: 1px solid silver;
    box-shadow: 0 2px 7px 4px rgba(0,0,0,.1);
    padding: 10px
}

.cryptoTypeCard input,.cryptoTypeCard label {
    cursor: pointer
}

.multi-input-container {
    flex-wrap: wrap;
    border: 1px solid #ccc;
    border-radius: 4px
}

.bin,.multi-input-container {
    display: flex;
    align-items: center;
    padding: 5px
}

.bin {
    background-color: #f1f1f1;
    border: 1px solid #ccc;
    border-radius: 3px;
    margin-right: 5px;
    margin-bottom: 5px
}

.remove-bin {
    background: none;
    border: none;
    font-size: 14px;
    margin-left: 5px;
    cursor: pointer
}

.multi-input {
    border: none;
    outline: none;
    flex: 1 1;
    padding: 5px
}

.range-input-fields {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px
}

.small-input {
    width: 60px;
    padding: 4px;
    border: 1px solid #ccc;
    border-radius: 4px
}

.range-input-fields span,.small-input {
    font-size: 14px;
    text-align: center;
    margin: 0 10px
}

.range-input-fields span {
    display: flex;
    align-items: center;
    justify-content: center
}

.status.TimedOut {
    background-color: rgba(239,68,68,.1);
    color: #ef4444;
    border: 1px solid #ef4444
}

.status.Pending,.status.pending {
    background-color: rgba(234,179,8,.1);
    color: #eab308;
    border: 1px solid #eab308
}

.status.closed,.status.replied {
    background-color: rgba(34,197,94,.1);
    color: #22c55e;
    border: 1px solid #22c55e
}

.status.awaiting {
    background-color: rgba(234,179,8,.1);
    color: #eab308;
    border: 1px solid #eab308
}

.status.Completed,.status.completed {
    background-color: rgba(34,197,94,.1);
    color: #22c55e;
    border: 1px solid #22c55e
}

.status.blackstatus {
    background-color: #0e0e0e33;
    border: 1px solid #141414;
    color: #3f3f3f
}

.status.NonRefundable {
    background-color: rgba(59,130,246,.1);
    color: #3b82f6;
    border: 1px solid #3b82f6
}

.status.Refunded {
    background-color: rgba(34,197,94,.1);
    color: #22c55e;
    border: 1px solid #22c55e
}

.status.Canceled {
    background-color: rgba(239,68,68,.1);
    color: #ef4444;
    border: 1px solid #ef4444
}

.status.Started,.status.started {
    background-color: rgba(59,130,246,.1);
    color: #3b82f6;
    border: 1px solid #3b82f6
}

.status {
    font-size: .875rem;
    line-height: 1.5rem;
    padding: 2px .5rem;
    cursor: default;
    border: none;
    border-radius: .375rem;
    white-space: nowrap;
    outline: none;
    max-width: max-content
}

.statusContainer {
    height: 30px
}

.message,.statusContainer {
    display: flex;
    align-items: center
}

.message {
    justify-content: flex-start;
    gap: 10px;
    flex-direction: column;
    min-height: 100px;
    border: 1px solid #c4c4c4;
    border-radius: 7px;
    padding: 10px;
    font-weight: 500
}

.sms-number {
    border-radius: 7px;
    overflow: hidden;
    border: 1px solid #ced4da
}

.sms-number .copy-btn {
    padding: .375rem .75rem
}

.sms-number .copy-btn:hover {
    background-color: #d5d9dc
}

.sms-number .phone-country {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background-color: #e9ecef
}

.sms-number input {
    padding-left: 0;
    border: none!important
}

.inbox_msg {
    clear: both;
    overflow: hidden
}

.top_spac {
    margin: 20px 0 0
}

.recent_heading {
    float: left;
    width: 40%
}

.srch_bar {
    display: inline-block;
    text-align: right;
    width: 60%
}

.headind_srch {
    padding: 10px 29px 10px 20px;
    overflow: hidden;
    border-bottom: 1px solid #c4c4c4
}

.recent_heading h4 {
    color: #000;
    font-size: 21px;
    margin: auto
}

.badge-info {
    background-color: #05728f
}

.srch_bar input {
    border: solid #cdcdcd;
    border-width: 0 0 1px;
    width: 80%;
    padding: 2px 0 4px 6px;
    background: none
}

.srch_bar .input-group-addon button {
    background: transparent none repeat scroll 0 0;
    border: none;
    padding: 0;
    color: #707070;
    font-size: 18px
}

.srch_bar .input-group-addon {
    margin: 0 0 0 -27px
}

.chat_ib h5 {
    font-size: 15px;
    color: #464646;
    margin: 0 0 8px
}

.chat_ib h5 span {
    font-size: 13px;
    float: right
}

.chat_ib p {
    font-size: 14px;
    color: #989898;
    margin: auto
}

.chat_img {
    float: left;
    width: 11%
}

.chat_ib {
    float: left;
    padding: 0 0 0 15px;
    width: 88%
}

.chat_people {
    overflow: hidden;
    clear: both
}

.chat_list {
    border-bottom: 1px solid #c4c4c4;
    margin: 0;
    padding: 18px 16px 10px
}

.inbox_chat {
    height: 550px;
    overflow-y: scroll
}

.active_chat {
    background: #ebebeb
}

.incoming_msg_img {
    display: inline-block;
    width: 6%
}

.received_msg {
    display: inline-block;
    padding: 0 0 0 10px;
    vertical-align: top;
    width: 92%
}

.received_msg p {
    background: #efefef none repeat scroll 0 0
}

.msg_time {
    color: #667781
}

.msg-details {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between
}

.msg-details-from img {
    border-radius: 50%
}

.msg-details-from {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    justify-content: flex-end;
    margin: 10px 0
}

.time_date {
    color: #747474;
    display: block;
    font-size: 12px;
    margin: 8px 0 0
}

.mesgs,.msg p {
    width: 100%
}

.msg p {
    box-shadow: 0 2px 3px #0b141a21;
    border-radius: 5px;
    font-size: 14px;
    margin: 0;
    color: #000;
    padding: 5px 10px 5px 12px
}

.sent_msg p {
    background: #ecf3fe none repeat scroll 0 0
}

.outgoing_msg {
    overflow: hidden;
    margin: 5px 0
}

.sent_msg {
    float: right
}

.msg {
    max-width: -moz-fit-content;
    max-width: fit-content;
    min-width: 10%
}

.input_msg_write input {
    background: transparent none repeat scroll 0 0;
    border: none;
    color: #4c4c4c;
    font-size: 15px;
    min-height: 48px;
    width: 100%
}

.type_msg {
    border-top: 0 solid #c4c4c4;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px
}

.type_msg .input_msg_write {
    flex: 1 1
}

.messaging {
    padding: 0;
    max-height: 500px;
    max-height: 50vh;
    overflow-y: auto
}

.reply-container {
    min-height: -moz-fit-content;
    min-height: fit-content
}

.status-data {
    display: flex;
    align-items: flex-end;
    gap: 7px;
    flex-direction: column;
    justify-content: center
}

.ticketClosedMsg {
    color: #3a3a3a
}

#api-docs {
    font-family: Arial,sans-serif;
    color: #333;
    line-height: 1.6;
    padding: 20px;
    border-radius: 8px;
    max-width: 800px;
    margin: 0 auto
}

#api-docs h1 {
    color: #0056b3;
    font-size: 28px;
    margin-bottom: 20px;
    text-align: center
}

#api-docs h2 {
    color: #003d80;
    font-size: 22px;
    margin-top: 20px;
    border-bottom: 2px solid #003d80;
    padding-bottom: 5px
}

#api-docs p {
    margin: 10px 0
}

#api-docs ul {
    margin: 10px 0 20px 20px
}

#api-docs li {
    margin-bottom: 5px
}

#api-docs code {
    background-color: #e9ecef;
    padding: 2px 4px;
    border-radius: 4px;
    font-family: Courier New,Courier,monospace
}

#api-docs section {
    margin-bottom: 30px
}

#api-docs section:last-child {
    margin-bottom: 0
}

.copy-button {
    display: inline-flex;
    align-items: center;
    background-color: transparent;
    border: none;
    cursor: pointer;
    color: #007bff;
    margin-left: 10px
}

.copy-button i {
    margin-right: 5px
}

.status-badge {
    padding: 5px 10px;
    border-radius: 4px;
    color: #fff
}

.status-completed {
    background-color: green
}

.status-pending {
    background-color: #108a00
}

.qr-code-container {
    text-align: center;
    margin-top: 20px
}

.qr-code-container img {
    max-width: 100%;
    height: auto;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 8px
}

.cart-page .card-body {
    color: #000
}

.cart-page .bg-cart {
    background: #cecece
}

.cart-page .main-container {
    background-color: transparent
}

.add-method-row {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between
}

.add-method-row .form-group {
    flex-basis: calc(50% - 7px);
    box-sizing: border-box
}

@media (max-width: 767px) {
    .add-method-row .form-group {
        flex-basis:100%
    }
}

@media (max-width: 1285px) and (min-width:987px) {
    .add-method-row .form-group {
        flex-basis:100%
    }
}

.cart-page .payment-methods-list {
    justify-content: center
}

.cart-page .payment-method-item {
    width: 100%;
    background-color: #000;
    color: #fff;
    border-radius: 10px;
    border: none;
    box-shadow: 0 6px 10px rgba(0,0,0,.3),0 3px 10px rgba(0,0,0,.3)
}

.cart-page .payment-continer {
    padding: 10px
}

.cart-page .payment-container {
    min-height: auto
}

.cart-page .empty-list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column
}

.cart-page .add-payment-method {
    border: 2px solid;
    box-shadow: 0 6px 10px rgba(0,0,0,.3),0 3px 10px rgba(0,0,0,.3)
}

.cartprodtitle {
    margin-left: 1rem
}

.cartprodleftcont {
    display: flex;
    flex-direction: row;
    align-items: center
}

@media (max-width: 600px) {
    .cartprodtitle {
        margin-left:0
    }

    .cartprodleftcont {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px
    }
}

.cartAddress {
    display: flex;
    flex-direction: column;
    gap: 7px;
    overflow: auto;
    max-height: 15rem;
    border: 1px solid #a7a7a7;
    border-radius: 12px;
    padding: 10px
}

.cartAddress::-webkit-scrollbar {
    width: 6px
}

.cartAddress::-webkit-scrollbar-thumb {
    background-color: #4d4d4d;
    border-radius: 8px
}

.cartAddress::-webkit-scrollbar-track {
    background-color: #b6b6b6
}

.form-structor {
    background-color: #222;
    box-shadow: 0 4px 6px rgba(0,1,0,.3);
    border-radius: 15px;
    height: 690px;
    margin: auto;
    max-width: 650px;
    width: 100vw;
    position: relative;
    overflow: hidden
}

.form-structor:after {
    content: "";
    opacity: .8;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover;
    background-image: url(../auth.png)
}

.form-structor .mainlogo {
    z-index: 10;
    position: absolute;
    top: 0;
    right: 0;
    width: 100px
}

.signup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 65%;
    z-index: 5;
    transition: all .3s ease
}

.signup.slide-up {
    top: 5%;
    transform: translate(-50%);
    transition: all .3s ease
}

.signup.slide-up .form-holder,.signup.slide-up .submit-btn {
    opacity: 0;
    visibility: hidden
}

.signup.slide-up .form-title {
    font-size: 1em;
    cursor: pointer
}

.signup.slide-up .form-title span {
    margin-right: 5px;
    opacity: 1;
    visibility: visible;
    transition: all .3s ease
}

.signup .form-title {
    color: #fff;
    font-size: 1.7em;
    text-align: center
}

.signup .form-title span {
    color: #d0d6cf;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease
}

.signup .form-holder {
    border-radius: 15px;
    background-color: hsla(0,0%,100%,.7);
    overflow: hidden;
    margin-top: 50px;
    opacity: 1;
    visibility: visible;
    display: flex;
    align-items: center;
    flex-direction: column;
    transition: all .3s ease
}

.signup .form-holder .input {
    border: 0;
    outline: none;
    box-shadow: none;
    display: block;
    padding: 12px 16px;
    background-color: transparent;
    border-bottom: 1px solid #eee;
    width: 100%
}

.signup .form-holder .input:last-child {
    border-bottom: 0
}

.signup .form-holder .input::-webkit-input-placeholder {
    color: rgba(0,0,0,.4)
}

.signup .submit-btn {
    background-color: rgba(0,0,0,.4);
    color: hsla(0,0%,100%,.7);
    border: 0;
    border-radius: 15px;
    display: block;
    margin: 15px auto;
    padding: 15px 45px;
    width: 100%;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    opacity: 1;
    visibility: visible;
    transition: all .3s ease
}

.signup .submit-btn:hover {
    transition: all .3s ease;
    background-color: rgba(0,0,0,.8)
}

.login {
    top: 20%;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5
}

.login,.login:before {
    position: absolute;
    background-color: #fff;
    transition: all .3s ease
}

.login:before {
    content: "";
    left: 50%;
    top: -20px;
    transform: translate(-50%);
    width: 200%;
    height: 250px;
    border-radius: 50%;
    z-index: 4
}

.login .center {
    position: absolute;
    top: calc(55% - 10%);
    left: 50%;
    transform: translate(-50%,-50%);
    width: 65%;
    z-index: 5;
    transition: all .3s ease
}

.text-link {
    color: #0d6efd;
    text-decoration: underline
}

@media (max-width: 550px) {
    .login .center,.signup {
        width:99%
    }
}

.login .form-title {
    color: #000;
    font-size: 1.7em;
    text-align: center
}

.login .form-title span {
    color: rgba(0,0,0,.4);
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease
}

.login .form-holder {
    border-radius: 15px;
    background-color: #fff;
    border: 1px solid #eee;
    overflow: hidden;
    margin-top: 50px;
    opacity: 1;
    display: flex;
    align-items: center;
    flex-direction: column;
    visibility: visible;
    transition: all .3s ease
}

.login .form-holder .input {
    border: 0;
    outline: none;
    box-shadow: none;
    display: block;
    padding: 12px 16px;
    border-bottom: 1px solid #eee;
    width: 100%
}

.login .form-holder .input:last-child {
    border-bottom: 0
}

.login .form-holder .input::-webkit-input-placeholder {
    color: rgba(0,0,0,.4)
}

.login .submit-btn {
    background-color: #108a00;
    color: hsla(0,0%,100%,.7);
    border: 0;
    border-radius: 15px;
    display: block;
    margin: 15px auto;
    padding: 15px 45px;
    width: 100%;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    opacity: 1;
    visibility: visible;
    transition: all .3s ease
}

.login .submit-btn:hover {
    transition: all .3s ease;
    background-color: rgba(0,0,0,.8)
}

.login.slide-up {
    top: 90%;
    transition: all .3s ease
}

.login.slide-up .center {
    top: 10%;
    transform: translate(-50%);
    transition: all .3s ease
}

.login.slide-up .form-holder,.login.slide-up .submit-btn {
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease
}

.login.slide-up .form-title {
    font-size: 1em;
    margin: 0;
    padding: 0;
    cursor: pointer;
    transition: all .3s ease
}

.login.slide-up .form-title span {
    margin-right: 5px;
    opacity: 1;
    visibility: visible;
    transition: all .3s ease
}

.checker-container {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    padding: 20px;
    gap: 50px;
    flex-wrap: wrap;
    max-width: 1300px;
    margin: auto
}

@media (max-width: 800px) {
    .checker-container {
        flex-direction:column;
        padding: 0
    }
}

.inputChecker {
    display: flex;
    flex-direction: column
}

.inputChecker,.inputChecker textarea {
    flex: 1 1;
    color: #000;
    border-radius: 7px
}

.inputChecker textarea {
    width: 100%;
    margin-bottom: 10px;
    background-color: #f6f5f5;
    padding: 10px;
    resize: none;
    border: 1px solid #3e3e3e
}

.auth-button,.check-button {
    padding: 10px;
    margin-top: 10px;
    background-color: #0f0;
    color: #000;
    border: none;
    cursor: pointer
}

.resultChecker {
    display: flex;
    flex-direction: column;
    flex: 1 1;
    justify-content: space-between;
    gap: 20px
}

.resultChecker .inputcc {
    flex: 1 1;
    padding: 10px;
    background-color: #f6f5f5;
    color: #000;
    max-height: 200px;
    min-height: 150px;
    border: none;
    border-radius: 7px;
    overflow: auto
}

.resultChecker .inputcc .label {
    font-size: large;
    font-weight: 500
}

.resultChecker .alive,.resultChecker .other {
    border: 1px solid #3e3e3e
}

.resultChecker .alive .label {
    color: rgba(0,201,0,.745)
}

.resultChecker .other .label {
    color: red
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px
}

.faq-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    color: #333
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px
}

.faq-item {
    background: #fff;
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 15px;
    cursor: pointer;
    transition: all .3s ease
}

.faq-item.open {
    background: #e9f8e8;
    border-color: #108a00
}

.faq-question {
    font-size: 1.2rem;
    color: #108a00;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all .3s ease;
    font-size: 1rem;
    color: #555;
    margin-top: 10px
}

.faq-item.open .faq-answer {
    max-height: 200px;
    opacity: 1
}

.faq-icon {
    transition: transform .3s ease
}

.faq-icon.open {
    transform: rotate(180deg)
}

.switch-button {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px
}

.switch-button .switch-outer {
    height: 100%;
    background: #252532;
    border-radius: 165px;
    box-shadow: inset 0 5px 10px 0 #16151c,0 3px 6px -2px #403f4e;
    border: 1px solid #32303e;
    box-sizing: border-box;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    width: 60px;
    padding: 3px
}

.switch-button .switch-outer input[type=checkbox] {
    opacity: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: absolute
}

.switch-button .switch-outer .button-toggle {
    height: 20px;
    width: 20px;
    background: linear-gradient(#3b3a4e,#272733);
    border-radius: 100%;
    box-shadow: inset 0 5px 4px 0 #424151,0 4px 15px 0 #0f0e17;
    position: relative;
    z-index: 2;
    transition: left .3s ease-in;
    left: 0
}

.switch-button .switch-outer input[type=checkbox]:checked+.button .button-toggle {
    left: 55%
}

.switch-button .switch-outer input[type=checkbox]:checked+.button .button-indicator {
    animation: indicator 1s forwards
}

.switch-button .switch-outer .button {
    width: 100%;
    height: 100%;
    display: flex;
    position: relative;
    justify-content: space-between
}

.switch-button .switch-outer .button-indicator {
    height: 12px;
    width: 12px;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    border: 3px solid #ef565f;
    box-sizing: border-box;
    position: relative
}

@keyframes indicator {
    30% {
        opacity: 0
    }

    0% {
        opacity: 1
    }

    to {
        opacity: 1;
        border: 3px solid #60d480;
        left: -60%
    }
}

.setting-user-box {
    top: 50%;
    left: 50%;
    width: 400px;
    padding: 40px;
    margin: 20px auto;
    background: hsla(0,0%,100%,.9);
    box-sizing: border-box;
    box-shadow: 0 15px 25px rgba(0,0,0,.6);
    border-radius: 10px
}

.setting-user-box form {
    min-height: 201px;
    display: flex;
    flex-direction: column
}

.setting-user-box p:first-child {
    margin: 0 0 30px;
    padding: 0;
    color: #000;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px
}

.setting-user-box .user-box {
    position: relative
}

.setting-user-box .user-box input {
    width: 100%;
    padding: 10px 0;
    font-size: 16px;
    color: #000;
    margin-bottom: 30px;
    border: none;
    border-bottom: 1px solid #000;
    outline: none;
    background: transparent
}

.setting-user-box .user-box label {
    position: absolute;
    top: 0;
    left: 0;
    padding: 10px 0;
    font-size: 16px;
    color: #000;
    pointer-events: none;
    transition: .5s
}

.setting-user-box .user-box input:focus-visible~label {
    top: -20px;
    left: 0;
    color: #000;
    font-size: 12px
}

.setting-user-box .user-box input.filled-input~label {
    top: -20px;
    left: 0;
    color: #000;
    font-size: 12px
}

.stylish-button {
    all: unset;
    position: relative;
    align-self: flex-end;
    display: inline-block;
    padding: 10px 20px;
    font-weight: 700;
    color: #000;
    font-size: 14px;
    text-decoration: none;
    text-transform: uppercase;
    overflow: hidden;
    transition: .5s;
    margin-top: 10px;
    letter-spacing: 3px;
    cursor: pointer
}

.stylish-button:hover {
    background: #000;
    color: #fff;
    border-radius: 5px;
    box-shadow: 4px 3px 6px #8b8b8b
}

.stylish-button span {
    position: absolute;
    display: block
}

.stylish-button span:first-child {
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg,transparent,#000);
    animation: btn-anim1 1.5s linear infinite
}

@keyframes btn-anim1 {
    0% {
        left: -100%
    }

    50%,to {
        left: 100%
    }
}

.stylish-button span:nth-child(2) {
    top: -100%;
    right: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg,transparent,#000);
    animation: btn-anim2 1.5s linear infinite;
    animation-delay: .375s
}

@keyframes btn-anim2 {
    0% {
        top: -100%
    }

    50%,to {
        top: 100%
    }
}

.stylish-button span:nth-child(3) {
    bottom: 0;
    right: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(270deg,transparent,#000);
    animation: btn-anim3 1.5s linear infinite;
    animation-delay: .75s
}

@keyframes btn-anim3 {
    0% {
        right: -100%
    }

    50%,to {
        right: 100%
    }
}

.stylish-button span:nth-child(4) {
    bottom: -100%;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(1turn,transparent,#000);
    animation: btn-anim4 1.5s linear infinite;
    animation-delay: 1.125s
}

@keyframes btn-anim4 {
    0% {
        bottom: -100%
    }

    50%,to {
        bottom: 100%
    }
}

/*!
 * Bootstrap Icons v1.11.3 (https://icons.getbootstrap.com/)
 * Copyright 2019-2024 The Bootstrap Authors
 * Licensed under MIT (https://github.com/twbs/icons/blob/main/LICENSE)
 */
@font-face {
    font-display: block;
    font-family: bootstrap-icons;
    src: url(../media/bootstrap-icons.bfa90bda.woff2) format("woff2"),url(../media/bootstrap-icons.70a9dee9.woff) format("woff")
}

.bi:before,[class*=" bi-"]:before,[class^=bi-]:before {
    display: inline-block;
    font-family: bootstrap-icons!important;
    font-style: normal;
    font-weight: 400!important;
    font-feature-settings: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    vertical-align: -.125em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.bi-123:before {
    content: "\f67f"
}

.bi-alarm-fill:before {
    content: "\f101"
}

.bi-alarm:before {
    content: "\f102"
}

.bi-align-bottom:before {
    content: "\f103"
}

.bi-align-center:before {
    content: "\f104"
}

.bi-align-end:before {
    content: "\f105"
}

.bi-align-middle:before {
    content: "\f106"
}

.bi-align-start:before {
    content: "\f107"
}

.bi-align-top:before {
    content: "\f108"
}

.bi-alt:before {
    content: "\f109"
}

.bi-app-indicator:before {
    content: "\f10a"
}

.bi-app:before {
    content: "\f10b"
}

.bi-archive-fill:before {
    content: "\f10c"
}

.bi-archive:before {
    content: "\f10d"
}

.bi-arrow-90deg-down:before {
    content: "\f10e"
}

.bi-arrow-90deg-left:before {
    content: "\f10f"
}

.bi-arrow-90deg-right:before {
    content: "\f110"
}

.bi-arrow-90deg-up:before {
    content: "\f111"
}

.bi-arrow-bar-down:before {
    content: "\f112"
}

.bi-arrow-bar-left:before {
    content: "\f113"
}

.bi-arrow-bar-right:before {
    content: "\f114"
}

.bi-arrow-bar-up:before {
    content: "\f115"
}

.bi-arrow-clockwise:before {
    content: "\f116"
}

.bi-arrow-counterclockwise:before {
    content: "\f117"
}

.bi-arrow-down-circle-fill:before {
    content: "\f118"
}

.bi-arrow-down-circle:before {
    content: "\f119"
}

.bi-arrow-down-left-circle-fill:before {
    content: "\f11a"
}

.bi-arrow-down-left-circle:before {
    content: "\f11b"
}

.bi-arrow-down-left-square-fill:before {
    content: "\f11c"
}

.bi-arrow-down-left-square:before {
    content: "\f11d"
}

.bi-arrow-down-left:before {
    content: "\f11e"
}

.bi-arrow-down-right-circle-fill:before {
    content: "\f11f"
}

.bi-arrow-down-right-circle:before {
    content: "\f120"
}

.bi-arrow-down-right-square-fill:before {
    content: "\f121"
}

.bi-arrow-down-right-square:before {
    content: "\f122"
}

.bi-arrow-down-right:before {
    content: "\f123"
}

.bi-arrow-down-short:before {
    content: "\f124"
}

.bi-arrow-down-square-fill:before {
    content: "\f125"
}

.bi-arrow-down-square:before {
    content: "\f126"
}

.bi-arrow-down-up:before {
    content: "\f127"
}

.bi-arrow-down:before {
    content: "\f128"
}

.bi-arrow-left-circle-fill:before {
    content: "\f129"
}

.bi-arrow-left-circle:before {
    content: "\f12a"
}

.bi-arrow-left-right:before {
    content: "\f12b"
}

.bi-arrow-left-short:before {
    content: "\f12c"
}

.bi-arrow-left-square-fill:before {
    content: "\f12d"
}

.bi-arrow-left-square:before {
    content: "\f12e"
}

.bi-arrow-left:before {
    content: "\f12f"
}

.bi-arrow-repeat:before {
    content: "\f130"
}

.bi-arrow-return-left:before {
    content: "\f131"
}

.bi-arrow-return-right:before {
    content: "\f132"
}

.bi-arrow-right-circle-fill:before {
    content: "\f133"
}

.bi-arrow-right-circle:before {
    content: "\f134"
}

.bi-arrow-right-short:before {
    content: "\f135"
}

.bi-arrow-right-square-fill:before {
    content: "\f136"
}

.bi-arrow-right-square:before {
    content: "\f137"
}

.bi-arrow-right:before {
    content: "\f138"
}

.bi-arrow-up-circle-fill:before {
    content: "\f139"
}

.bi-arrow-up-circle:before {
    content: "\f13a"
}

.bi-arrow-up-left-circle-fill:before {
    content: "\f13b"
}

.bi-arrow-up-left-circle:before {
    content: "\f13c"
}

.bi-arrow-up-left-square-fill:before {
    content: "\f13d"
}

.bi-arrow-up-left-square:before {
    content: "\f13e"
}

.bi-arrow-up-left:before {
    content: "\f13f"
}

.bi-arrow-up-right-circle-fill:before {
    content: "\f140"
}

.bi-arrow-up-right-circle:before {
    content: "\f141"
}

.bi-arrow-up-right-square-fill:before {
    content: "\f142"
}

.bi-arrow-up-right-square:before {
    content: "\f143"
}

.bi-arrow-up-right:before {
    content: "\f144"
}

.bi-arrow-up-short:before {
    content: "\f145"
}

.bi-arrow-up-square-fill:before {
    content: "\f146"
}

.bi-arrow-up-square:before {
    content: "\f147"
}

.bi-arrow-up:before {
    content: "\f148"
}

.bi-arrows-angle-contract:before {
    content: "\f149"
}

.bi-arrows-angle-expand:before {
    content: "\f14a"
}

.bi-arrows-collapse:before {
    content: "\f14b"
}

.bi-arrows-expand:before {
    content: "\f14c"
}

.bi-arrows-fullscreen:before {
    content: "\f14d"
}

.bi-arrows-move:before {
    content: "\f14e"
}

.bi-aspect-ratio-fill:before {
    content: "\f14f"
}

.bi-aspect-ratio:before {
    content: "\f150"
}

.bi-asterisk:before {
    content: "\f151"
}

.bi-at:before {
    content: "\f152"
}

.bi-award-fill:before {
    content: "\f153"
}

.bi-award:before {
    content: "\f154"
}

.bi-back:before {
    content: "\f155"
}

.bi-backspace-fill:before {
    content: "\f156"
}

.bi-backspace-reverse-fill:before {
    content: "\f157"
}

.bi-backspace-reverse:before {
    content: "\f158"
}

.bi-backspace:before {
    content: "\f159"
}

.bi-badge-3d-fill:before {
    content: "\f15a"
}

.bi-badge-3d:before {
    content: "\f15b"
}

.bi-badge-4k-fill:before {
    content: "\f15c"
}

.bi-badge-4k:before {
    content: "\f15d"
}

.bi-badge-8k-fill:before {
    content: "\f15e"
}

.bi-badge-8k:before {
    content: "\f15f"
}

.bi-badge-ad-fill:before {
    content: "\f160"
}

.bi-badge-ad:before {
    content: "\f161"
}

.bi-badge-ar-fill:before {
    content: "\f162"
}

.bi-badge-ar:before {
    content: "\f163"
}

.bi-badge-cc-fill:before {
    content: "\f164"
}

.bi-badge-cc:before {
    content: "\f165"
}

.bi-badge-hd-fill:before {
    content: "\f166"
}

.bi-badge-hd:before {
    content: "\f167"
}

.bi-badge-tm-fill:before {
    content: "\f168"
}

.bi-badge-tm:before {
    content: "\f169"
}

.bi-badge-vo-fill:before {
    content: "\f16a"
}

.bi-badge-vo:before {
    content: "\f16b"
}

.bi-badge-vr-fill:before {
    content: "\f16c"
}

.bi-badge-vr:before {
    content: "\f16d"
}

.bi-badge-wc-fill:before {
    content: "\f16e"
}

.bi-badge-wc:before {
    content: "\f16f"
}

.bi-bag-check-fill:before {
    content: "\f170"
}

.bi-bag-check:before {
    content: "\f171"
}

.bi-bag-dash-fill:before {
    content: "\f172"
}

.bi-bag-dash:before {
    content: "\f173"
}

.bi-bag-fill:before {
    content: "\f174"
}

.bi-bag-plus-fill:before {
    content: "\f175"
}

.bi-bag-plus:before {
    content: "\f176"
}

.bi-bag-x-fill:before {
    content: "\f177"
}

.bi-bag-x:before {
    content: "\f178"
}

.bi-bag:before {
    content: "\f179"
}

.bi-bar-chart-fill:before {
    content: "\f17a"
}

.bi-bar-chart-line-fill:before {
    content: "\f17b"
}

.bi-bar-chart-line:before {
    content: "\f17c"
}

.bi-bar-chart-steps:before {
    content: "\f17d"
}

.bi-bar-chart:before {
    content: "\f17e"
}

.bi-basket-fill:before {
    content: "\f17f"
}

.bi-basket:before {
    content: "\f180"
}

.bi-basket2-fill:before {
    content: "\f181"
}

.bi-basket2:before {
    content: "\f182"
}

.bi-basket3-fill:before {
    content: "\f183"
}

.bi-basket3:before {
    content: "\f184"
}

.bi-battery-charging:before {
    content: "\f185"
}

.bi-battery-full:before {
    content: "\f186"
}

.bi-battery-half:before {
    content: "\f187"
}

.bi-battery:before {
    content: "\f188"
}

.bi-bell-fill:before {
    content: "\f189"
}

.bi-bell:before {
    content: "\f18a"
}

.bi-bezier:before {
    content: "\f18b"
}

.bi-bezier2:before {
    content: "\f18c"
}

.bi-bicycle:before {
    content: "\f18d"
}

.bi-binoculars-fill:before {
    content: "\f18e"
}

.bi-binoculars:before {
    content: "\f18f"
}

.bi-blockquote-left:before {
    content: "\f190"
}

.bi-blockquote-right:before {
    content: "\f191"
}

.bi-book-fill:before {
    content: "\f192"
}

.bi-book-half:before {
    content: "\f193"
}

.bi-book:before {
    content: "\f194"
}

.bi-bookmark-check-fill:before {
    content: "\f195"
}

.bi-bookmark-check:before {
    content: "\f196"
}

.bi-bookmark-dash-fill:before {
    content: "\f197"
}

.bi-bookmark-dash:before {
    content: "\f198"
}

.bi-bookmark-fill:before {
    content: "\f199"
}

.bi-bookmark-heart-fill:before {
    content: "\f19a"
}

.bi-bookmark-heart:before {
    content: "\f19b"
}

.bi-bookmark-plus-fill:before {
    content: "\f19c"
}

.bi-bookmark-plus:before {
    content: "\f19d"
}

.bi-bookmark-star-fill:before {
    content: "\f19e"
}

.bi-bookmark-star:before {
    content: "\f19f"
}

.bi-bookmark-x-fill:before {
    content: "\f1a0"
}

.bi-bookmark-x:before {
    content: "\f1a1"
}

.bi-bookmark:before {
    content: "\f1a2"
}

.bi-bookmarks-fill:before {
    content: "\f1a3"
}

.bi-bookmarks:before {
    content: "\f1a4"
}

.bi-bookshelf:before {
    content: "\f1a5"
}

.bi-bootstrap-fill:before {
    content: "\f1a6"
}

.bi-bootstrap-reboot:before {
    content: "\f1a7"
}

.bi-bootstrap:before {
    content: "\f1a8"
}

.bi-border-all:before {
    content: "\f1a9"
}

.bi-border-bottom:before {
    content: "\f1aa"
}

.bi-border-center:before {
    content: "\f1ab"
}

.bi-border-inner:before {
    content: "\f1ac"
}

.bi-border-left:before {
    content: "\f1ad"
}

.bi-border-middle:before {
    content: "\f1ae"
}

.bi-border-outer:before {
    content: "\f1af"
}

.bi-border-right:before {
    content: "\f1b0"
}

.bi-border-style:before {
    content: "\f1b1"
}

.bi-border-top:before {
    content: "\f1b2"
}

.bi-border-width:before {
    content: "\f1b3"
}

.bi-border:before {
    content: "\f1b4"
}

.bi-bounding-box-circles:before {
    content: "\f1b5"
}

.bi-bounding-box:before {
    content: "\f1b6"
}

.bi-box-arrow-down-left:before {
    content: "\f1b7"
}

.bi-box-arrow-down-right:before {
    content: "\f1b8"
}

.bi-box-arrow-down:before {
    content: "\f1b9"
}

.bi-box-arrow-in-down-left:before {
    content: "\f1ba"
}

.bi-box-arrow-in-down-right:before {
    content: "\f1bb"
}

.bi-box-arrow-in-down:before {
    content: "\f1bc"
}

.bi-box-arrow-in-left:before {
    content: "\f1bd"
}

.bi-box-arrow-in-right:before {
    content: "\f1be"
}

.bi-box-arrow-in-up-left:before {
    content: "\f1bf"
}

.bi-box-arrow-in-up-right:before {
    content: "\f1c0"
}

.bi-box-arrow-in-up:before {
    content: "\f1c1"
}

.bi-box-arrow-left:before {
    content: "\f1c2"
}

.bi-box-arrow-right:before {
    content: "\f1c3"
}

.bi-box-arrow-up-left:before {
    content: "\f1c4"
}

.bi-box-arrow-up-right:before {
    content: "\f1c5"
}

.bi-box-arrow-up:before {
    content: "\f1c6"
}

.bi-box-seam:before {
    content: "\f1c7"
}

.bi-box:before {
    content: "\f1c8"
}

.bi-braces:before {
    content: "\f1c9"
}

.bi-bricks:before {
    content: "\f1ca"
}

.bi-briefcase-fill:before {
    content: "\f1cb"
}

.bi-briefcase:before {
    content: "\f1cc"
}

.bi-brightness-alt-high-fill:before {
    content: "\f1cd"
}

.bi-brightness-alt-high:before {
    content: "\f1ce"
}

.bi-brightness-alt-low-fill:before {
    content: "\f1cf"
}

.bi-brightness-alt-low:before {
    content: "\f1d0"
}

.bi-brightness-high-fill:before {
    content: "\f1d1"
}

.bi-brightness-high:before {
    content: "\f1d2"
}

.bi-brightness-low-fill:before {
    content: "\f1d3"
}

.bi-brightness-low:before {
    content: "\f1d4"
}

.bi-broadcast-pin:before {
    content: "\f1d5"
}

.bi-broadcast:before {
    content: "\f1d6"
}

.bi-brush-fill:before {
    content: "\f1d7"
}

.bi-brush:before {
    content: "\f1d8"
}

.bi-bucket-fill:before {
    content: "\f1d9"
}

.bi-bucket:before {
    content: "\f1da"
}

.bi-bug-fill:before {
    content: "\f1db"
}

.bi-bug:before {
    content: "\f1dc"
}

.bi-building:before {
    content: "\f1dd"
}

.bi-bullseye:before {
    content: "\f1de"
}

.bi-calculator-fill:before {
    content: "\f1df"
}

.bi-calculator:before {
    content: "\f1e0"
}

.bi-calendar-check-fill:before {
    content: "\f1e1"
}

.bi-calendar-check:before {
    content: "\f1e2"
}

.bi-calendar-date-fill:before {
    content: "\f1e3"
}

.bi-calendar-date:before {
    content: "\f1e4"
}

.bi-calendar-day-fill:before {
    content: "\f1e5"
}

.bi-calendar-day:before {
    content: "\f1e6"
}

.bi-calendar-event-fill:before {
    content: "\f1e7"
}

.bi-calendar-event:before {
    content: "\f1e8"
}

.bi-calendar-fill:before {
    content: "\f1e9"
}

.bi-calendar-minus-fill:before {
    content: "\f1ea"
}

.bi-calendar-minus:before {
    content: "\f1eb"
}

.bi-calendar-month-fill:before {
    content: "\f1ec"
}

.bi-calendar-month:before {
    content: "\f1ed"
}

.bi-calendar-plus-fill:before {
    content: "\f1ee"
}

.bi-calendar-plus:before {
    content: "\f1ef"
}

.bi-calendar-range-fill:before {
    content: "\f1f0"
}

.bi-calendar-range:before {
    content: "\f1f1"
}

.bi-calendar-week-fill:before {
    content: "\f1f2"
}

.bi-calendar-week:before {
    content: "\f1f3"
}

.bi-calendar-x-fill:before {
    content: "\f1f4"
}

.bi-calendar-x:before {
    content: "\f1f5"
}

.bi-calendar:before {
    content: "\f1f6"
}

.bi-calendar2-check-fill:before {
    content: "\f1f7"
}

.bi-calendar2-check:before {
    content: "\f1f8"
}

.bi-calendar2-date-fill:before {
    content: "\f1f9"
}

.bi-calendar2-date:before {
    content: "\f1fa"
}

.bi-calendar2-day-fill:before {
    content: "\f1fb"
}

.bi-calendar2-day:before {
    content: "\f1fc"
}

.bi-calendar2-event-fill:before {
    content: "\f1fd"
}

.bi-calendar2-event:before {
    content: "\f1fe"
}

.bi-calendar2-fill:before {
    content: "\f1ff"
}

.bi-calendar2-minus-fill:before {
    content: "\f200"
}

.bi-calendar2-minus:before {
    content: "\f201"
}

.bi-calendar2-month-fill:before {
    content: "\f202"
}

.bi-calendar2-month:before {
    content: "\f203"
}

.bi-calendar2-plus-fill:before {
    content: "\f204"
}

.bi-calendar2-plus:before {
    content: "\f205"
}

.bi-calendar2-range-fill:before {
    content: "\f206"
}

.bi-calendar2-range:before {
    content: "\f207"
}

.bi-calendar2-week-fill:before {
    content: "\f208"
}

.bi-calendar2-week:before {
    content: "\f209"
}

.bi-calendar2-x-fill:before {
    content: "\f20a"
}

.bi-calendar2-x:before {
    content: "\f20b"
}

.bi-calendar2:before {
    content: "\f20c"
}

.bi-calendar3-event-fill:before {
    content: "\f20d"
}

.bi-calendar3-event:before {
    content: "\f20e"
}

.bi-calendar3-fill:before {
    content: "\f20f"
}

.bi-calendar3-range-fill:before {
    content: "\f210"
}

.bi-calendar3-range:before {
    content: "\f211"
}

.bi-calendar3-week-fill:before {
    content: "\f212"
}

.bi-calendar3-week:before {
    content: "\f213"
}

.bi-calendar3:before {
    content: "\f214"
}

.bi-calendar4-event:before {
    content: "\f215"
}

.bi-calendar4-range:before {
    content: "\f216"
}

.bi-calendar4-week:before {
    content: "\f217"
}

.bi-calendar4:before {
    content: "\f218"
}

.bi-camera-fill:before {
    content: "\f219"
}

.bi-camera-reels-fill:before {
    content: "\f21a"
}

.bi-camera-reels:before {
    content: "\f21b"
}

.bi-camera-video-fill:before {
    content: "\f21c"
}

.bi-camera-video-off-fill:before {
    content: "\f21d"
}

.bi-camera-video-off:before {
    content: "\f21e"
}

.bi-camera-video:before {
    content: "\f21f"
}

.bi-camera:before {
    content: "\f220"
}

.bi-camera2:before {
    content: "\f221"
}

.bi-capslock-fill:before {
    content: "\f222"
}

.bi-capslock:before {
    content: "\f223"
}

.bi-card-checklist:before {
    content: "\f224"
}

.bi-card-heading:before {
    content: "\f225"
}

.bi-card-image:before {
    content: "\f226"
}

.bi-card-list:before {
    content: "\f227"
}

.bi-card-text:before {
    content: "\f228"
}

.bi-caret-down-fill:before {
    content: "\f229"
}

.bi-caret-down-square-fill:before {
    content: "\f22a"
}

.bi-caret-down-square:before {
    content: "\f22b"
}

.bi-caret-down:before {
    content: "\f22c"
}

.bi-caret-left-fill:before {
    content: "\f22d"
}

.bi-caret-left-square-fill:before {
    content: "\f22e"
}

.bi-caret-left-square:before {
    content: "\f22f"
}

.bi-caret-left:before {
    content: "\f230"
}

.bi-caret-right-fill:before {
    content: "\f231"
}

.bi-caret-right-square-fill:before {
    content: "\f232"
}

.bi-caret-right-square:before {
    content: "\f233"
}

.bi-caret-right:before {
    content: "\f234"
}

.bi-caret-up-fill:before {
    content: "\f235"
}

.bi-caret-up-square-fill:before {
    content: "\f236"
}

.bi-caret-up-square:before {
    content: "\f237"
}

.bi-caret-up:before {
    content: "\f238"
}

.bi-cart-check-fill:before {
    content: "\f239"
}

.bi-cart-check:before {
    content: "\f23a"
}

.bi-cart-dash-fill:before {
    content: "\f23b"
}

.bi-cart-dash:before {
    content: "\f23c"
}

.bi-cart-fill:before {
    content: "\f23d"
}

.bi-cart-plus-fill:before {
    content: "\f23e"
}

.bi-cart-plus:before {
    content: "\f23f"
}

.bi-cart-x-fill:before {
    content: "\f240"
}

.bi-cart-x:before {
    content: "\f241"
}

.bi-cart:before {
    content: "\f242"
}

.bi-cart2:before {
    content: "\f243"
}

.bi-cart3:before {
    content: "\f244"
}

.bi-cart4:before {
    content: "\f245"
}

.bi-cash-stack:before {
    content: "\f246"
}

.bi-cash:before {
    content: "\f247"
}

.bi-cast:before {
    content: "\f248"
}

.bi-chat-dots-fill:before {
    content: "\f249"
}

.bi-chat-dots:before {
    content: "\f24a"
}

.bi-chat-fill:before {
    content: "\f24b"
}

.bi-chat-left-dots-fill:before {
    content: "\f24c"
}

.bi-chat-left-dots:before {
    content: "\f24d"
}

.bi-chat-left-fill:before {
    content: "\f24e"
}

.bi-chat-left-quote-fill:before {
    content: "\f24f"
}

.bi-chat-left-quote:before {
    content: "\f250"
}

.bi-chat-left-text-fill:before {
    content: "\f251"
}

.bi-chat-left-text:before {
    content: "\f252"
}

.bi-chat-left:before {
    content: "\f253"
}

.bi-chat-quote-fill:before {
    content: "\f254"
}

.bi-chat-quote:before {
    content: "\f255"
}

.bi-chat-right-dots-fill:before {
    content: "\f256"
}

.bi-chat-right-dots:before {
    content: "\f257"
}

.bi-chat-right-fill:before {
    content: "\f258"
}

.bi-chat-right-quote-fill:before {
    content: "\f259"
}

.bi-chat-right-quote:before {
    content: "\f25a"
}

.bi-chat-right-text-fill:before {
    content: "\f25b"
}

.bi-chat-right-text:before {
    content: "\f25c"
}

.bi-chat-right:before {
    content: "\f25d"
}

.bi-chat-square-dots-fill:before {
    content: "\f25e"
}

.bi-chat-square-dots:before {
    content: "\f25f"
}

.bi-chat-square-fill:before {
    content: "\f260"
}

.bi-chat-square-quote-fill:before {
    content: "\f261"
}

.bi-chat-square-quote:before {
    content: "\f262"
}

.bi-chat-square-text-fill:before {
    content: "\f263"
}

.bi-chat-square-text:before {
    content: "\f264"
}

.bi-chat-square:before {
    content: "\f265"
}

.bi-chat-text-fill:before {
    content: "\f266"
}

.bi-chat-text:before {
    content: "\f267"
}

.bi-chat:before {
    content: "\f268"
}

.bi-check-all:before {
    content: "\f269"
}

.bi-check-circle-fill:before {
    content: "\f26a"
}

.bi-check-circle:before {
    content: "\f26b"
}

.bi-check-square-fill:before {
    content: "\f26c"
}

.bi-check-square:before {
    content: "\f26d"
}

.bi-check:before {
    content: "\f26e"
}

.bi-check2-all:before {
    content: "\f26f"
}

.bi-check2-circle:before {
    content: "\f270"
}

.bi-check2-square:before {
    content: "\f271"
}

.bi-check2:before {
    content: "\f272"
}

.bi-chevron-bar-contract:before {
    content: "\f273"
}

.bi-chevron-bar-down:before {
    content: "\f274"
}

.bi-chevron-bar-expand:before {
    content: "\f275"
}

.bi-chevron-bar-left:before {
    content: "\f276"
}

.bi-chevron-bar-right:before {
    content: "\f277"
}

.bi-chevron-bar-up:before {
    content: "\f278"
}

.bi-chevron-compact-down:before {
    content: "\f279"
}

.bi-chevron-compact-left:before {
    content: "\f27a"
}

.bi-chevron-compact-right:before {
    content: "\f27b"
}

.bi-chevron-compact-up:before {
    content: "\f27c"
}

.bi-chevron-contract:before {
    content: "\f27d"
}

.bi-chevron-double-down:before {
    content: "\f27e"
}

.bi-chevron-double-left:before {
    content: "\f27f"
}

.bi-chevron-double-right:before {
    content: "\f280"
}

.bi-chevron-double-up:before {
    content: "\f281"
}

.bi-chevron-down:before {
    content: "\f282"
}

.bi-chevron-expand:before {
    content: "\f283"
}

.bi-chevron-left:before {
    content: "\f284"
}

.bi-chevron-right:before {
    content: "\f285"
}

.bi-chevron-up:before {
    content: "\f286"
}

.bi-circle-fill:before {
    content: "\f287"
}

.bi-circle-half:before {
    content: "\f288"
}

.bi-circle-square:before {
    content: "\f289"
}

.bi-circle:before {
    content: "\f28a"
}

.bi-clipboard-check:before {
    content: "\f28b"
}

.bi-clipboard-data:before {
    content: "\f28c"
}

.bi-clipboard-minus:before {
    content: "\f28d"
}

.bi-clipboard-plus:before {
    content: "\f28e"
}

.bi-clipboard-x:before {
    content: "\f28f"
}

.bi-clipboard:before {
    content: "\f290"
}

.bi-clock-fill:before {
    content: "\f291"
}

.bi-clock-history:before {
    content: "\f292"
}

.bi-clock:before {
    content: "\f293"
}

.bi-cloud-arrow-down-fill:before {
    content: "\f294"
}

.bi-cloud-arrow-down:before {
    content: "\f295"
}

.bi-cloud-arrow-up-fill:before {
    content: "\f296"
}

.bi-cloud-arrow-up:before {
    content: "\f297"
}

.bi-cloud-check-fill:before {
    content: "\f298"
}

.bi-cloud-check:before {
    content: "\f299"
}

.bi-cloud-download-fill:before {
    content: "\f29a"
}

.bi-cloud-download:before {
    content: "\f29b"
}

.bi-cloud-drizzle-fill:before {
    content: "\f29c"
}

.bi-cloud-drizzle:before {
    content: "\f29d"
}

.bi-cloud-fill:before {
    content: "\f29e"
}

.bi-cloud-fog-fill:before {
    content: "\f29f"
}

.bi-cloud-fog:before {
    content: "\f2a0"
}

.bi-cloud-fog2-fill:before {
    content: "\f2a1"
}

.bi-cloud-fog2:before {
    content: "\f2a2"
}

.bi-cloud-hail-fill:before {
    content: "\f2a3"
}

.bi-cloud-hail:before {
    content: "\f2a4"
}

.bi-cloud-haze-fill:before {
    content: "\f2a6"
}

.bi-cloud-haze:before {
    content: "\f2a7"
}

.bi-cloud-haze2-fill:before {
    content: "\f2a8"
}

.bi-cloud-lightning-fill:before {
    content: "\f2a9"
}

.bi-cloud-lightning-rain-fill:before {
    content: "\f2aa"
}

.bi-cloud-lightning-rain:before {
    content: "\f2ab"
}

.bi-cloud-lightning:before {
    content: "\f2ac"
}

.bi-cloud-minus-fill:before {
    content: "\f2ad"
}

.bi-cloud-minus:before {
    content: "\f2ae"
}

.bi-cloud-moon-fill:before {
    content: "\f2af"
}

.bi-cloud-moon:before {
    content: "\f2b0"
}

.bi-cloud-plus-fill:before {
    content: "\f2b1"
}

.bi-cloud-plus:before {
    content: "\f2b2"
}

.bi-cloud-rain-fill:before {
    content: "\f2b3"
}

.bi-cloud-rain-heavy-fill:before {
    content: "\f2b4"
}

.bi-cloud-rain-heavy:before {
    content: "\f2b5"
}

.bi-cloud-rain:before {
    content: "\f2b6"
}

.bi-cloud-slash-fill:before {
    content: "\f2b7"
}

.bi-cloud-slash:before {
    content: "\f2b8"
}

.bi-cloud-sleet-fill:before {
    content: "\f2b9"
}

.bi-cloud-sleet:before {
    content: "\f2ba"
}

.bi-cloud-snow-fill:before {
    content: "\f2bb"
}

.bi-cloud-snow:before {
    content: "\f2bc"
}

.bi-cloud-sun-fill:before {
    content: "\f2bd"
}

.bi-cloud-sun:before {
    content: "\f2be"
}

.bi-cloud-upload-fill:before {
    content: "\f2bf"
}

.bi-cloud-upload:before {
    content: "\f2c0"
}

.bi-cloud:before {
    content: "\f2c1"
}

.bi-clouds-fill:before {
    content: "\f2c2"
}

.bi-clouds:before {
    content: "\f2c3"
}

.bi-cloudy-fill:before {
    content: "\f2c4"
}

.bi-cloudy:before {
    content: "\f2c5"
}

.bi-code-slash:before {
    content: "\f2c6"
}

.bi-code-square:before {
    content: "\f2c7"
}

.bi-code:before {
    content: "\f2c8"
}

.bi-collection-fill:before {
    content: "\f2c9"
}

.bi-collection-play-fill:before {
    content: "\f2ca"
}

.bi-collection-play:before {
    content: "\f2cb"
}

.bi-collection:before {
    content: "\f2cc"
}

.bi-columns-gap:before {
    content: "\f2cd"
}

.bi-columns:before {
    content: "\f2ce"
}

.bi-command:before {
    content: "\f2cf"
}

.bi-compass-fill:before {
    content: "\f2d0"
}

.bi-compass:before {
    content: "\f2d1"
}

.bi-cone-striped:before {
    content: "\f2d2"
}

.bi-cone:before {
    content: "\f2d3"
}

.bi-controller:before {
    content: "\f2d4"
}

.bi-cpu-fill:before {
    content: "\f2d5"
}

.bi-cpu:before {
    content: "\f2d6"
}

.bi-credit-card-2-back-fill:before {
    content: "\f2d7"
}

.bi-credit-card-2-back:before {
    content: "\f2d8"
}

.bi-credit-card-2-front-fill:before {
    content: "\f2d9"
}

.bi-credit-card-2-front:before {
    content: "\f2da"
}

.bi-credit-card-fill:before {
    content: "\f2db"
}

.bi-credit-card:before {
    content: "\f2dc"
}

.bi-crop:before {
    content: "\f2dd"
}

.bi-cup-fill:before {
    content: "\f2de"
}

.bi-cup-straw:before {
    content: "\f2df"
}

.bi-cup:before {
    content: "\f2e0"
}

.bi-cursor-fill:before {
    content: "\f2e1"
}

.bi-cursor-text:before {
    content: "\f2e2"
}

.bi-cursor:before {
    content: "\f2e3"
}

.bi-dash-circle-dotted:before {
    content: "\f2e4"
}

.bi-dash-circle-fill:before {
    content: "\f2e5"
}

.bi-dash-circle:before {
    content: "\f2e6"
}

.bi-dash-square-dotted:before {
    content: "\f2e7"
}

.bi-dash-square-fill:before {
    content: "\f2e8"
}

.bi-dash-square:before {
    content: "\f2e9"
}

.bi-dash:before {
    content: "\f2ea"
}

.bi-diagram-2-fill:before {
    content: "\f2eb"
}

.bi-diagram-2:before {
    content: "\f2ec"
}

.bi-diagram-3-fill:before {
    content: "\f2ed"
}

.bi-diagram-3:before {
    content: "\f2ee"
}

.bi-diamond-fill:before {
    content: "\f2ef"
}

.bi-diamond-half:before {
    content: "\f2f0"
}

.bi-diamond:before {
    content: "\f2f1"
}

.bi-dice-1-fill:before {
    content: "\f2f2"
}

.bi-dice-1:before {
    content: "\f2f3"
}

.bi-dice-2-fill:before {
    content: "\f2f4"
}

.bi-dice-2:before {
    content: "\f2f5"
}

.bi-dice-3-fill:before {
    content: "\f2f6"
}

.bi-dice-3:before {
    content: "\f2f7"
}

.bi-dice-4-fill:before {
    content: "\f2f8"
}

.bi-dice-4:before {
    content: "\f2f9"
}

.bi-dice-5-fill:before {
    content: "\f2fa"
}

.bi-dice-5:before {
    content: "\f2fb"
}

.bi-dice-6-fill:before {
    content: "\f2fc"
}

.bi-dice-6:before {
    content: "\f2fd"
}

.bi-disc-fill:before {
    content: "\f2fe"
}

.bi-disc:before {
    content: "\f2ff"
}

.bi-discord:before {
    content: "\f300"
}

.bi-display-fill:before {
    content: "\f301"
}

.bi-display:before {
    content: "\f302"
}

.bi-distribute-horizontal:before {
    content: "\f303"
}

.bi-distribute-vertical:before {
    content: "\f304"
}

.bi-door-closed-fill:before {
    content: "\f305"
}

.bi-door-closed:before {
    content: "\f306"
}

.bi-door-open-fill:before {
    content: "\f307"
}

.bi-door-open:before {
    content: "\f308"
}

.bi-dot:before {
    content: "\f309"
}

.bi-download:before {
    content: "\f30a"
}

.bi-droplet-fill:before {
    content: "\f30b"
}

.bi-droplet-half:before {
    content: "\f30c"
}

.bi-droplet:before {
    content: "\f30d"
}

.bi-earbuds:before {
    content: "\f30e"
}

.bi-easel-fill:before {
    content: "\f30f"
}

.bi-easel:before {
    content: "\f310"
}

.bi-egg-fill:before {
    content: "\f311"
}

.bi-egg-fried:before {
    content: "\f312"
}

.bi-egg:before {
    content: "\f313"
}

.bi-eject-fill:before {
    content: "\f314"
}

.bi-eject:before {
    content: "\f315"
}

.bi-emoji-angry-fill:before {
    content: "\f316"
}

.bi-emoji-angry:before {
    content: "\f317"
}

.bi-emoji-dizzy-fill:before {
    content: "\f318"
}

.bi-emoji-dizzy:before {
    content: "\f319"
}

.bi-emoji-expressionless-fill:before {
    content: "\f31a"
}

.bi-emoji-expressionless:before {
    content: "\f31b"
}

.bi-emoji-frown-fill:before {
    content: "\f31c"
}

.bi-emoji-frown:before {
    content: "\f31d"
}

.bi-emoji-heart-eyes-fill:before {
    content: "\f31e"
}

.bi-emoji-heart-eyes:before {
    content: "\f31f"
}

.bi-emoji-laughing-fill:before {
    content: "\f320"
}

.bi-emoji-laughing:before {
    content: "\f321"
}

.bi-emoji-neutral-fill:before {
    content: "\f322"
}

.bi-emoji-neutral:before {
    content: "\f323"
}

.bi-emoji-smile-fill:before {
    content: "\f324"
}

.bi-emoji-smile-upside-down-fill:before {
    content: "\f325"
}

.bi-emoji-smile-upside-down:before {
    content: "\f326"
}

.bi-emoji-smile:before {
    content: "\f327"
}

.bi-emoji-sunglasses-fill:before {
    content: "\f328"
}

.bi-emoji-sunglasses:before {
    content: "\f329"
}

.bi-emoji-wink-fill:before {
    content: "\f32a"
}

.bi-emoji-wink:before {
    content: "\f32b"
}

.bi-envelope-fill:before {
    content: "\f32c"
}

.bi-envelope-open-fill:before {
    content: "\f32d"
}

.bi-envelope-open:before {
    content: "\f32e"
}

.bi-envelope:before {
    content: "\f32f"
}

.bi-eraser-fill:before {
    content: "\f330"
}

.bi-eraser:before {
    content: "\f331"
}

.bi-exclamation-circle-fill:before {
    content: "\f332"
}

.bi-exclamation-circle:before {
    content: "\f333"
}

.bi-exclamation-diamond-fill:before {
    content: "\f334"
}

.bi-exclamation-diamond:before {
    content: "\f335"
}

.bi-exclamation-octagon-fill:before {
    content: "\f336"
}

.bi-exclamation-octagon:before {
    content: "\f337"
}

.bi-exclamation-square-fill:before {
    content: "\f338"
}

.bi-exclamation-square:before {
    content: "\f339"
}

.bi-exclamation-triangle-fill:before {
    content: "\f33a"
}

.bi-exclamation-triangle:before {
    content: "\f33b"
}

.bi-exclamation:before {
    content: "\f33c"
}

.bi-exclude:before {
    content: "\f33d"
}

.bi-eye-fill:before {
    content: "\f33e"
}

.bi-eye-slash-fill:before {
    content: "\f33f"
}

.bi-eye-slash:before {
    content: "\f340"
}

.bi-eye:before {
    content: "\f341"
}

.bi-eyedropper:before {
    content: "\f342"
}

.bi-eyeglasses:before {
    content: "\f343"
}

.bi-facebook:before {
    content: "\f344"
}

.bi-file-arrow-down-fill:before {
    content: "\f345"
}

.bi-file-arrow-down:before {
    content: "\f346"
}

.bi-file-arrow-up-fill:before {
    content: "\f347"
}

.bi-file-arrow-up:before {
    content: "\f348"
}

.bi-file-bar-graph-fill:before {
    content: "\f349"
}

.bi-file-bar-graph:before {
    content: "\f34a"
}

.bi-file-binary-fill:before {
    content: "\f34b"
}

.bi-file-binary:before {
    content: "\f34c"
}

.bi-file-break-fill:before {
    content: "\f34d"
}

.bi-file-break:before {
    content: "\f34e"
}

.bi-file-check-fill:before {
    content: "\f34f"
}

.bi-file-check:before {
    content: "\f350"
}

.bi-file-code-fill:before {
    content: "\f351"
}

.bi-file-code:before {
    content: "\f352"
}

.bi-file-diff-fill:before {
    content: "\f353"
}

.bi-file-diff:before {
    content: "\f354"
}

.bi-file-earmark-arrow-down-fill:before {
    content: "\f355"
}

.bi-file-earmark-arrow-down:before {
    content: "\f356"
}

.bi-file-earmark-arrow-up-fill:before {
    content: "\f357"
}

.bi-file-earmark-arrow-up:before {
    content: "\f358"
}

.bi-file-earmark-bar-graph-fill:before {
    content: "\f359"
}

.bi-file-earmark-bar-graph:before {
    content: "\f35a"
}

.bi-file-earmark-binary-fill:before {
    content: "\f35b"
}

.bi-file-earmark-binary:before {
    content: "\f35c"
}

.bi-file-earmark-break-fill:before {
    content: "\f35d"
}

.bi-file-earmark-break:before {
    content: "\f35e"
}

.bi-file-earmark-check-fill:before {
    content: "\f35f"
}

.bi-file-earmark-check:before {
    content: "\f360"
}

.bi-file-earmark-code-fill:before {
    content: "\f361"
}

.bi-file-earmark-code:before {
    content: "\f362"
}

.bi-file-earmark-diff-fill:before {
    content: "\f363"
}

.bi-file-earmark-diff:before {
    content: "\f364"
}

.bi-file-earmark-easel-fill:before {
    content: "\f365"
}

.bi-file-earmark-easel:before {
    content: "\f366"
}

.bi-file-earmark-excel-fill:before {
    content: "\f367"
}

.bi-file-earmark-excel:before {
    content: "\f368"
}

.bi-file-earmark-fill:before {
    content: "\f369"
}

.bi-file-earmark-font-fill:before {
    content: "\f36a"
}

.bi-file-earmark-font:before {
    content: "\f36b"
}

.bi-file-earmark-image-fill:before {
    content: "\f36c"
}

.bi-file-earmark-image:before {
    content: "\f36d"
}

.bi-file-earmark-lock-fill:before {
    content: "\f36e"
}

.bi-file-earmark-lock:before {
    content: "\f36f"
}

.bi-file-earmark-lock2-fill:before {
    content: "\f370"
}

.bi-file-earmark-lock2:before {
    content: "\f371"
}

.bi-file-earmark-medical-fill:before {
    content: "\f372"
}

.bi-file-earmark-medical:before {
    content: "\f373"
}

.bi-file-earmark-minus-fill:before {
    content: "\f374"
}

.bi-file-earmark-minus:before {
    content: "\f375"
}

.bi-file-earmark-music-fill:before {
    content: "\f376"
}

.bi-file-earmark-music:before {
    content: "\f377"
}

.bi-file-earmark-person-fill:before {
    content: "\f378"
}

.bi-file-earmark-person:before {
    content: "\f379"
}

.bi-file-earmark-play-fill:before {
    content: "\f37a"
}

.bi-file-earmark-play:before {
    content: "\f37b"
}

.bi-file-earmark-plus-fill:before {
    content: "\f37c"
}

.bi-file-earmark-plus:before {
    content: "\f37d"
}

.bi-file-earmark-post-fill:before {
    content: "\f37e"
}

.bi-file-earmark-post:before {
    content: "\f37f"
}

.bi-file-earmark-ppt-fill:before {
    content: "\f380"
}

.bi-file-earmark-ppt:before {
    content: "\f381"
}

.bi-file-earmark-richtext-fill:before {
    content: "\f382"
}

.bi-file-earmark-richtext:before {
    content: "\f383"
}

.bi-file-earmark-ruled-fill:before {
    content: "\f384"
}

.bi-file-earmark-ruled:before {
    content: "\f385"
}

.bi-file-earmark-slides-fill:before {
    content: "\f386"
}

.bi-file-earmark-slides:before {
    content: "\f387"
}

.bi-file-earmark-spreadsheet-fill:before {
    content: "\f388"
}

.bi-file-earmark-spreadsheet:before {
    content: "\f389"
}

.bi-file-earmark-text-fill:before {
    content: "\f38a"
}

.bi-file-earmark-text:before {
    content: "\f38b"
}

.bi-file-earmark-word-fill:before {
    content: "\f38c"
}

.bi-file-earmark-word:before {
    content: "\f38d"
}

.bi-file-earmark-x-fill:before {
    content: "\f38e"
}

.bi-file-earmark-x:before {
    content: "\f38f"
}

.bi-file-earmark-zip-fill:before {
    content: "\f390"
}

.bi-file-earmark-zip:before {
    content: "\f391"
}

.bi-file-earmark:before {
    content: "\f392"
}

.bi-file-easel-fill:before {
    content: "\f393"
}

.bi-file-easel:before {
    content: "\f394"
}

.bi-file-excel-fill:before {
    content: "\f395"
}

.bi-file-excel:before {
    content: "\f396"
}

.bi-file-fill:before {
    content: "\f397"
}

.bi-file-font-fill:before {
    content: "\f398"
}

.bi-file-font:before {
    content: "\f399"
}

.bi-file-image-fill:before {
    content: "\f39a"
}

.bi-file-image:before {
    content: "\f39b"
}

.bi-file-lock-fill:before {
    content: "\f39c"
}

.bi-file-lock:before {
    content: "\f39d"
}

.bi-file-lock2-fill:before {
    content: "\f39e"
}

.bi-file-lock2:before {
    content: "\f39f"
}

.bi-file-medical-fill:before {
    content: "\f3a0"
}

.bi-file-medical:before {
    content: "\f3a1"
}

.bi-file-minus-fill:before {
    content: "\f3a2"
}

.bi-file-minus:before {
    content: "\f3a3"
}

.bi-file-music-fill:before {
    content: "\f3a4"
}

.bi-file-music:before {
    content: "\f3a5"
}

.bi-file-person-fill:before {
    content: "\f3a6"
}

.bi-file-person:before {
    content: "\f3a7"
}

.bi-file-play-fill:before {
    content: "\f3a8"
}

.bi-file-play:before {
    content: "\f3a9"
}

.bi-file-plus-fill:before {
    content: "\f3aa"
}

.bi-file-plus:before {
    content: "\f3ab"
}

.bi-file-post-fill:before {
    content: "\f3ac"
}

.bi-file-post:before {
    content: "\f3ad"
}

.bi-file-ppt-fill:before {
    content: "\f3ae"
}

.bi-file-ppt:before {
    content: "\f3af"
}

.bi-file-richtext-fill:before {
    content: "\f3b0"
}

.bi-file-richtext:before {
    content: "\f3b1"
}

.bi-file-ruled-fill:before {
    content: "\f3b2"
}

.bi-file-ruled:before {
    content: "\f3b3"
}

.bi-file-slides-fill:before {
    content: "\f3b4"
}

.bi-file-slides:before {
    content: "\f3b5"
}

.bi-file-spreadsheet-fill:before {
    content: "\f3b6"
}

.bi-file-spreadsheet:before {
    content: "\f3b7"
}

.bi-file-text-fill:before {
    content: "\f3b8"
}

.bi-file-text:before {
    content: "\f3b9"
}

.bi-file-word-fill:before {
    content: "\f3ba"
}

.bi-file-word:before {
    content: "\f3bb"
}

.bi-file-x-fill:before {
    content: "\f3bc"
}

.bi-file-x:before {
    content: "\f3bd"
}

.bi-file-zip-fill:before {
    content: "\f3be"
}

.bi-file-zip:before {
    content: "\f3bf"
}

.bi-file:before {
    content: "\f3c0"
}

.bi-files-alt:before {
    content: "\f3c1"
}

.bi-files:before {
    content: "\f3c2"
}

.bi-film:before {
    content: "\f3c3"
}

.bi-filter-circle-fill:before {
    content: "\f3c4"
}

.bi-filter-circle:before {
    content: "\f3c5"
}

.bi-filter-left:before {
    content: "\f3c6"
}

.bi-filter-right:before {
    content: "\f3c7"
}

.bi-filter-square-fill:before {
    content: "\f3c8"
}

.bi-filter-square:before {
    content: "\f3c9"
}

.bi-filter:before {
    content: "\f3ca"
}

.bi-flag-fill:before {
    content: "\f3cb"
}

.bi-flag:before {
    content: "\f3cc"
}

.bi-flower1:before {
    content: "\f3cd"
}

.bi-flower2:before {
    content: "\f3ce"
}

.bi-flower3:before {
    content: "\f3cf"
}

.bi-folder-check:before {
    content: "\f3d0"
}

.bi-folder-fill:before {
    content: "\f3d1"
}

.bi-folder-minus:before {
    content: "\f3d2"
}

.bi-folder-plus:before {
    content: "\f3d3"
}

.bi-folder-symlink-fill:before {
    content: "\f3d4"
}

.bi-folder-symlink:before {
    content: "\f3d5"
}

.bi-folder-x:before {
    content: "\f3d6"
}

.bi-folder:before {
    content: "\f3d7"
}

.bi-folder2-open:before {
    content: "\f3d8"
}

.bi-folder2:before {
    content: "\f3d9"
}

.bi-fonts:before {
    content: "\f3da"
}

.bi-forward-fill:before {
    content: "\f3db"
}

.bi-forward:before {
    content: "\f3dc"
}

.bi-front:before {
    content: "\f3dd"
}

.bi-fullscreen-exit:before {
    content: "\f3de"
}

.bi-fullscreen:before {
    content: "\f3df"
}

.bi-funnel-fill:before {
    content: "\f3e0"
}

.bi-funnel:before {
    content: "\f3e1"
}

.bi-gear-fill:before {
    content: "\f3e2"
}

.bi-gear-wide-connected:before {
    content: "\f3e3"
}

.bi-gear-wide:before {
    content: "\f3e4"
}

.bi-gear:before {
    content: "\f3e5"
}

.bi-gem:before {
    content: "\f3e6"
}

.bi-geo-alt-fill:before {
    content: "\f3e7"
}

.bi-geo-alt:before {
    content: "\f3e8"
}

.bi-geo-fill:before {
    content: "\f3e9"
}

.bi-geo:before {
    content: "\f3ea"
}

.bi-gift-fill:before {
    content: "\f3eb"
}

.bi-gift:before {
    content: "\f3ec"
}

.bi-github:before {
    content: "\f3ed"
}

.bi-globe:before {
    content: "\f3ee"
}

.bi-globe2:before {
    content: "\f3ef"
}

.bi-google:before {
    content: "\f3f0"
}

.bi-graph-down:before {
    content: "\f3f1"
}

.bi-graph-up:before {
    content: "\f3f2"
}

.bi-grid-1x2-fill:before {
    content: "\f3f3"
}

.bi-grid-1x2:before {
    content: "\f3f4"
}

.bi-grid-3x2-gap-fill:before {
    content: "\f3f5"
}

.bi-grid-3x2-gap:before {
    content: "\f3f6"
}

.bi-grid-3x2:before {
    content: "\f3f7"
}

.bi-grid-3x3-gap-fill:before {
    content: "\f3f8"
}

.bi-grid-3x3-gap:before {
    content: "\f3f9"
}

.bi-grid-3x3:before {
    content: "\f3fa"
}

.bi-grid-fill:before {
    content: "\f3fb"
}

.bi-grid:before {
    content: "\f3fc"
}

.bi-grip-horizontal:before {
    content: "\f3fd"
}

.bi-grip-vertical:before {
    content: "\f3fe"
}

.bi-hammer:before {
    content: "\f3ff"
}

.bi-hand-index-fill:before {
    content: "\f400"
}

.bi-hand-index-thumb-fill:before {
    content: "\f401"
}

.bi-hand-index-thumb:before {
    content: "\f402"
}

.bi-hand-index:before {
    content: "\f403"
}

.bi-hand-thumbs-down-fill:before {
    content: "\f404"
}

.bi-hand-thumbs-down:before {
    content: "\f405"
}

.bi-hand-thumbs-up-fill:before {
    content: "\f406"
}

.bi-hand-thumbs-up:before {
    content: "\f407"
}

.bi-handbag-fill:before {
    content: "\f408"
}

.bi-handbag:before {
    content: "\f409"
}

.bi-hash:before {
    content: "\f40a"
}

.bi-hdd-fill:before {
    content: "\f40b"
}

.bi-hdd-network-fill:before {
    content: "\f40c"
}

.bi-hdd-network:before {
    content: "\f40d"
}

.bi-hdd-rack-fill:before {
    content: "\f40e"
}

.bi-hdd-rack:before {
    content: "\f40f"
}

.bi-hdd-stack-fill:before {
    content: "\f410"
}

.bi-hdd-stack:before {
    content: "\f411"
}

.bi-hdd:before {
    content: "\f412"
}

.bi-headphones:before {
    content: "\f413"
}

.bi-headset:before {
    content: "\f414"
}

.bi-heart-fill:before {
    content: "\f415"
}

.bi-heart-half:before {
    content: "\f416"
}

.bi-heart:before {
    content: "\f417"
}

.bi-heptagon-fill:before {
    content: "\f418"
}

.bi-heptagon-half:before {
    content: "\f419"
}

.bi-heptagon:before {
    content: "\f41a"
}

.bi-hexagon-fill:before {
    content: "\f41b"
}

.bi-hexagon-half:before {
    content: "\f41c"
}

.bi-hexagon:before {
    content: "\f41d"
}

.bi-hourglass-bottom:before {
    content: "\f41e"
}

.bi-hourglass-split:before {
    content: "\f41f"
}

.bi-hourglass-top:before {
    content: "\f420"
}

.bi-hourglass:before {
    content: "\f421"
}

.bi-house-door-fill:before {
    content: "\f422"
}

.bi-house-door:before {
    content: "\f423"
}

.bi-house-fill:before {
    content: "\f424"
}

.bi-house:before {
    content: "\f425"
}

.bi-hr:before {
    content: "\f426"
}

.bi-hurricane:before {
    content: "\f427"
}

.bi-image-alt:before {
    content: "\f428"
}

.bi-image-fill:before {
    content: "\f429"
}

.bi-image:before {
    content: "\f42a"
}

.bi-images:before {
    content: "\f42b"
}

.bi-inbox-fill:before {
    content: "\f42c"
}

.bi-inbox:before {
    content: "\f42d"
}

.bi-inboxes-fill:before {
    content: "\f42e"
}

.bi-inboxes:before {
    content: "\f42f"
}

.bi-info-circle-fill:before {
    content: "\f430"
}

.bi-info-circle:before {
    content: "\f431"
}

.bi-info-square-fill:before {
    content: "\f432"
}

.bi-info-square:before {
    content: "\f433"
}

.bi-info:before {
    content: "\f434"
}

.bi-input-cursor-text:before {
    content: "\f435"
}

.bi-input-cursor:before {
    content: "\f436"
}

.bi-instagram:before {
    content: "\f437"
}

.bi-intersect:before {
    content: "\f438"
}

.bi-journal-album:before {
    content: "\f439"
}

.bi-journal-arrow-down:before {
    content: "\f43a"
}

.bi-journal-arrow-up:before {
    content: "\f43b"
}

.bi-journal-bookmark-fill:before {
    content: "\f43c"
}

.bi-journal-bookmark:before {
    content: "\f43d"
}

.bi-journal-check:before {
    content: "\f43e"
}

.bi-journal-code:before {
    content: "\f43f"
}

.bi-journal-medical:before {
    content: "\f440"
}

.bi-journal-minus:before {
    content: "\f441"
}

.bi-journal-plus:before {
    content: "\f442"
}

.bi-journal-richtext:before {
    content: "\f443"
}

.bi-journal-text:before {
    content: "\f444"
}

.bi-journal-x:before {
    content: "\f445"
}

.bi-journal:before {
    content: "\f446"
}

.bi-journals:before {
    content: "\f447"
}

.bi-joystick:before {
    content: "\f448"
}

.bi-justify-left:before {
    content: "\f449"
}

.bi-justify-right:before {
    content: "\f44a"
}

.bi-justify:before {
    content: "\f44b"
}

.bi-kanban-fill:before {
    content: "\f44c"
}

.bi-kanban:before {
    content: "\f44d"
}

.bi-key-fill:before {
    content: "\f44e"
}

.bi-key:before {
    content: "\f44f"
}

.bi-keyboard-fill:before {
    content: "\f450"
}

.bi-keyboard:before {
    content: "\f451"
}

.bi-ladder:before {
    content: "\f452"
}

.bi-lamp-fill:before {
    content: "\f453"
}

.bi-lamp:before {
    content: "\f454"
}

.bi-laptop-fill:before {
    content: "\f455"
}

.bi-laptop:before {
    content: "\f456"
}

.bi-layer-backward:before {
    content: "\f457"
}

.bi-layer-forward:before {
    content: "\f458"
}

.bi-layers-fill:before {
    content: "\f459"
}

.bi-layers-half:before {
    content: "\f45a"
}

.bi-layers:before {
    content: "\f45b"
}

.bi-layout-sidebar-inset-reverse:before {
    content: "\f45c"
}

.bi-layout-sidebar-inset:before {
    content: "\f45d"
}

.bi-layout-sidebar-reverse:before {
    content: "\f45e"
}

.bi-layout-sidebar:before {
    content: "\f45f"
}

.bi-layout-split:before {
    content: "\f460"
}

.bi-layout-text-sidebar-reverse:before {
    content: "\f461"
}

.bi-layout-text-sidebar:before {
    content: "\f462"
}

.bi-layout-text-window-reverse:before {
    content: "\f463"
}

.bi-layout-text-window:before {
    content: "\f464"
}

.bi-layout-three-columns:before {
    content: "\f465"
}

.bi-layout-wtf:before {
    content: "\f466"
}

.bi-life-preserver:before {
    content: "\f467"
}

.bi-lightbulb-fill:before {
    content: "\f468"
}

.bi-lightbulb-off-fill:before {
    content: "\f469"
}

.bi-lightbulb-off:before {
    content: "\f46a"
}

.bi-lightbulb:before {
    content: "\f46b"
}

.bi-lightning-charge-fill:before {
    content: "\f46c"
}

.bi-lightning-charge:before {
    content: "\f46d"
}

.bi-lightning-fill:before {
    content: "\f46e"
}

.bi-lightning:before {
    content: "\f46f"
}

.bi-link-45deg:before {
    content: "\f470"
}

.bi-link:before {
    content: "\f471"
}

.bi-linkedin:before {
    content: "\f472"
}

.bi-list-check:before {
    content: "\f473"
}

.bi-list-nested:before {
    content: "\f474"
}

.bi-list-ol:before {
    content: "\f475"
}

.bi-list-stars:before {
    content: "\f476"
}

.bi-list-task:before {
    content: "\f477"
}

.bi-list-ul:before {
    content: "\f478"
}

.bi-list:before {
    content: "\f479"
}

.bi-lock-fill:before {
    content: "\f47a"
}

.bi-lock:before {
    content: "\f47b"
}

.bi-mailbox:before {
    content: "\f47c"
}

.bi-mailbox2:before {
    content: "\f47d"
}

.bi-map-fill:before {
    content: "\f47e"
}

.bi-map:before {
    content: "\f47f"
}

.bi-markdown-fill:before {
    content: "\f480"
}

.bi-markdown:before {
    content: "\f481"
}

.bi-mask:before {
    content: "\f482"
}

.bi-megaphone-fill:before {
    content: "\f483"
}

.bi-megaphone:before {
    content: "\f484"
}

.bi-menu-app-fill:before {
    content: "\f485"
}

.bi-menu-app:before {
    content: "\f486"
}

.bi-menu-button-fill:before {
    content: "\f487"
}

.bi-menu-button-wide-fill:before {
    content: "\f488"
}

.bi-menu-button-wide:before {
    content: "\f489"
}

.bi-menu-button:before {
    content: "\f48a"
}

.bi-menu-down:before {
    content: "\f48b"
}

.bi-menu-up:before {
    content: "\f48c"
}

.bi-mic-fill:before {
    content: "\f48d"
}

.bi-mic-mute-fill:before {
    content: "\f48e"
}

.bi-mic-mute:before {
    content: "\f48f"
}

.bi-mic:before {
    content: "\f490"
}

.bi-minecart-loaded:before {
    content: "\f491"
}

.bi-minecart:before {
    content: "\f492"
}

.bi-moisture:before {
    content: "\f493"
}

.bi-moon-fill:before {
    content: "\f494"
}

.bi-moon-stars-fill:before {
    content: "\f495"
}

.bi-moon-stars:before {
    content: "\f496"
}

.bi-moon:before {
    content: "\f497"
}

.bi-mouse-fill:before {
    content: "\f498"
}

.bi-mouse:before {
    content: "\f499"
}

.bi-mouse2-fill:before {
    content: "\f49a"
}

.bi-mouse2:before {
    content: "\f49b"
}

.bi-mouse3-fill:before {
    content: "\f49c"
}

.bi-mouse3:before {
    content: "\f49d"
}

.bi-music-note-beamed:before {
    content: "\f49e"
}

.bi-music-note-list:before {
    content: "\f49f"
}

.bi-music-note:before {
    content: "\f4a0"
}

.bi-music-player-fill:before {
    content: "\f4a1"
}

.bi-music-player:before {
    content: "\f4a2"
}

.bi-newspaper:before {
    content: "\f4a3"
}

.bi-node-minus-fill:before {
    content: "\f4a4"
}

.bi-node-minus:before {
    content: "\f4a5"
}

.bi-node-plus-fill:before {
    content: "\f4a6"
}

.bi-node-plus:before {
    content: "\f4a7"
}

.bi-nut-fill:before {
    content: "\f4a8"
}

.bi-nut:before {
    content: "\f4a9"
}

.bi-octagon-fill:before {
    content: "\f4aa"
}

.bi-octagon-half:before {
    content: "\f4ab"
}

.bi-octagon:before {
    content: "\f4ac"
}

.bi-option:before {
    content: "\f4ad"
}

.bi-outlet:before {
    content: "\f4ae"
}

.bi-paint-bucket:before {
    content: "\f4af"
}

.bi-palette-fill:before {
    content: "\f4b0"
}

.bi-palette:before {
    content: "\f4b1"
}

.bi-palette2:before {
    content: "\f4b2"
}

.bi-paperclip:before {
    content: "\f4b3"
}

.bi-paragraph:before {
    content: "\f4b4"
}

.bi-patch-check-fill:before {
    content: "\f4b5"
}

.bi-patch-check:before {
    content: "\f4b6"
}

.bi-patch-exclamation-fill:before {
    content: "\f4b7"
}

.bi-patch-exclamation:before {
    content: "\f4b8"
}

.bi-patch-minus-fill:before {
    content: "\f4b9"
}

.bi-patch-minus:before {
    content: "\f4ba"
}

.bi-patch-plus-fill:before {
    content: "\f4bb"
}

.bi-patch-plus:before {
    content: "\f4bc"
}

.bi-patch-question-fill:before {
    content: "\f4bd"
}

.bi-patch-question:before {
    content: "\f4be"
}

.bi-pause-btn-fill:before {
    content: "\f4bf"
}

.bi-pause-btn:before {
    content: "\f4c0"
}

.bi-pause-circle-fill:before {
    content: "\f4c1"
}

.bi-pause-circle:before {
    content: "\f4c2"
}

.bi-pause-fill:before {
    content: "\f4c3"
}

.bi-pause:before {
    content: "\f4c4"
}

.bi-peace-fill:before {
    content: "\f4c5"
}

.bi-peace:before {
    content: "\f4c6"
}

.bi-pen-fill:before {
    content: "\f4c7"
}

.bi-pen:before {
    content: "\f4c8"
}

.bi-pencil-fill:before {
    content: "\f4c9"
}

.bi-pencil-square:before {
    content: "\f4ca"
}

.bi-pencil:before {
    content: "\f4cb"
}

.bi-pentagon-fill:before {
    content: "\f4cc"
}

.bi-pentagon-half:before {
    content: "\f4cd"
}

.bi-pentagon:before {
    content: "\f4ce"
}

.bi-people-fill:before {
    content: "\f4cf"
}

.bi-people:before {
    content: "\f4d0"
}

.bi-percent:before {
    content: "\f4d1"
}

.bi-person-badge-fill:before {
    content: "\f4d2"
}

.bi-person-badge:before {
    content: "\f4d3"
}

.bi-person-bounding-box:before {
    content: "\f4d4"
}

.bi-person-check-fill:before {
    content: "\f4d5"
}

.bi-person-check:before {
    content: "\f4d6"
}

.bi-person-circle:before {
    content: "\f4d7"
}

.bi-person-dash-fill:before {
    content: "\f4d8"
}

.bi-person-dash:before {
    content: "\f4d9"
}

.bi-person-fill:before {
    content: "\f4da"
}

.bi-person-lines-fill:before {
    content: "\f4db"
}

.bi-person-plus-fill:before {
    content: "\f4dc"
}

.bi-person-plus:before {
    content: "\f4dd"
}

.bi-person-square:before {
    content: "\f4de"
}

.bi-person-x-fill:before {
    content: "\f4df"
}

.bi-person-x:before {
    content: "\f4e0"
}

.bi-person:before {
    content: "\f4e1"
}

.bi-phone-fill:before {
    content: "\f4e2"
}

.bi-phone-landscape-fill:before {
    content: "\f4e3"
}

.bi-phone-landscape:before {
    content: "\f4e4"
}

.bi-phone-vibrate-fill:before {
    content: "\f4e5"
}

.bi-phone-vibrate:before {
    content: "\f4e6"
}

.bi-phone:before {
    content: "\f4e7"
}

.bi-pie-chart-fill:before {
    content: "\f4e8"
}

.bi-pie-chart:before {
    content: "\f4e9"
}

.bi-pin-angle-fill:before {
    content: "\f4ea"
}

.bi-pin-angle:before {
    content: "\f4eb"
}

.bi-pin-fill:before {
    content: "\f4ec"
}

.bi-pin:before {
    content: "\f4ed"
}

.bi-pip-fill:before {
    content: "\f4ee"
}

.bi-pip:before {
    content: "\f4ef"
}

.bi-play-btn-fill:before {
    content: "\f4f0"
}

.bi-play-btn:before {
    content: "\f4f1"
}

.bi-play-circle-fill:before {
    content: "\f4f2"
}

.bi-play-circle:before {
    content: "\f4f3"
}

.bi-play-fill:before {
    content: "\f4f4"
}

.bi-play:before {
    content: "\f4f5"
}

.bi-plug-fill:before {
    content: "\f4f6"
}

.bi-plug:before {
    content: "\f4f7"
}

.bi-plus-circle-dotted:before {
    content: "\f4f8"
}

.bi-plus-circle-fill:before {
    content: "\f4f9"
}

.bi-plus-circle:before {
    content: "\f4fa"
}

.bi-plus-square-dotted:before {
    content: "\f4fb"
}

.bi-plus-square-fill:before {
    content: "\f4fc"
}

.bi-plus-square:before {
    content: "\f4fd"
}

.bi-plus:before {
    content: "\f4fe"
}

.bi-power:before {
    content: "\f4ff"
}

.bi-printer-fill:before {
    content: "\f500"
}

.bi-printer:before {
    content: "\f501"
}

.bi-puzzle-fill:before {
    content: "\f502"
}

.bi-puzzle:before {
    content: "\f503"
}

.bi-question-circle-fill:before {
    content: "\f504"
}

.bi-question-circle:before {
    content: "\f505"
}

.bi-question-diamond-fill:before {
    content: "\f506"
}

.bi-question-diamond:before {
    content: "\f507"
}

.bi-question-octagon-fill:before {
    content: "\f508"
}

.bi-question-octagon:before {
    content: "\f509"
}

.bi-question-square-fill:before {
    content: "\f50a"
}

.bi-question-square:before {
    content: "\f50b"
}

.bi-question:before {
    content: "\f50c"
}

.bi-rainbow:before {
    content: "\f50d"
}

.bi-receipt-cutoff:before {
    content: "\f50e"
}

.bi-receipt:before {
    content: "\f50f"
}

.bi-reception-0:before {
    content: "\f510"
}

.bi-reception-1:before {
    content: "\f511"
}

.bi-reception-2:before {
    content: "\f512"
}

.bi-reception-3:before {
    content: "\f513"
}

.bi-reception-4:before {
    content: "\f514"
}

.bi-record-btn-fill:before {
    content: "\f515"
}

.bi-record-btn:before {
    content: "\f516"
}

.bi-record-circle-fill:before {
    content: "\f517"
}

.bi-record-circle:before {
    content: "\f518"
}

.bi-record-fill:before {
    content: "\f519"
}

.bi-record:before {
    content: "\f51a"
}

.bi-record2-fill:before {
    content: "\f51b"
}

.bi-record2:before {
    content: "\f51c"
}

.bi-reply-all-fill:before {
    content: "\f51d"
}

.bi-reply-all:before {
    content: "\f51e"
}

.bi-reply-fill:before {
    content: "\f51f"
}

.bi-reply:before {
    content: "\f520"
}

.bi-rss-fill:before {
    content: "\f521"
}

.bi-rss:before {
    content: "\f522"
}

.bi-rulers:before {
    content: "\f523"
}

.bi-save-fill:before {
    content: "\f524"
}

.bi-save:before {
    content: "\f525"
}

.bi-save2-fill:before {
    content: "\f526"
}

.bi-save2:before {
    content: "\f527"
}

.bi-scissors:before {
    content: "\f528"
}

.bi-screwdriver:before {
    content: "\f529"
}

.bi-search:before {
    content: "\f52a"
}

.bi-segmented-nav:before {
    content: "\f52b"
}

.bi-server:before {
    content: "\f52c"
}

.bi-share-fill:before {
    content: "\f52d"
}

.bi-share:before {
    content: "\f52e"
}

.bi-shield-check:before {
    content: "\f52f"
}

.bi-shield-exclamation:before {
    content: "\f530"
}

.bi-shield-fill-check:before {
    content: "\f531"
}

.bi-shield-fill-exclamation:before {
    content: "\f532"
}

.bi-shield-fill-minus:before {
    content: "\f533"
}

.bi-shield-fill-plus:before {
    content: "\f534"
}

.bi-shield-fill-x:before {
    content: "\f535"
}

.bi-shield-fill:before {
    content: "\f536"
}

.bi-shield-lock-fill:before {
    content: "\f537"
}

.bi-shield-lock:before {
    content: "\f538"
}

.bi-shield-minus:before {
    content: "\f539"
}

.bi-shield-plus:before {
    content: "\f53a"
}

.bi-shield-shaded:before {
    content: "\f53b"
}

.bi-shield-slash-fill:before {
    content: "\f53c"
}

.bi-shield-slash:before {
    content: "\f53d"
}

.bi-shield-x:before {
    content: "\f53e"
}

.bi-shield:before {
    content: "\f53f"
}

.bi-shift-fill:before {
    content: "\f540"
}

.bi-shift:before {
    content: "\f541"
}

.bi-shop-window:before {
    content: "\f542"
}

.bi-shop:before {
    content: "\f543"
}

.bi-shuffle:before {
    content: "\f544"
}

.bi-signpost-2-fill:before {
    content: "\f545"
}

.bi-signpost-2:before {
    content: "\f546"
}

.bi-signpost-fill:before {
    content: "\f547"
}

.bi-signpost-split-fill:before {
    content: "\f548"
}

.bi-signpost-split:before {
    content: "\f549"
}

.bi-signpost:before {
    content: "\f54a"
}

.bi-sim-fill:before {
    content: "\f54b"
}

.bi-sim:before {
    content: "\f54c"
}

.bi-skip-backward-btn-fill:before {
    content: "\f54d"
}

.bi-skip-backward-btn:before {
    content: "\f54e"
}

.bi-skip-backward-circle-fill:before {
    content: "\f54f"
}

.bi-skip-backward-circle:before {
    content: "\f550"
}

.bi-skip-backward-fill:before {
    content: "\f551"
}

.bi-skip-backward:before {
    content: "\f552"
}

.bi-skip-end-btn-fill:before {
    content: "\f553"
}

.bi-skip-end-btn:before {
    content: "\f554"
}

.bi-skip-end-circle-fill:before {
    content: "\f555"
}

.bi-skip-end-circle:before {
    content: "\f556"
}

.bi-skip-end-fill:before {
    content: "\f557"
}

.bi-skip-end:before {
    content: "\f558"
}

.bi-skip-forward-btn-fill:before {
    content: "\f559"
}

.bi-skip-forward-btn:before {
    content: "\f55a"
}

.bi-skip-forward-circle-fill:before {
    content: "\f55b"
}

.bi-skip-forward-circle:before {
    content: "\f55c"
}

.bi-skip-forward-fill:before {
    content: "\f55d"
}

.bi-skip-forward:before {
    content: "\f55e"
}

.bi-skip-start-btn-fill:before {
    content: "\f55f"
}

.bi-skip-start-btn:before {
    content: "\f560"
}

.bi-skip-start-circle-fill:before {
    content: "\f561"
}

.bi-skip-start-circle:before {
    content: "\f562"
}

.bi-skip-start-fill:before {
    content: "\f563"
}

.bi-skip-start:before {
    content: "\f564"
}

.bi-slack:before {
    content: "\f565"
}

.bi-slash-circle-fill:before {
    content: "\f566"
}

.bi-slash-circle:before {
    content: "\f567"
}

.bi-slash-square-fill:before {
    content: "\f568"
}

.bi-slash-square:before {
    content: "\f569"
}

.bi-slash:before {
    content: "\f56a"
}

.bi-sliders:before {
    content: "\f56b"
}

.bi-smartwatch:before {
    content: "\f56c"
}

.bi-snow:before {
    content: "\f56d"
}

.bi-snow2:before {
    content: "\f56e"
}

.bi-snow3:before {
    content: "\f56f"
}

.bi-sort-alpha-down-alt:before {
    content: "\f570"
}

.bi-sort-alpha-down:before {
    content: "\f571"
}

.bi-sort-alpha-up-alt:before {
    content: "\f572"
}

.bi-sort-alpha-up:before {
    content: "\f573"
}

.bi-sort-down-alt:before {
    content: "\f574"
}

.bi-sort-down:before {
    content: "\f575"
}

.bi-sort-numeric-down-alt:before {
    content: "\f576"
}

.bi-sort-numeric-down:before {
    content: "\f577"
}

.bi-sort-numeric-up-alt:before {
    content: "\f578"
}

.bi-sort-numeric-up:before {
    content: "\f579"
}

.bi-sort-up-alt:before {
    content: "\f57a"
}

.bi-sort-up:before {
    content: "\f57b"
}

.bi-soundwave:before {
    content: "\f57c"
}

.bi-speaker-fill:before {
    content: "\f57d"
}

.bi-speaker:before {
    content: "\f57e"
}

.bi-speedometer:before {
    content: "\f57f"
}

.bi-speedometer2:before {
    content: "\f580"
}

.bi-spellcheck:before {
    content: "\f581"
}

.bi-square-fill:before {
    content: "\f582"
}

.bi-square-half:before {
    content: "\f583"
}

.bi-square:before {
    content: "\f584"
}

.bi-stack:before {
    content: "\f585"
}

.bi-star-fill:before {
    content: "\f586"
}

.bi-star-half:before {
    content: "\f587"
}

.bi-star:before {
    content: "\f588"
}

.bi-stars:before {
    content: "\f589"
}

.bi-stickies-fill:before {
    content: "\f58a"
}

.bi-stickies:before {
    content: "\f58b"
}

.bi-sticky-fill:before {
    content: "\f58c"
}

.bi-sticky:before {
    content: "\f58d"
}

.bi-stop-btn-fill:before {
    content: "\f58e"
}

.bi-stop-btn:before {
    content: "\f58f"
}

.bi-stop-circle-fill:before {
    content: "\f590"
}

.bi-stop-circle:before {
    content: "\f591"
}

.bi-stop-fill:before {
    content: "\f592"
}

.bi-stop:before {
    content: "\f593"
}

.bi-stoplights-fill:before {
    content: "\f594"
}

.bi-stoplights:before {
    content: "\f595"
}

.bi-stopwatch-fill:before {
    content: "\f596"
}

.bi-stopwatch:before {
    content: "\f597"
}

.bi-subtract:before {
    content: "\f598"
}

.bi-suit-club-fill:before {
    content: "\f599"
}

.bi-suit-club:before {
    content: "\f59a"
}

.bi-suit-diamond-fill:before {
    content: "\f59b"
}

.bi-suit-diamond:before {
    content: "\f59c"
}

.bi-suit-heart-fill:before {
    content: "\f59d"
}

.bi-suit-heart:before {
    content: "\f59e"
}

.bi-suit-spade-fill:before {
    content: "\f59f"
}

.bi-suit-spade:before {
    content: "\f5a0"
}

.bi-sun-fill:before {
    content: "\f5a1"
}

.bi-sun:before {
    content: "\f5a2"
}

.bi-sunglasses:before {
    content: "\f5a3"
}

.bi-sunrise-fill:before {
    content: "\f5a4"
}

.bi-sunrise:before {
    content: "\f5a5"
}

.bi-sunset-fill:before {
    content: "\f5a6"
}

.bi-sunset:before {
    content: "\f5a7"
}

.bi-symmetry-horizontal:before {
    content: "\f5a8"
}

.bi-symmetry-vertical:before {
    content: "\f5a9"
}

.bi-table:before {
    content: "\f5aa"
}

.bi-tablet-fill:before {
    content: "\f5ab"
}

.bi-tablet-landscape-fill:before {
    content: "\f5ac"
}

.bi-tablet-landscape:before {
    content: "\f5ad"
}

.bi-tablet:before {
    content: "\f5ae"
}

.bi-tag-fill:before {
    content: "\f5af"
}

.bi-tag:before {
    content: "\f5b0"
}

.bi-tags-fill:before {
    content: "\f5b1"
}

.bi-tags:before {
    content: "\f5b2"
}

.bi-telegram:before {
    content: "\f5b3"
}

.bi-telephone-fill:before {
    content: "\f5b4"
}

.bi-telephone-forward-fill:before {
    content: "\f5b5"
}

.bi-telephone-forward:before {
    content: "\f5b6"
}

.bi-telephone-inbound-fill:before {
    content: "\f5b7"
}

.bi-telephone-inbound:before {
    content: "\f5b8"
}

.bi-telephone-minus-fill:before {
    content: "\f5b9"
}

.bi-telephone-minus:before {
    content: "\f5ba"
}

.bi-telephone-outbound-fill:before {
    content: "\f5bb"
}

.bi-telephone-outbound:before {
    content: "\f5bc"
}

.bi-telephone-plus-fill:before {
    content: "\f5bd"
}

.bi-telephone-plus:before {
    content: "\f5be"
}

.bi-telephone-x-fill:before {
    content: "\f5bf"
}

.bi-telephone-x:before {
    content: "\f5c0"
}

.bi-telephone:before {
    content: "\f5c1"
}

.bi-terminal-fill:before {
    content: "\f5c2"
}

.bi-terminal:before {
    content: "\f5c3"
}

.bi-text-center:before {
    content: "\f5c4"
}

.bi-text-indent-left:before {
    content: "\f5c5"
}

.bi-text-indent-right:before {
    content: "\f5c6"
}

.bi-text-left:before {
    content: "\f5c7"
}

.bi-text-paragraph:before {
    content: "\f5c8"
}

.bi-text-right:before {
    content: "\f5c9"
}

.bi-textarea-resize:before {
    content: "\f5ca"
}

.bi-textarea-t:before {
    content: "\f5cb"
}

.bi-textarea:before {
    content: "\f5cc"
}

.bi-thermometer-half:before {
    content: "\f5cd"
}

.bi-thermometer-high:before {
    content: "\f5ce"
}

.bi-thermometer-low:before {
    content: "\f5cf"
}

.bi-thermometer-snow:before {
    content: "\f5d0"
}

.bi-thermometer-sun:before {
    content: "\f5d1"
}

.bi-thermometer:before {
    content: "\f5d2"
}

.bi-three-dots-vertical:before {
    content: "\f5d3"
}

.bi-three-dots:before {
    content: "\f5d4"
}

.bi-toggle-off:before {
    content: "\f5d5"
}

.bi-toggle-on:before {
    content: "\f5d6"
}

.bi-toggle2-off:before {
    content: "\f5d7"
}

.bi-toggle2-on:before {
    content: "\f5d8"
}

.bi-toggles:before {
    content: "\f5d9"
}

.bi-toggles2:before {
    content: "\f5da"
}

.bi-tools:before {
    content: "\f5db"
}

.bi-tornado:before {
    content: "\f5dc"
}

.bi-trash-fill:before {
    content: "\f5dd"
}

.bi-trash:before {
    content: "\f5de"
}

.bi-trash2-fill:before {
    content: "\f5df"
}

.bi-trash2:before {
    content: "\f5e0"
}

.bi-tree-fill:before {
    content: "\f5e1"
}

.bi-tree:before {
    content: "\f5e2"
}

.bi-triangle-fill:before {
    content: "\f5e3"
}

.bi-triangle-half:before {
    content: "\f5e4"
}

.bi-triangle:before {
    content: "\f5e5"
}

.bi-trophy-fill:before {
    content: "\f5e6"
}

.bi-trophy:before {
    content: "\f5e7"
}

.bi-tropical-storm:before {
    content: "\f5e8"
}

.bi-truck-flatbed:before {
    content: "\f5e9"
}

.bi-truck:before {
    content: "\f5ea"
}

.bi-tsunami:before {
    content: "\f5eb"
}

.bi-tv-fill:before {
    content: "\f5ec"
}

.bi-tv:before {
    content: "\f5ed"
}

.bi-twitch:before {
    content: "\f5ee"
}

.bi-twitter:before {
    content: "\f5ef"
}

.bi-type-bold:before {
    content: "\f5f0"
}

.bi-type-h1:before {
    content: "\f5f1"
}

.bi-type-h2:before {
    content: "\f5f2"
}

.bi-type-h3:before {
    content: "\f5f3"
}

.bi-type-italic:before {
    content: "\f5f4"
}

.bi-type-strikethrough:before {
    content: "\f5f5"
}

.bi-type-underline:before {
    content: "\f5f6"
}

.bi-type:before {
    content: "\f5f7"
}

.bi-ui-checks-grid:before {
    content: "\f5f8"
}

.bi-ui-checks:before {
    content: "\f5f9"
}

.bi-ui-radios-grid:before {
    content: "\f5fa"
}

.bi-ui-radios:before {
    content: "\f5fb"
}

.bi-umbrella-fill:before {
    content: "\f5fc"
}

.bi-umbrella:before {
    content: "\f5fd"
}

.bi-union:before {
    content: "\f5fe"
}

.bi-unlock-fill:before {
    content: "\f5ff"
}

.bi-unlock:before {
    content: "\f600"
}

.bi-upc-scan:before {
    content: "\f601"
}

.bi-upc:before {
    content: "\f602"
}

.bi-upload:before {
    content: "\f603"
}

.bi-vector-pen:before {
    content: "\f604"
}

.bi-view-list:before {
    content: "\f605"
}

.bi-view-stacked:before {
    content: "\f606"
}

.bi-vinyl-fill:before {
    content: "\f607"
}

.bi-vinyl:before {
    content: "\f608"
}

.bi-voicemail:before {
    content: "\f609"
}

.bi-volume-down-fill:before {
    content: "\f60a"
}

.bi-volume-down:before {
    content: "\f60b"
}

.bi-volume-mute-fill:before {
    content: "\f60c"
}

.bi-volume-mute:before {
    content: "\f60d"
}

.bi-volume-off-fill:before {
    content: "\f60e"
}

.bi-volume-off:before {
    content: "\f60f"
}

.bi-volume-up-fill:before {
    content: "\f610"
}

.bi-volume-up:before {
    content: "\f611"
}

.bi-vr:before {
    content: "\f612"
}

.bi-wallet-fill:before {
    content: "\f613"
}

.bi-wallet:before {
    content: "\f614"
}

.bi-wallet2:before {
    content: "\f615"
}

.bi-watch:before {
    content: "\f616"
}

.bi-water:before {
    content: "\f617"
}

.bi-whatsapp:before {
    content: "\f618"
}

.bi-wifi-1:before {
    content: "\f619"
}

.bi-wifi-2:before {
    content: "\f61a"
}

.bi-wifi-off:before {
    content: "\f61b"
}

.bi-wifi:before {
    content: "\f61c"
}

.bi-wind:before {
    content: "\f61d"
}

.bi-window-dock:before {
    content: "\f61e"
}

.bi-window-sidebar:before {
    content: "\f61f"
}

.bi-window:before {
    content: "\f620"
}

.bi-wrench:before {
    content: "\f621"
}

.bi-x-circle-fill:before {
    content: "\f622"
}

.bi-x-circle:before {
    content: "\f623"
}

.bi-x-diamond-fill:before {
    content: "\f624"
}

.bi-x-diamond:before {
    content: "\f625"
}

.bi-x-octagon-fill:before {
    content: "\f626"
}

.bi-x-octagon:before {
    content: "\f627"
}

.bi-x-square-fill:before {
    content: "\f628"
}

.bi-x-square:before {
    content: "\f629"
}

.bi-x:before {
    content: "\f62a"
}

.bi-youtube:before {
    content: "\f62b"
}

.bi-zoom-in:before {
    content: "\f62c"
}

.bi-zoom-out:before {
    content: "\f62d"
}

.bi-bank:before {
    content: "\f62e"
}

.bi-bank2:before {
    content: "\f62f"
}

.bi-bell-slash-fill:before {
    content: "\f630"
}

.bi-bell-slash:before {
    content: "\f631"
}

.bi-cash-coin:before {
    content: "\f632"
}

.bi-check-lg:before {
    content: "\f633"
}

.bi-coin:before {
    content: "\f634"
}

.bi-currency-bitcoin:before {
    content: "\f635"
}

.bi-currency-dollar:before {
    content: "\f636"
}

.bi-currency-euro:before {
    content: "\f637"
}

.bi-currency-exchange:before {
    content: "\f638"
}

.bi-currency-pound:before {
    content: "\f639"
}

.bi-currency-yen:before {
    content: "\f63a"
}

.bi-dash-lg:before {
    content: "\f63b"
}

.bi-exclamation-lg:before {
    content: "\f63c"
}

.bi-file-earmark-pdf-fill:before {
    content: "\f63d"
}

.bi-file-earmark-pdf:before {
    content: "\f63e"
}

.bi-file-pdf-fill:before {
    content: "\f63f"
}

.bi-file-pdf:before {
    content: "\f640"
}

.bi-gender-ambiguous:before {
    content: "\f641"
}

.bi-gender-female:before {
    content: "\f642"
}

.bi-gender-male:before {
    content: "\f643"
}

.bi-gender-trans:before {
    content: "\f644"
}

.bi-headset-vr:before {
    content: "\f645"
}

.bi-info-lg:before {
    content: "\f646"
}

.bi-mastodon:before {
    content: "\f647"
}

.bi-messenger:before {
    content: "\f648"
}

.bi-piggy-bank-fill:before {
    content: "\f649"
}

.bi-piggy-bank:before {
    content: "\f64a"
}

.bi-pin-map-fill:before {
    content: "\f64b"
}

.bi-pin-map:before {
    content: "\f64c"
}

.bi-plus-lg:before {
    content: "\f64d"
}

.bi-question-lg:before {
    content: "\f64e"
}

.bi-recycle:before {
    content: "\f64f"
}

.bi-reddit:before {
    content: "\f650"
}

.bi-safe-fill:before {
    content: "\f651"
}

.bi-safe2-fill:before {
    content: "\f652"
}

.bi-safe2:before {
    content: "\f653"
}

.bi-sd-card-fill:before {
    content: "\f654"
}

.bi-sd-card:before {
    content: "\f655"
}

.bi-skype:before {
    content: "\f656"
}

.bi-slash-lg:before {
    content: "\f657"
}

.bi-translate:before {
    content: "\f658"
}

.bi-x-lg:before {
    content: "\f659"
}

.bi-safe:before {
    content: "\f65a"
}

.bi-apple:before {
    content: "\f65b"
}

.bi-microsoft:before {
    content: "\f65d"
}

.bi-windows:before {
    content: "\f65e"
}

.bi-behance:before {
    content: "\f65c"
}

.bi-dribbble:before {
    content: "\f65f"
}

.bi-line:before {
    content: "\f660"
}

.bi-medium:before {
    content: "\f661"
}

.bi-paypal:before {
    content: "\f662"
}

.bi-pinterest:before {
    content: "\f663"
}

.bi-signal:before {
    content: "\f664"
}

.bi-snapchat:before {
    content: "\f665"
}

.bi-spotify:before {
    content: "\f666"
}

.bi-stack-overflow:before {
    content: "\f667"
}

.bi-strava:before {
    content: "\f668"
}

.bi-wordpress:before {
    content: "\f669"
}

.bi-vimeo:before {
    content: "\f66a"
}

.bi-activity:before {
    content: "\f66b"
}

.bi-easel2-fill:before {
    content: "\f66c"
}

.bi-easel2:before {
    content: "\f66d"
}

.bi-easel3-fill:before {
    content: "\f66e"
}

.bi-easel3:before {
    content: "\f66f"
}

.bi-fan:before {
    content: "\f670"
}

.bi-fingerprint:before {
    content: "\f671"
}

.bi-graph-down-arrow:before {
    content: "\f672"
}

.bi-graph-up-arrow:before {
    content: "\f673"
}

.bi-hypnotize:before {
    content: "\f674"
}

.bi-magic:before {
    content: "\f675"
}

.bi-person-rolodex:before {
    content: "\f676"
}

.bi-person-video:before {
    content: "\f677"
}

.bi-person-video2:before {
    content: "\f678"
}

.bi-person-video3:before {
    content: "\f679"
}

.bi-person-workspace:before {
    content: "\f67a"
}

.bi-radioactive:before {
    content: "\f67b"
}

.bi-webcam-fill:before {
    content: "\f67c"
}

.bi-webcam:before {
    content: "\f67d"
}

.bi-yin-yang:before {
    content: "\f67e"
}

.bi-bandaid-fill:before {
    content: "\f680"
}

.bi-bandaid:before {
    content: "\f681"
}

.bi-bluetooth:before {
    content: "\f682"
}

.bi-body-text:before {
    content: "\f683"
}

.bi-boombox:before {
    content: "\f684"
}

.bi-boxes:before {
    content: "\f685"
}

.bi-dpad-fill:before {
    content: "\f686"
}

.bi-dpad:before {
    content: "\f687"
}

.bi-ear-fill:before {
    content: "\f688"
}

.bi-ear:before {
    content: "\f689"
}

.bi-envelope-check-fill:before {
    content: "\f68b"
}

.bi-envelope-check:before {
    content: "\f68c"
}

.bi-envelope-dash-fill:before {
    content: "\f68e"
}

.bi-envelope-dash:before {
    content: "\f68f"
}

.bi-envelope-exclamation-fill:before {
    content: "\f691"
}

.bi-envelope-exclamation:before {
    content: "\f692"
}

.bi-envelope-plus-fill:before {
    content: "\f693"
}

.bi-envelope-plus:before {
    content: "\f694"
}

.bi-envelope-slash-fill:before {
    content: "\f696"
}

.bi-envelope-slash:before {
    content: "\f697"
}

.bi-envelope-x-fill:before {
    content: "\f699"
}

.bi-envelope-x:before {
    content: "\f69a"
}

.bi-explicit-fill:before {
    content: "\f69b"
}

.bi-explicit:before {
    content: "\f69c"
}

.bi-git:before {
    content: "\f69d"
}

.bi-infinity:before {
    content: "\f69e"
}

.bi-list-columns-reverse:before {
    content: "\f69f"
}

.bi-list-columns:before {
    content: "\f6a0"
}

.bi-meta:before {
    content: "\f6a1"
}

.bi-nintendo-switch:before {
    content: "\f6a4"
}

.bi-pc-display-horizontal:before {
    content: "\f6a5"
}

.bi-pc-display:before {
    content: "\f6a6"
}

.bi-pc-horizontal:before {
    content: "\f6a7"
}

.bi-pc:before {
    content: "\f6a8"
}

.bi-playstation:before {
    content: "\f6a9"
}

.bi-plus-slash-minus:before {
    content: "\f6aa"
}

.bi-projector-fill:before {
    content: "\f6ab"
}

.bi-projector:before {
    content: "\f6ac"
}

.bi-qr-code-scan:before {
    content: "\f6ad"
}

.bi-qr-code:before {
    content: "\f6ae"
}

.bi-quora:before {
    content: "\f6af"
}

.bi-quote:before {
    content: "\f6b0"
}

.bi-robot:before {
    content: "\f6b1"
}

.bi-send-check-fill:before {
    content: "\f6b2"
}

.bi-send-check:before {
    content: "\f6b3"
}

.bi-send-dash-fill:before {
    content: "\f6b4"
}

.bi-send-dash:before {
    content: "\f6b5"
}

.bi-send-exclamation-fill:before {
    content: "\f6b7"
}

.bi-send-exclamation:before {
    content: "\f6b8"
}

.bi-send-fill:before {
    content: "\f6b9"
}

.bi-send-plus-fill:before {
    content: "\f6ba"
}

.bi-send-plus:before {
    content: "\f6bb"
}

.bi-send-slash-fill:before {
    content: "\f6bc"
}

.bi-send-slash:before {
    content: "\f6bd"
}

.bi-send-x-fill:before {
    content: "\f6be"
}

.bi-send-x:before {
    content: "\f6bf"
}

.bi-send:before {
    content: "\f6c0"
}

.bi-steam:before {
    content: "\f6c1"
}

.bi-terminal-dash:before {
    content: "\f6c3"
}

.bi-terminal-plus:before {
    content: "\f6c4"
}

.bi-terminal-split:before {
    content: "\f6c5"
}

.bi-ticket-detailed-fill:before {
    content: "\f6c6"
}

.bi-ticket-detailed:before {
    content: "\f6c7"
}

.bi-ticket-fill:before {
    content: "\f6c8"
}

.bi-ticket-perforated-fill:before {
    content: "\f6c9"
}

.bi-ticket-perforated:before {
    content: "\f6ca"
}

.bi-ticket:before {
    content: "\f6cb"
}

.bi-tiktok:before {
    content: "\f6cc"
}

.bi-window-dash:before {
    content: "\f6cd"
}

.bi-window-desktop:before {
    content: "\f6ce"
}

.bi-window-fullscreen:before {
    content: "\f6cf"
}

.bi-window-plus:before {
    content: "\f6d0"
}

.bi-window-split:before {
    content: "\f6d1"
}

.bi-window-stack:before {
    content: "\f6d2"
}

.bi-window-x:before {
    content: "\f6d3"
}

.bi-xbox:before {
    content: "\f6d4"
}

.bi-ethernet:before {
    content: "\f6d5"
}

.bi-hdmi-fill:before {
    content: "\f6d6"
}

.bi-hdmi:before {
    content: "\f6d7"
}

.bi-usb-c-fill:before {
    content: "\f6d8"
}

.bi-usb-c:before {
    content: "\f6d9"
}

.bi-usb-fill:before {
    content: "\f6da"
}

.bi-usb-plug-fill:before {
    content: "\f6db"
}

.bi-usb-plug:before {
    content: "\f6dc"
}

.bi-usb-symbol:before {
    content: "\f6dd"
}

.bi-usb:before {
    content: "\f6de"
}

.bi-boombox-fill:before {
    content: "\f6df"
}

.bi-displayport:before {
    content: "\f6e1"
}

.bi-gpu-card:before {
    content: "\f6e2"
}

.bi-memory:before {
    content: "\f6e3"
}

.bi-modem-fill:before {
    content: "\f6e4"
}

.bi-modem:before {
    content: "\f6e5"
}

.bi-motherboard-fill:before {
    content: "\f6e6"
}

.bi-motherboard:before {
    content: "\f6e7"
}

.bi-optical-audio-fill:before {
    content: "\f6e8"
}

.bi-optical-audio:before {
    content: "\f6e9"
}

.bi-pci-card:before {
    content: "\f6ea"
}

.bi-router-fill:before {
    content: "\f6eb"
}

.bi-router:before {
    content: "\f6ec"
}

.bi-thunderbolt-fill:before {
    content: "\f6ef"
}

.bi-thunderbolt:before {
    content: "\f6f0"
}

.bi-usb-drive-fill:before {
    content: "\f6f1"
}

.bi-usb-drive:before {
    content: "\f6f2"
}

.bi-usb-micro-fill:before {
    content: "\f6f3"
}

.bi-usb-micro:before {
    content: "\f6f4"
}

.bi-usb-mini-fill:before {
    content: "\f6f5"
}

.bi-usb-mini:before {
    content: "\f6f6"
}

.bi-cloud-haze2:before {
    content: "\f6f7"
}

.bi-device-hdd-fill:before {
    content: "\f6f8"
}

.bi-device-hdd:before {
    content: "\f6f9"
}

.bi-device-ssd-fill:before {
    content: "\f6fa"
}

.bi-device-ssd:before {
    content: "\f6fb"
}

.bi-displayport-fill:before {
    content: "\f6fc"
}

.bi-mortarboard-fill:before {
    content: "\f6fd"
}

.bi-mortarboard:before {
    content: "\f6fe"
}

.bi-terminal-x:before {
    content: "\f6ff"
}

.bi-arrow-through-heart-fill:before {
    content: "\f700"
}

.bi-arrow-through-heart:before {
    content: "\f701"
}

.bi-badge-sd-fill:before {
    content: "\f702"
}

.bi-badge-sd:before {
    content: "\f703"
}

.bi-bag-heart-fill:before {
    content: "\f704"
}

.bi-bag-heart:before {
    content: "\f705"
}

.bi-balloon-fill:before {
    content: "\f706"
}

.bi-balloon-heart-fill:before {
    content: "\f707"
}

.bi-balloon-heart:before {
    content: "\f708"
}

.bi-balloon:before {
    content: "\f709"
}

.bi-box2-fill:before {
    content: "\f70a"
}

.bi-box2-heart-fill:before {
    content: "\f70b"
}

.bi-box2-heart:before {
    content: "\f70c"
}

.bi-box2:before {
    content: "\f70d"
}

.bi-braces-asterisk:before {
    content: "\f70e"
}

.bi-calendar-heart-fill:before {
    content: "\f70f"
}

.bi-calendar-heart:before {
    content: "\f710"
}

.bi-calendar2-heart-fill:before {
    content: "\f711"
}

.bi-calendar2-heart:before {
    content: "\f712"
}

.bi-chat-heart-fill:before {
    content: "\f713"
}

.bi-chat-heart:before {
    content: "\f714"
}

.bi-chat-left-heart-fill:before {
    content: "\f715"
}

.bi-chat-left-heart:before {
    content: "\f716"
}

.bi-chat-right-heart-fill:before {
    content: "\f717"
}

.bi-chat-right-heart:before {
    content: "\f718"
}

.bi-chat-square-heart-fill:before {
    content: "\f719"
}

.bi-chat-square-heart:before {
    content: "\f71a"
}

.bi-clipboard-check-fill:before {
    content: "\f71b"
}

.bi-clipboard-data-fill:before {
    content: "\f71c"
}

.bi-clipboard-fill:before {
    content: "\f71d"
}

.bi-clipboard-heart-fill:before {
    content: "\f71e"
}

.bi-clipboard-heart:before {
    content: "\f71f"
}

.bi-clipboard-minus-fill:before {
    content: "\f720"
}

.bi-clipboard-plus-fill:before {
    content: "\f721"
}

.bi-clipboard-pulse:before {
    content: "\f722"
}

.bi-clipboard-x-fill:before {
    content: "\f723"
}

.bi-clipboard2-check-fill:before {
    content: "\f724"
}

.bi-clipboard2-check:before {
    content: "\f725"
}

.bi-clipboard2-data-fill:before {
    content: "\f726"
}

.bi-clipboard2-data:before {
    content: "\f727"
}

.bi-clipboard2-fill:before {
    content: "\f728"
}

.bi-clipboard2-heart-fill:before {
    content: "\f729"
}

.bi-clipboard2-heart:before {
    content: "\f72a"
}

.bi-clipboard2-minus-fill:before {
    content: "\f72b"
}

.bi-clipboard2-minus:before {
    content: "\f72c"
}

.bi-clipboard2-plus-fill:before {
    content: "\f72d"
}

.bi-clipboard2-plus:before {
    content: "\f72e"
}

.bi-clipboard2-pulse-fill:before {
    content: "\f72f"
}

.bi-clipboard2-pulse:before {
    content: "\f730"
}

.bi-clipboard2-x-fill:before {
    content: "\f731"
}

.bi-clipboard2-x:before {
    content: "\f732"
}

.bi-clipboard2:before {
    content: "\f733"
}

.bi-emoji-kiss-fill:before {
    content: "\f734"
}

.bi-emoji-kiss:before {
    content: "\f735"
}

.bi-envelope-heart-fill:before {
    content: "\f736"
}

.bi-envelope-heart:before {
    content: "\f737"
}

.bi-envelope-open-heart-fill:before {
    content: "\f738"
}

.bi-envelope-open-heart:before {
    content: "\f739"
}

.bi-envelope-paper-fill:before {
    content: "\f73a"
}

.bi-envelope-paper-heart-fill:before {
    content: "\f73b"
}

.bi-envelope-paper-heart:before {
    content: "\f73c"
}

.bi-envelope-paper:before {
    content: "\f73d"
}

.bi-filetype-aac:before {
    content: "\f73e"
}

.bi-filetype-ai:before {
    content: "\f73f"
}

.bi-filetype-bmp:before {
    content: "\f740"
}

.bi-filetype-cs:before {
    content: "\f741"
}

.bi-filetype-css:before {
    content: "\f742"
}

.bi-filetype-csv:before {
    content: "\f743"
}

.bi-filetype-doc:before {
    content: "\f744"
}

.bi-filetype-docx:before {
    content: "\f745"
}

.bi-filetype-exe:before {
    content: "\f746"
}

.bi-filetype-gif:before {
    content: "\f747"
}

.bi-filetype-heic:before {
    content: "\f748"
}

.bi-filetype-html:before {
    content: "\f749"
}

.bi-filetype-java:before {
    content: "\f74a"
}

.bi-filetype-jpg:before {
    content: "\f74b"
}

.bi-filetype-js:before {
    content: "\f74c"
}

.bi-filetype-jsx:before {
    content: "\f74d"
}

.bi-filetype-key:before {
    content: "\f74e"
}

.bi-filetype-m4p:before {
    content: "\f74f"
}

.bi-filetype-md:before {
    content: "\f750"
}

.bi-filetype-mdx:before {
    content: "\f751"
}

.bi-filetype-mov:before {
    content: "\f752"
}

.bi-filetype-mp3:before {
    content: "\f753"
}

.bi-filetype-mp4:before {
    content: "\f754"
}

.bi-filetype-otf:before {
    content: "\f755"
}

.bi-filetype-pdf:before {
    content: "\f756"
}

.bi-filetype-php:before {
    content: "\f757"
}

.bi-filetype-png:before {
    content: "\f758"
}

.bi-filetype-ppt:before {
    content: "\f75a"
}

.bi-filetype-psd:before {
    content: "\f75b"
}

.bi-filetype-py:before {
    content: "\f75c"
}

.bi-filetype-raw:before {
    content: "\f75d"
}

.bi-filetype-rb:before {
    content: "\f75e"
}

.bi-filetype-sass:before {
    content: "\f75f"
}

.bi-filetype-scss:before {
    content: "\f760"
}

.bi-filetype-sh:before {
    content: "\f761"
}

.bi-filetype-svg:before {
    content: "\f762"
}

.bi-filetype-tiff:before {
    content: "\f763"
}

.bi-filetype-tsx:before {
    content: "\f764"
}

.bi-filetype-ttf:before {
    content: "\f765"
}

.bi-filetype-txt:before {
    content: "\f766"
}

.bi-filetype-wav:before {
    content: "\f767"
}

.bi-filetype-woff:before {
    content: "\f768"
}

.bi-filetype-xls:before {
    content: "\f76a"
}

.bi-filetype-xml:before {
    content: "\f76b"
}

.bi-filetype-yml:before {
    content: "\f76c"
}

.bi-heart-arrow:before {
    content: "\f76d"
}

.bi-heart-pulse-fill:before {
    content: "\f76e"
}

.bi-heart-pulse:before {
    content: "\f76f"
}

.bi-heartbreak-fill:before {
    content: "\f770"
}

.bi-heartbreak:before {
    content: "\f771"
}

.bi-hearts:before {
    content: "\f772"
}

.bi-hospital-fill:before {
    content: "\f773"
}

.bi-hospital:before {
    content: "\f774"
}

.bi-house-heart-fill:before {
    content: "\f775"
}

.bi-house-heart:before {
    content: "\f776"
}

.bi-incognito:before {
    content: "\f777"
}

.bi-magnet-fill:before {
    content: "\f778"
}

.bi-magnet:before {
    content: "\f779"
}

.bi-person-heart:before {
    content: "\f77a"
}

.bi-person-hearts:before {
    content: "\f77b"
}

.bi-phone-flip:before {
    content: "\f77c"
}

.bi-plugin:before {
    content: "\f77d"
}

.bi-postage-fill:before {
    content: "\f77e"
}

.bi-postage-heart-fill:before {
    content: "\f77f"
}

.bi-postage-heart:before {
    content: "\f780"
}

.bi-postage:before {
    content: "\f781"
}

.bi-postcard-fill:before {
    content: "\f782"
}

.bi-postcard-heart-fill:before {
    content: "\f783"
}

.bi-postcard-heart:before {
    content: "\f784"
}

.bi-postcard:before {
    content: "\f785"
}

.bi-search-heart-fill:before {
    content: "\f786"
}

.bi-search-heart:before {
    content: "\f787"
}

.bi-sliders2-vertical:before {
    content: "\f788"
}

.bi-sliders2:before {
    content: "\f789"
}

.bi-trash3-fill:before {
    content: "\f78a"
}

.bi-trash3:before {
    content: "\f78b"
}

.bi-valentine:before {
    content: "\f78c"
}

.bi-valentine2:before {
    content: "\f78d"
}

.bi-wrench-adjustable-circle-fill:before {
    content: "\f78e"
}

.bi-wrench-adjustable-circle:before {
    content: "\f78f"
}

.bi-wrench-adjustable:before {
    content: "\f790"
}

.bi-filetype-json:before {
    content: "\f791"
}

.bi-filetype-pptx:before {
    content: "\f792"
}

.bi-filetype-xlsx:before {
    content: "\f793"
}

.bi-1-circle-fill:before {
    content: "\f796"
}

.bi-1-circle:before {
    content: "\f797"
}

.bi-1-square-fill:before {
    content: "\f798"
}

.bi-1-square:before {
    content: "\f799"
}

.bi-2-circle-fill:before {
    content: "\f79c"
}

.bi-2-circle:before {
    content: "\f79d"
}

.bi-2-square-fill:before {
    content: "\f79e"
}

.bi-2-square:before {
    content: "\f79f"
}

.bi-3-circle-fill:before {
    content: "\f7a2"
}

.bi-3-circle:before {
    content: "\f7a3"
}

.bi-3-square-fill:before {
    content: "\f7a4"
}

.bi-3-square:before {
    content: "\f7a5"
}

.bi-4-circle-fill:before {
    content: "\f7a8"
}

.bi-4-circle:before {
    content: "\f7a9"
}

.bi-4-square-fill:before {
    content: "\f7aa"
}

.bi-4-square:before {
    content: "\f7ab"
}

.bi-5-circle-fill:before {
    content: "\f7ae"
}

.bi-5-circle:before {
    content: "\f7af"
}

.bi-5-square-fill:before {
    content: "\f7b0"
}

.bi-5-square:before {
    content: "\f7b1"
}

.bi-6-circle-fill:before {
    content: "\f7b4"
}

.bi-6-circle:before {
    content: "\f7b5"
}

.bi-6-square-fill:before {
    content: "\f7b6"
}

.bi-6-square:before {
    content: "\f7b7"
}

.bi-7-circle-fill:before {
    content: "\f7ba"
}

.bi-7-circle:before {
    content: "\f7bb"
}

.bi-7-square-fill:before {
    content: "\f7bc"
}

.bi-7-square:before {
    content: "\f7bd"
}

.bi-8-circle-fill:before {
    content: "\f7c0"
}

.bi-8-circle:before {
    content: "\f7c1"
}

.bi-8-square-fill:before {
    content: "\f7c2"
}

.bi-8-square:before {
    content: "\f7c3"
}

.bi-9-circle-fill:before {
    content: "\f7c6"
}

.bi-9-circle:before {
    content: "\f7c7"
}

.bi-9-square-fill:before {
    content: "\f7c8"
}

.bi-9-square:before {
    content: "\f7c9"
}

.bi-airplane-engines-fill:before {
    content: "\f7ca"
}

.bi-airplane-engines:before {
    content: "\f7cb"
}

.bi-airplane-fill:before {
    content: "\f7cc"
}

.bi-airplane:before {
    content: "\f7cd"
}

.bi-alexa:before {
    content: "\f7ce"
}

.bi-alipay:before {
    content: "\f7cf"
}

.bi-android:before {
    content: "\f7d0"
}

.bi-android2:before {
    content: "\f7d1"
}

.bi-box-fill:before {
    content: "\f7d2"
}

.bi-box-seam-fill:before {
    content: "\f7d3"
}

.bi-browser-chrome:before {
    content: "\f7d4"
}

.bi-browser-edge:before {
    content: "\f7d5"
}

.bi-browser-firefox:before {
    content: "\f7d6"
}

.bi-browser-safari:before {
    content: "\f7d7"
}

.bi-c-circle-fill:before {
    content: "\f7da"
}

.bi-c-circle:before {
    content: "\f7db"
}

.bi-c-square-fill:before {
    content: "\f7dc"
}

.bi-c-square:before {
    content: "\f7dd"
}

.bi-capsule-pill:before {
    content: "\f7de"
}

.bi-capsule:before {
    content: "\f7df"
}

.bi-car-front-fill:before {
    content: "\f7e0"
}

.bi-car-front:before {
    content: "\f7e1"
}

.bi-cassette-fill:before {
    content: "\f7e2"
}

.bi-cassette:before {
    content: "\f7e3"
}

.bi-cc-circle-fill:before {
    content: "\f7e6"
}

.bi-cc-circle:before {
    content: "\f7e7"
}

.bi-cc-square-fill:before {
    content: "\f7e8"
}

.bi-cc-square:before {
    content: "\f7e9"
}

.bi-cup-hot-fill:before {
    content: "\f7ea"
}

.bi-cup-hot:before {
    content: "\f7eb"
}

.bi-currency-rupee:before {
    content: "\f7ec"
}

.bi-dropbox:before {
    content: "\f7ed"
}

.bi-escape:before {
    content: "\f7ee"
}

.bi-fast-forward-btn-fill:before {
    content: "\f7ef"
}

.bi-fast-forward-btn:before {
    content: "\f7f0"
}

.bi-fast-forward-circle-fill:before {
    content: "\f7f1"
}

.bi-fast-forward-circle:before {
    content: "\f7f2"
}

.bi-fast-forward-fill:before {
    content: "\f7f3"
}

.bi-fast-forward:before {
    content: "\f7f4"
}

.bi-filetype-sql:before {
    content: "\f7f5"
}

.bi-fire:before {
    content: "\f7f6"
}

.bi-google-play:before {
    content: "\f7f7"
}

.bi-h-circle-fill:before {
    content: "\f7fa"
}

.bi-h-circle:before {
    content: "\f7fb"
}

.bi-h-square-fill:before {
    content: "\f7fc"
}

.bi-h-square:before {
    content: "\f7fd"
}

.bi-indent:before {
    content: "\f7fe"
}

.bi-lungs-fill:before {
    content: "\f7ff"
}

.bi-lungs:before {
    content: "\f800"
}

.bi-microsoft-teams:before {
    content: "\f801"
}

.bi-p-circle-fill:before {
    content: "\f804"
}

.bi-p-circle:before {
    content: "\f805"
}

.bi-p-square-fill:before {
    content: "\f806"
}

.bi-p-square:before {
    content: "\f807"
}

.bi-pass-fill:before {
    content: "\f808"
}

.bi-pass:before {
    content: "\f809"
}

.bi-prescription:before {
    content: "\f80a"
}

.bi-prescription2:before {
    content: "\f80b"
}

.bi-r-circle-fill:before {
    content: "\f80e"
}

.bi-r-circle:before {
    content: "\f80f"
}

.bi-r-square-fill:before {
    content: "\f810"
}

.bi-r-square:before {
    content: "\f811"
}

.bi-repeat-1:before {
    content: "\f812"
}

.bi-repeat:before {
    content: "\f813"
}

.bi-rewind-btn-fill:before {
    content: "\f814"
}

.bi-rewind-btn:before {
    content: "\f815"
}

.bi-rewind-circle-fill:before {
    content: "\f816"
}

.bi-rewind-circle:before {
    content: "\f817"
}

.bi-rewind-fill:before {
    content: "\f818"
}

.bi-rewind:before {
    content: "\f819"
}

.bi-train-freight-front-fill:before {
    content: "\f81a"
}

.bi-train-freight-front:before {
    content: "\f81b"
}

.bi-train-front-fill:before {
    content: "\f81c"
}

.bi-train-front:before {
    content: "\f81d"
}

.bi-train-lightrail-front-fill:before {
    content: "\f81e"
}

.bi-train-lightrail-front:before {
    content: "\f81f"
}

.bi-truck-front-fill:before {
    content: "\f820"
}

.bi-truck-front:before {
    content: "\f821"
}

.bi-ubuntu:before {
    content: "\f822"
}

.bi-unindent:before {
    content: "\f823"
}

.bi-unity:before {
    content: "\f824"
}

.bi-universal-access-circle:before {
    content: "\f825"
}

.bi-universal-access:before {
    content: "\f826"
}

.bi-virus:before {
    content: "\f827"
}

.bi-virus2:before {
    content: "\f828"
}

.bi-wechat:before {
    content: "\f829"
}

.bi-yelp:before {
    content: "\f82a"
}

.bi-sign-stop-fill:before {
    content: "\f82b"
}

.bi-sign-stop-lights-fill:before {
    content: "\f82c"
}

.bi-sign-stop-lights:before {
    content: "\f82d"
}

.bi-sign-stop:before {
    content: "\f82e"
}

.bi-sign-turn-left-fill:before {
    content: "\f82f"
}

.bi-sign-turn-left:before {
    content: "\f830"
}

.bi-sign-turn-right-fill:before {
    content: "\f831"
}

.bi-sign-turn-right:before {
    content: "\f832"
}

.bi-sign-turn-slight-left-fill:before {
    content: "\f833"
}

.bi-sign-turn-slight-left:before {
    content: "\f834"
}

.bi-sign-turn-slight-right-fill:before {
    content: "\f835"
}

.bi-sign-turn-slight-right:before {
    content: "\f836"
}

.bi-sign-yield-fill:before {
    content: "\f837"
}

.bi-sign-yield:before {
    content: "\f838"
}

.bi-ev-station-fill:before {
    content: "\f839"
}

.bi-ev-station:before {
    content: "\f83a"
}

.bi-fuel-pump-diesel-fill:before {
    content: "\f83b"
}

.bi-fuel-pump-diesel:before {
    content: "\f83c"
}

.bi-fuel-pump-fill:before {
    content: "\f83d"
}

.bi-fuel-pump:before {
    content: "\f83e"
}

.bi-0-circle-fill:before {
    content: "\f83f"
}

.bi-0-circle:before {
    content: "\f840"
}

.bi-0-square-fill:before {
    content: "\f841"
}

.bi-0-square:before {
    content: "\f842"
}

.bi-rocket-fill:before {
    content: "\f843"
}

.bi-rocket-takeoff-fill:before {
    content: "\f844"
}

.bi-rocket-takeoff:before {
    content: "\f845"
}

.bi-rocket:before {
    content: "\f846"
}

.bi-stripe:before {
    content: "\f847"
}

.bi-subscript:before {
    content: "\f848"
}

.bi-superscript:before {
    content: "\f849"
}

.bi-trello:before {
    content: "\f84a"
}

.bi-envelope-at-fill:before {
    content: "\f84b"
}

.bi-envelope-at:before {
    content: "\f84c"
}

.bi-regex:before {
    content: "\f84d"
}

.bi-text-wrap:before {
    content: "\f84e"
}

.bi-sign-dead-end-fill:before {
    content: "\f84f"
}

.bi-sign-dead-end:before {
    content: "\f850"
}

.bi-sign-do-not-enter-fill:before {
    content: "\f851"
}

.bi-sign-do-not-enter:before {
    content: "\f852"
}

.bi-sign-intersection-fill:before {
    content: "\f853"
}

.bi-sign-intersection-side-fill:before {
    content: "\f854"
}

.bi-sign-intersection-side:before {
    content: "\f855"
}

.bi-sign-intersection-t-fill:before {
    content: "\f856"
}

.bi-sign-intersection-t:before {
    content: "\f857"
}

.bi-sign-intersection-y-fill:before {
    content: "\f858"
}

.bi-sign-intersection-y:before {
    content: "\f859"
}

.bi-sign-intersection:before {
    content: "\f85a"
}

.bi-sign-merge-left-fill:before {
    content: "\f85b"
}

.bi-sign-merge-left:before {
    content: "\f85c"
}

.bi-sign-merge-right-fill:before {
    content: "\f85d"
}

.bi-sign-merge-right:before {
    content: "\f85e"
}

.bi-sign-no-left-turn-fill:before {
    content: "\f85f"
}

.bi-sign-no-left-turn:before {
    content: "\f860"
}

.bi-sign-no-parking-fill:before {
    content: "\f861"
}

.bi-sign-no-parking:before {
    content: "\f862"
}

.bi-sign-no-right-turn-fill:before {
    content: "\f863"
}

.bi-sign-no-right-turn:before {
    content: "\f864"
}

.bi-sign-railroad-fill:before {
    content: "\f865"
}

.bi-sign-railroad:before {
    content: "\f866"
}

.bi-building-add:before {
    content: "\f867"
}

.bi-building-check:before {
    content: "\f868"
}

.bi-building-dash:before {
    content: "\f869"
}

.bi-building-down:before {
    content: "\f86a"
}

.bi-building-exclamation:before {
    content: "\f86b"
}

.bi-building-fill-add:before {
    content: "\f86c"
}

.bi-building-fill-check:before {
    content: "\f86d"
}

.bi-building-fill-dash:before {
    content: "\f86e"
}

.bi-building-fill-down:before {
    content: "\f86f"
}

.bi-building-fill-exclamation:before {
    content: "\f870"
}

.bi-building-fill-gear:before {
    content: "\f871"
}

.bi-building-fill-lock:before {
    content: "\f872"
}

.bi-building-fill-slash:before {
    content: "\f873"
}

.bi-building-fill-up:before {
    content: "\f874"
}

.bi-building-fill-x:before {
    content: "\f875"
}

.bi-building-fill:before {
    content: "\f876"
}

.bi-building-gear:before {
    content: "\f877"
}

.bi-building-lock:before {
    content: "\f878"
}

.bi-building-slash:before {
    content: "\f879"
}

.bi-building-up:before {
    content: "\f87a"
}

.bi-building-x:before {
    content: "\f87b"
}

.bi-buildings-fill:before {
    content: "\f87c"
}

.bi-buildings:before {
    content: "\f87d"
}

.bi-bus-front-fill:before {
    content: "\f87e"
}

.bi-bus-front:before {
    content: "\f87f"
}

.bi-ev-front-fill:before {
    content: "\f880"
}

.bi-ev-front:before {
    content: "\f881"
}

.bi-globe-americas:before {
    content: "\f882"
}

.bi-globe-asia-australia:before {
    content: "\f883"
}

.bi-globe-central-south-asia:before {
    content: "\f884"
}

.bi-globe-europe-africa:before {
    content: "\f885"
}

.bi-house-add-fill:before {
    content: "\f886"
}

.bi-house-add:before {
    content: "\f887"
}

.bi-house-check-fill:before {
    content: "\f888"
}

.bi-house-check:before {
    content: "\f889"
}

.bi-house-dash-fill:before {
    content: "\f88a"
}

.bi-house-dash:before {
    content: "\f88b"
}

.bi-house-down-fill:before {
    content: "\f88c"
}

.bi-house-down:before {
    content: "\f88d"
}

.bi-house-exclamation-fill:before {
    content: "\f88e"
}

.bi-house-exclamation:before {
    content: "\f88f"
}

.bi-house-gear-fill:before {
    content: "\f890"
}

.bi-house-gear:before {
    content: "\f891"
}

.bi-house-lock-fill:before {
    content: "\f892"
}

.bi-house-lock:before {
    content: "\f893"
}

.bi-house-slash-fill:before {
    content: "\f894"
}

.bi-house-slash:before {
    content: "\f895"
}

.bi-house-up-fill:before {
    content: "\f896"
}

.bi-house-up:before {
    content: "\f897"
}

.bi-house-x-fill:before {
    content: "\f898"
}

.bi-house-x:before {
    content: "\f899"
}

.bi-person-add:before {
    content: "\f89a"
}

.bi-person-down:before {
    content: "\f89b"
}

.bi-person-exclamation:before {
    content: "\f89c"
}

.bi-person-fill-add:before {
    content: "\f89d"
}

.bi-person-fill-check:before {
    content: "\f89e"
}

.bi-person-fill-dash:before {
    content: "\f89f"
}

.bi-person-fill-down:before {
    content: "\f8a0"
}

.bi-person-fill-exclamation:before {
    content: "\f8a1"
}

.bi-person-fill-gear:before {
    content: "\f8a2"
}

.bi-person-fill-lock:before {
    content: "\f8a3"
}

.bi-person-fill-slash:before {
    content: "\f8a4"
}

.bi-person-fill-up:before {
    content: "\f8a5"
}

.bi-person-fill-x:before {
    content: "\f8a6"
}

.bi-person-gear:before {
    content: "\f8a7"
}

.bi-person-lock:before {
    content: "\f8a8"
}

.bi-person-slash:before {
    content: "\f8a9"
}

.bi-person-up:before {
    content: "\f8aa"
}

.bi-scooter:before {
    content: "\f8ab"
}

.bi-taxi-front-fill:before {
    content: "\f8ac"
}

.bi-taxi-front:before {
    content: "\f8ad"
}

.bi-amd:before {
    content: "\f8ae"
}

.bi-database-add:before {
    content: "\f8af"
}

.bi-database-check:before {
    content: "\f8b0"
}

.bi-database-dash:before {
    content: "\f8b1"
}

.bi-database-down:before {
    content: "\f8b2"
}

.bi-database-exclamation:before {
    content: "\f8b3"
}

.bi-database-fill-add:before {
    content: "\f8b4"
}

.bi-database-fill-check:before {
    content: "\f8b5"
}

.bi-database-fill-dash:before {
    content: "\f8b6"
}

.bi-database-fill-down:before {
    content: "\f8b7"
}

.bi-database-fill-exclamation:before {
    content: "\f8b8"
}

.bi-database-fill-gear:before {
    content: "\f8b9"
}

.bi-database-fill-lock:before {
    content: "\f8ba"
}

.bi-database-fill-slash:before {
    content: "\f8bb"
}

.bi-database-fill-up:before {
    content: "\f8bc"
}

.bi-database-fill-x:before {
    content: "\f8bd"
}

.bi-database-fill:before {
    content: "\f8be"
}

.bi-database-gear:before {
    content: "\f8bf"
}

.bi-database-lock:before {
    content: "\f8c0"
}

.bi-database-slash:before {
    content: "\f8c1"
}

.bi-database-up:before {
    content: "\f8c2"
}

.bi-database-x:before {
    content: "\f8c3"
}

.bi-database:before {
    content: "\f8c4"
}

.bi-houses-fill:before {
    content: "\f8c5"
}

.bi-houses:before {
    content: "\f8c6"
}

.bi-nvidia:before {
    content: "\f8c7"
}

.bi-person-vcard-fill:before {
    content: "\f8c8"
}

.bi-person-vcard:before {
    content: "\f8c9"
}

.bi-sina-weibo:before {
    content: "\f8ca"
}

.bi-tencent-qq:before {
    content: "\f8cb"
}

.bi-wikipedia:before {
    content: "\f8cc"
}

.bi-alphabet-uppercase:before {
    content: "\f2a5"
}

.bi-alphabet:before {
    content: "\f68a"
}

.bi-amazon:before {
    content: "\f68d"
}

.bi-arrows-collapse-vertical:before {
    content: "\f690"
}

.bi-arrows-expand-vertical:before {
    content: "\f695"
}

.bi-arrows-vertical:before {
    content: "\f698"
}

.bi-arrows:before {
    content: "\f6a2"
}

.bi-ban-fill:before {
    content: "\f6a3"
}

.bi-ban:before {
    content: "\f6b6"
}

.bi-bing:before {
    content: "\f6c2"
}

.bi-cake:before {
    content: "\f6e0"
}

.bi-cake2:before {
    content: "\f6ed"
}

.bi-cookie:before {
    content: "\f6ee"
}

.bi-copy:before {
    content: "\f759"
}

.bi-crosshair:before {
    content: "\f769"
}

.bi-crosshair2:before {
    content: "\f794"
}

.bi-emoji-astonished-fill:before {
    content: "\f795"
}

.bi-emoji-astonished:before {
    content: "\f79a"
}

.bi-emoji-grimace-fill:before {
    content: "\f79b"
}

.bi-emoji-grimace:before {
    content: "\f7a0"
}

.bi-emoji-grin-fill:before {
    content: "\f7a1"
}

.bi-emoji-grin:before {
    content: "\f7a6"
}

.bi-emoji-surprise-fill:before {
    content: "\f7a7"
}

.bi-emoji-surprise:before {
    content: "\f7ac"
}

.bi-emoji-tear-fill:before {
    content: "\f7ad"
}

.bi-emoji-tear:before {
    content: "\f7b2"
}

.bi-envelope-arrow-down-fill:before {
    content: "\f7b3"
}

.bi-envelope-arrow-down:before {
    content: "\f7b8"
}

.bi-envelope-arrow-up-fill:before {
    content: "\f7b9"
}

.bi-envelope-arrow-up:before {
    content: "\f7be"
}

.bi-feather:before {
    content: "\f7bf"
}

.bi-feather2:before {
    content: "\f7c4"
}

.bi-floppy-fill:before {
    content: "\f7c5"
}

.bi-floppy:before {
    content: "\f7d8"
}

.bi-floppy2-fill:before {
    content: "\f7d9"
}

.bi-floppy2:before {
    content: "\f7e4"
}

.bi-gitlab:before {
    content: "\f7e5"
}

.bi-highlighter:before {
    content: "\f7f8"
}

.bi-marker-tip:before {
    content: "\f802"
}

.bi-nvme-fill:before {
    content: "\f803"
}

.bi-nvme:before {
    content: "\f80c"
}

.bi-opencollective:before {
    content: "\f80d"
}

.bi-pci-card-network:before {
    content: "\f8cd"
}

.bi-pci-card-sound:before {
    content: "\f8ce"
}

.bi-radar:before {
    content: "\f8cf"
}

.bi-send-arrow-down-fill:before {
    content: "\f8d0"
}

.bi-send-arrow-down:before {
    content: "\f8d1"
}

.bi-send-arrow-up-fill:before {
    content: "\f8d2"
}

.bi-send-arrow-up:before {
    content: "\f8d3"
}

.bi-sim-slash-fill:before {
    content: "\f8d4"
}

.bi-sim-slash:before {
    content: "\f8d5"
}

.bi-sourceforge:before {
    content: "\f8d6"
}

.bi-substack:before {
    content: "\f8d7"
}

.bi-threads-fill:before {
    content: "\f8d8"
}

.bi-threads:before {
    content: "\f8d9"
}

.bi-transparency:before {
    content: "\f8da"
}

.bi-twitter-x:before {
    content: "\f8db"
}

.bi-type-h4:before {
    content: "\f8dc"
}

.bi-type-h5:before {
    content: "\f8dd"
}

.bi-type-h6:before {
    content: "\f8de"
}

.bi-backpack-fill:before {
    content: "\f8df"
}

.bi-backpack:before {
    content: "\f8e0"
}

.bi-backpack2-fill:before {
    content: "\f8e1"
}

.bi-backpack2:before {
    content: "\f8e2"
}

.bi-backpack3-fill:before {
    content: "\f8e3"
}

.bi-backpack3:before {
    content: "\f8e4"
}

.bi-backpack4-fill:before {
    content: "\f8e5"
}

.bi-backpack4:before {
    content: "\f8e6"
}

.bi-brilliance:before {
    content: "\f8e7"
}

.bi-cake-fill:before {
    content: "\f8e8"
}

.bi-cake2-fill:before {
    content: "\f8e9"
}

.bi-duffle-fill:before {
    content: "\f8ea"
}

.bi-duffle:before {
    content: "\f8eb"
}

.bi-exposure:before {
    content: "\f8ec"
}

.bi-gender-neuter:before {
    content: "\f8ed"
}

.bi-highlights:before {
    content: "\f8ee"
}

.bi-luggage-fill:before {
    content: "\f8ef"
}

.bi-luggage:before {
    content: "\f8f0"
}

.bi-mailbox-flag:before {
    content: "\f8f1"
}

.bi-mailbox2-flag:before {
    content: "\f8f2"
}

.bi-noise-reduction:before {
    content: "\f8f3"
}

.bi-passport-fill:before {
    content: "\f8f4"
}

.bi-passport:before {
    content: "\f8f5"
}

.bi-person-arms-up:before {
    content: "\f8f6"
}

.bi-person-raised-hand:before {
    content: "\f8f7"
}

.bi-person-standing-dress:before {
    content: "\f8f8"
}

.bi-person-standing:before {
    content: "\f8f9"
}

.bi-person-walking:before {
    content: "\f8fa"
}

.bi-person-wheelchair:before {
    content: "\f8fb"
}

.bi-shadows:before {
    content: "\f8fc"
}

.bi-suitcase-fill:before {
    content: "\f8fd"
}

.bi-suitcase-lg-fill:before {
    content: "\f8fe"
}

.bi-suitcase-lg:before {
    content: "\f8ff"
}

.bi-suitcase:before {
    content: "\f900"
}

.bi-suitcase2-fill:before {
    content: "\f901"
}

.bi-suitcase2:before {
    content: "\f902"
}

.bi-vignette:before {
    content: "\f903"
}

:root {
    --toastify-color-light: #fff;
    --toastify-color-dark: #121212;
    --toastify-color-info: #3498db;
    --toastify-color-success: #07bc0c;
    --toastify-color-warning: #f1c40f;
    --toastify-color-error: #e74c3c;
    --toastify-color-transparent: hsla(0,0%,100%,.7);
    --toastify-icon-color-info: var(--toastify-color-info);
    --toastify-icon-color-success: var(--toastify-color-success);
    --toastify-icon-color-warning: var(--toastify-color-warning);
    --toastify-icon-color-error: var(--toastify-color-error);
    --toastify-toast-width: 320px;
    --toastify-toast-background: #fff;
    --toastify-toast-min-height: 64px;
    --toastify-toast-max-height: 800px;
    --toastify-font-family: sans-serif;
    --toastify-z-index: 9999;
    --toastify-text-color-light: #757575;
    --toastify-text-color-dark: #fff;
    --toastify-text-color-info: #fff;
    --toastify-text-color-success: #fff;
    --toastify-text-color-warning: #fff;
    --toastify-text-color-error: #fff;
    --toastify-spinner-color: #616161;
    --toastify-spinner-color-empty-area: #e0e0e0;
    --toastify-color-progress-light: linear-gradient(90deg,#4cd964,#5ac8fa,#007aff,#34aadc,#5856d6,#ff2d55);
    --toastify-color-progress-dark: #bb86fc;
    --toastify-color-progress-info: var(--toastify-color-info);
    --toastify-color-progress-success: var(--toastify-color-success);
    --toastify-color-progress-warning: var(--toastify-color-warning);
    --toastify-color-progress-error: var(--toastify-color-error)
}

.Toastify__toast-container {
    z-index: var(--toastify-z-index);
    -webkit-transform: translateZ(var(--toastify-z-index));
    position: fixed;
    padding: 4px;
    width: var(--toastify-toast-width);
    box-sizing: border-box;
    color: #fff
}

.Toastify__toast-container--top-left {
    top: 1em;
    left: 1em
}

.Toastify__toast-container--top-center {
    top: 1em;
    left: 50%;
    transform: translateX(-50%)
}

.Toastify__toast-container--top-right {
    top: 1em;
    right: 1em
}

.Toastify__toast-container--bottom-left {
    bottom: 1em;
    left: 1em
}

.Toastify__toast-container--bottom-center {
    bottom: 1em;
    left: 50%;
    transform: translateX(-50%)
}

.Toastify__toast-container--bottom-right {
    bottom: 1em;
    right: 1em
}

@media only screen and (max-width: 480px) {
    .Toastify__toast-container {
        width:100vw;
        padding: 0;
        left: 0;
        margin: 0
    }

    .Toastify__toast-container--top-center,.Toastify__toast-container--top-left,.Toastify__toast-container--top-right {
        top: 0;
        transform: translateX(0)
    }

    .Toastify__toast-container--bottom-center,.Toastify__toast-container--bottom-left,.Toastify__toast-container--bottom-right {
        bottom: 0;
        transform: translateX(0)
    }

    .Toastify__toast-container--rtl {
        right: 0;
        left: auto
    }
}

.Toastify__toast {
    position: relative;
    min-height: var(--toastify-toast-min-height);
    box-sizing: border-box;
    margin-bottom: 1rem;
    padding: 8px;
    border-radius: 4px;
    box-shadow: 0 1px 10px 0 rgba(0,0,0,.1),0 2px 15px 0 rgba(0,0,0,.05);
    display: flex;
    justify-content: space-between;
    max-height: var(--toastify-toast-max-height);
    overflow: hidden;
    font-family: var(--toastify-font-family);
    cursor: default;
    direction: ltr;
    z-index: 0
}

.Toastify__toast--rtl {
    direction: rtl
}

.Toastify__toast--close-on-click {
    cursor: pointer
}

.Toastify__toast-body {
    margin: auto 0;
    flex: 1 1 auto;
    padding: 6px;
    display: flex;
    align-items: center
}

.Toastify__toast-body>div:last-child {
    word-break: break-word;
    flex: 1 1
}

.Toastify__toast-icon {
    -webkit-margin-end: 10px;
    margin-inline-end:10px;width: 20px;
    flex-shrink: 0;
    display: flex
}

.Toastify--animate {
    animation-fill-mode: both;
    animation-duration: .7s
}

.Toastify--animate-icon {
    animation-fill-mode: both;
    animation-duration: .3s
}

@media only screen and (max-width: 480px) {
    .Toastify__toast {
        margin-bottom:0;
        border-radius: 0
    }
}

.Toastify__toast-theme--dark {
    background: var(--toastify-color-dark);
    color: var(--toastify-text-color-dark)
}

.Toastify__toast-theme--colored.Toastify__toast--default,.Toastify__toast-theme--light {
    background: var(--toastify-color-light);
    color: var(--toastify-text-color-light)
}

.Toastify__toast-theme--colored.Toastify__toast--info {
    color: var(--toastify-text-color-info);
    background: var(--toastify-color-info)
}

.Toastify__toast-theme--colored.Toastify__toast--success {
    color: var(--toastify-text-color-success);
    background: var(--toastify-color-success)
}

.Toastify__toast-theme--colored.Toastify__toast--warning {
    color: var(--toastify-text-color-warning);
    background: var(--toastify-color-warning)
}

.Toastify__toast-theme--colored.Toastify__toast--error {
    color: var(--toastify-text-color-error);
    background: var(--toastify-color-error)
}

.Toastify__progress-bar-theme--light {
    background: var(--toastify-color-progress-light)
}

.Toastify__progress-bar-theme--dark {
    background: var(--toastify-color-progress-dark)
}

.Toastify__progress-bar--info {
    background: var(--toastify-color-progress-info)
}

.Toastify__progress-bar--success {
    background: var(--toastify-color-progress-success)
}

.Toastify__progress-bar--warning {
    background: var(--toastify-color-progress-warning)
}

.Toastify__progress-bar--error {
    background: var(--toastify-color-progress-error)
}

.Toastify__progress-bar-theme--colored.Toastify__progress-bar--error,.Toastify__progress-bar-theme--colored.Toastify__progress-bar--info,.Toastify__progress-bar-theme--colored.Toastify__progress-bar--success,.Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning {
    background: var(--toastify-color-transparent)
}

.Toastify__close-button {
    color: #fff;
    background: transparent;
    outline: none;
    border: none;
    padding: 0;
    cursor: pointer;
    opacity: .7;
    transition: .3s ease;
    align-self: flex-start
}

.Toastify__close-button--light {
    color: #000;
    opacity: .3
}

.Toastify__close-button>svg {
    fill: currentColor;
    height: 16px;
    width: 14px
}

.Toastify__close-button:focus,.Toastify__close-button:hover {
    opacity: 1
}

@keyframes Toastify__trackProgress {
    0% {
        transform: scaleX(1)
    }

    to {
        transform: scaleX(0)
    }
}

.Toastify__progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    z-index: var(--toastify-z-index);
    opacity: .7;
    transform-origin: left
}

.Toastify__progress-bar--animated {
    animation: Toastify__trackProgress linear 1 forwards
}

.Toastify__progress-bar--controlled {
    transition: transform .2s
}

.Toastify__progress-bar--rtl {
    right: 0;
    left: auto;
    transform-origin: right
}

.Toastify__spinner {
    width: 20px;
    height: 20px;
    box-sizing: border-box;
    border: 2px solid;
    border-radius: 100%;
    border-color: var(--toastify-spinner-color-empty-area);
    border-right-color: var(--toastify-spinner-color);
    animation: Toastify__spin .65s linear infinite
}

@keyframes Toastify__bounceInRight {
    0%,60%,75%,90%,to {
        animation-timing-function: cubic-bezier(.215,.61,.355,1)
    }

    0% {
        opacity: 0;
        transform: translate3d(3000px,0,0)
    }

    60% {
        opacity: 1;
        transform: translate3d(-25px,0,0)
    }

    75% {
        transform: translate3d(10px,0,0)
    }

    90% {
        transform: translate3d(-5px,0,0)
    }

    to {
        transform: none
    }
}

@keyframes Toastify__bounceOutRight {
    20% {
        opacity: 1;
        transform: translate3d(-20px,0,0)
    }

    to {
        opacity: 0;
        transform: translate3d(2000px,0,0)
    }
}

@keyframes Toastify__bounceInLeft {
    0%,60%,75%,90%,to {
        animation-timing-function: cubic-bezier(.215,.61,.355,1)
    }

    0% {
        opacity: 0;
        transform: translate3d(-3000px,0,0)
    }

    60% {
        opacity: 1;
        transform: translate3d(25px,0,0)
    }

    75% {
        transform: translate3d(-10px,0,0)
    }

    90% {
        transform: translate3d(5px,0,0)
    }

    to {
        transform: none
    }
}

@keyframes Toastify__bounceOutLeft {
    20% {
        opacity: 1;
        transform: translate3d(20px,0,0)
    }

    to {
        opacity: 0;
        transform: translate3d(-2000px,0,0)
    }
}

@keyframes Toastify__bounceInUp {
    0%,60%,75%,90%,to {
        animation-timing-function: cubic-bezier(.215,.61,.355,1)
    }

    0% {
        opacity: 0;
        transform: translate3d(0,3000px,0)
    }

    60% {
        opacity: 1;
        transform: translate3d(0,-20px,0)
    }

    75% {
        transform: translate3d(0,10px,0)
    }

    90% {
        transform: translate3d(0,-5px,0)
    }

    to {
        transform: translateZ(0)
    }
}

@keyframes Toastify__bounceOutUp {
    20% {
        transform: translate3d(0,-10px,0)
    }

    40%,45% {
        opacity: 1;
        transform: translate3d(0,20px,0)
    }

    to {
        opacity: 0;
        transform: translate3d(0,-2000px,0)
    }
}

@keyframes Toastify__bounceInDown {
    0%,60%,75%,90%,to {
        animation-timing-function: cubic-bezier(.215,.61,.355,1)
    }

    0% {
        opacity: 0;
        transform: translate3d(0,-3000px,0)
    }

    60% {
        opacity: 1;
        transform: translate3d(0,25px,0)
    }

    75% {
        transform: translate3d(0,-10px,0)
    }

    90% {
        transform: translate3d(0,5px,0)
    }

    to {
        transform: none
    }
}

@keyframes Toastify__bounceOutDown {
    20% {
        transform: translate3d(0,10px,0)
    }

    40%,45% {
        opacity: 1;
        transform: translate3d(0,-20px,0)
    }

    to {
        opacity: 0;
        transform: translate3d(0,2000px,0)
    }
}

.Toastify__bounce-enter--bottom-left,.Toastify__bounce-enter--top-left {
    animation-name: Toastify__bounceInLeft
}

.Toastify__bounce-enter--bottom-right,.Toastify__bounce-enter--top-right {
    animation-name: Toastify__bounceInRight
}

.Toastify__bounce-enter--top-center {
    animation-name: Toastify__bounceInDown
}

.Toastify__bounce-enter--bottom-center {
    animation-name: Toastify__bounceInUp
}

.Toastify__bounce-exit--bottom-left,.Toastify__bounce-exit--top-left {
    animation-name: Toastify__bounceOutLeft
}

.Toastify__bounce-exit--bottom-right,.Toastify__bounce-exit--top-right {
    animation-name: Toastify__bounceOutRight
}

.Toastify__bounce-exit--top-center {
    animation-name: Toastify__bounceOutUp
}

.Toastify__bounce-exit--bottom-center {
    animation-name: Toastify__bounceOutDown
}

@keyframes Toastify__zoomIn {
    0% {
        opacity: 0;
        transform: scale3d(.3,.3,.3)
    }

    50% {
        opacity: 1
    }
}

@keyframes Toastify__zoomOut {
    0% {
        opacity: 1
    }

    50% {
        opacity: 0;
        transform: scale3d(.3,.3,.3)
    }

    to {
        opacity: 0
    }
}

.Toastify__zoom-enter {
    animation-name: Toastify__zoomIn
}

.Toastify__zoom-exit {
    animation-name: Toastify__zoomOut
}

@keyframes Toastify__flipIn {
    0% {
        transform: perspective(400px) rotateX(90deg);
        animation-timing-function: ease-in;
        opacity: 0
    }

    40% {
        transform: perspective(400px) rotateX(-20deg);
        animation-timing-function: ease-in
    }

    60% {
        transform: perspective(400px) rotateX(10deg);
        opacity: 1
    }

    80% {
        transform: perspective(400px) rotateX(-5deg)
    }

    to {
        transform: perspective(400px)
    }
}

@keyframes Toastify__flipOut {
    0% {
        transform: perspective(400px)
    }

    30% {
        transform: perspective(400px) rotateX(-20deg);
        opacity: 1
    }

    to {
        transform: perspective(400px) rotateX(90deg);
        opacity: 0
    }
}

.Toastify__flip-enter {
    animation-name: Toastify__flipIn
}

.Toastify__flip-exit {
    animation-name: Toastify__flipOut
}

@keyframes Toastify__slideInRight {
    0% {
        transform: translate3d(110%,0,0);
        visibility: visible
    }

    to {
        transform: translateZ(0)
    }
}

@keyframes Toastify__slideInLeft {
    0% {
        transform: translate3d(-110%,0,0);
        visibility: visible
    }

    to {
        transform: translateZ(0)
    }
}

@keyframes Toastify__slideInUp {
    0% {
        transform: translate3d(0,110%,0);
        visibility: visible
    }

    to {
        transform: translateZ(0)
    }
}

@keyframes Toastify__slideInDown {
    0% {
        transform: translate3d(0,-110%,0);
        visibility: visible
    }

    to {
        transform: translateZ(0)
    }
}

@keyframes Toastify__slideOutRight {
    0% {
        transform: translateZ(0)
    }

    to {
        visibility: hidden;
        transform: translate3d(110%,0,0)
    }
}

@keyframes Toastify__slideOutLeft {
    0% {
        transform: translateZ(0)
    }

    to {
        visibility: hidden;
        transform: translate3d(-110%,0,0)
    }
}

@keyframes Toastify__slideOutDown {
    0% {
        transform: translateZ(0)
    }

    to {
        visibility: hidden;
        transform: translate3d(0,500px,0)
    }
}

@keyframes Toastify__slideOutUp {
    0% {
        transform: translateZ(0)
    }

    to {
        visibility: hidden;
        transform: translate3d(0,-500px,0)
    }
}

.Toastify__slide-enter--bottom-left,.Toastify__slide-enter--top-left {
    animation-name: Toastify__slideInLeft
}

.Toastify__slide-enter--bottom-right,.Toastify__slide-enter--top-right {
    animation-name: Toastify__slideInRight
}

.Toastify__slide-enter--top-center {
    animation-name: Toastify__slideInDown
}

.Toastify__slide-enter--bottom-center {
    animation-name: Toastify__slideInUp
}

.Toastify__slide-exit--bottom-left,.Toastify__slide-exit--top-left {
    animation-name: Toastify__slideOutLeft
}

.Toastify__slide-exit--bottom-right,.Toastify__slide-exit--top-right {
    animation-name: Toastify__slideOutRight
}

.Toastify__slide-exit--top-center {
    animation-name: Toastify__slideOutUp
}

.Toastify__slide-exit--bottom-center {
    animation-name: Toastify__slideOutDown
}

@keyframes Toastify__spin {
    0% {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(1turn)
    }
}

#nprogress {
    --primary-color: #f8fff7;
    pointer-events: none
}

#nprogress .bar {
    background: var(--primary-color);
    position: fixed;
    z-index: 1031;
    top: 0;
    left: 0;
    width: 100%;
    height: 2.5px
}

#nprogress .peg {
    display: block;
    position: absolute;
    right: 0;
    width: 100px;
    height: 100%;
    box-shadow: 0 0 10px var(--primary-color),0 0 5px var(--primary-color);
    opacity: 1;
    transform: rotate(3deg) translateY(-4px)
}

#nprogress .spinner {
    display: block;
    position: fixed;
    z-index: 1031;
    top: 15px;
    right: 15px
}

#nprogress .spinner-icon {
    width: 18px;
    height: 18px;
    box-sizing: border-box;
    border-bottom: 2px solid transparent;
    border-right: 2px solid transparent;
    border-top: 2px solid transparent;
    border-top-color: var(--primary-color);
    border-left: 2px solid transparent;
    border-left-color: var(--primary-color);
    border-radius: 50%;
    animation: nprogress-spinner .4s linear infinite
}

.nprogress-custom-parent {
    overflow: hidden;
    position: relative
}

.nprogress-custom-parent #nprogress .bar,.nprogress-custom-parent #nprogress .spinner {
    position: absolute
}

@keyframes nprogress-spinner {
    0% {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(1turn)
    }
}

.fi,.fib {
    background-size: contain;
    background-position: 50%;
    background-repeat: no-repeat
}

.fi {
    position: relative;
    display: inline-block;
    width: 1.333333em;
    line-height: 1em
}

.fi:before {
    content: " "
}

.fi.fis {
    width: 1em
}

.fi-xx {
    background-image: url(../media/xx.7aec1681.svg)
}

.fi-xx.fis {
    background-image: url(../media/xx.36e887fc.svg)
}

.fi-ad {
    background-image: url(../media/ad.09251dc6.svg)
}

.fi-ad.fis {
    background-image: url(../media/ad.1bc85c1c.svg)
}

.fi-ae {
    background-image: url(../media/ae.f162af03.svg)
}

.fi-ae.fis {
    background-image: url(../media/ae.d03f76a0.svg)
}

.fi-af {
    background-image: url(../media/af.47f0e1cc.svg)
}

.fi-af.fis {
    background-image: url(../media/af.82d2a7e9.svg)
}

.fi-ag {
    background-image: url(../media/ag.62cf6a10.svg)
}

.fi-ag.fis {
    background-image: url(../media/ag.e4ec7960.svg)
}

.fi-ai {
    background-image: url(../media/ai.8d19ffb1.svg)
}

.fi-ai.fis {
    background-image: url(../media/ai.6c69c0f2.svg)
}

.fi-al {
    background-image: url(../media/al.60a96f23.svg)
}

.fi-al.fis {
    background-image: url(../media/al.dd736542.svg)
}

.fi-am {
    background-image: url(../media/am.7f72827a.svg)
}

.fi-am.fis {
    background-image: url(../media/am.34892225.svg)
}

.fi-ao {
    background-image: url(../media/ao.2b5f795a.svg)
}

.fi-ao.fis {
    background-image: url(../media/ao.957eecc7.svg)
}

.fi-aq {
    background-image: url(../media/aq.67fda1d0.svg)
}

.fi-aq.fis {
    background-image: url(../media/aq.ac6bb35e.svg)
}

.fi-ar {
    background-image: url(../media/ar.bdb94662.svg)
}

.fi-ar.fis {
    background-image: url(../media/ar.c4490a1e.svg)
}

.fi-as {
    background-image: url(../media/as.bfadb92d.svg)
}

.fi-as.fis {
    background-image: url(../media/as.8ab3d366.svg)
}

.fi-at {
    background-image: url(../media/at.7f76f2d4.svg)
}

.fi-at.fis {
    background-image: url(../media/at.13c0b458.svg)
}

.fi-au {
    background-image: url(../media/au.37597da1.svg)
}

.fi-au.fis {
    background-image: url(../media/au.f7475e83.svg)
}

.fi-aw {
    background-image: url(../media/aw.ffc51b5a.svg)
}

.fi-aw.fis {
    background-image: url(../media/aw.38f24953.svg)
}

.fi-ax {
    background-image: url(../media/ax.52a80967.svg)
}

.fi-ax.fis {
    background-image: url(../media/ax.ff1515de.svg)
}

.fi-az {
    background-image: url(../media/az.68efbd04.svg)
}

.fi-az.fis {
    background-image: url(../media/az.1b8731a4.svg)
}

.fi-ba {
    background-image: url(../media/ba.a6d937cc.svg)
}

.fi-ba.fis {
    background-image: url(../media/ba.f7b5581c.svg)
}

.fi-bb {
    background-image: url(../media/bb.4f50c33a.svg)
}

.fi-bb.fis {
    background-image: url(../media/bb.93fe7ca6.svg)
}

.fi-bd {
    background-image: url(../media/bd.3b0570c0.svg)
}

.fi-bd.fis {
    background-image: url(../media/bd.dda0e02d.svg)
}

.fi-be {
    background-image: url(../media/be.77cccf17.svg)
}

.fi-be.fis {
    background-image: url(../media/be.8dd87cc1.svg)
}

.fi-bf {
    background-image: url(../media/bf.415d3659.svg)
}

.fi-bf.fis {
    background-image: url(../media/bf.580f6b00.svg)
}

.fi-bg {
    background-image: url(../media/bg.829d62f2.svg)
}

.fi-bg.fis {
    background-image: url(../media/bg.ded21d66.svg)
}

.fi-bh {
    background-image: url(../media/bh.2ff06f83.svg)
}

.fi-bh.fis {
    background-image: url(../media/bh.84867991.svg)
}

.fi-bi {
    background-image: url(../media/bi.a6b2059a.svg)
}

.fi-bi.fis {
    background-image: url(../media/bi.b0f6538c.svg)
}

.fi-bj {
    background-image: url(../media/bj.1375d8c9.svg)
}

.fi-bj.fis {
    background-image: url(../media/bj.14b050e1.svg)
}

.fi-bl {
    background-image: url(../media/bl.0d579979.svg)
}

.fi-bl.fis {
    background-image: url(../media/bl.2c23e677.svg)
}

.fi-bm {
    background-image: url(../media/bm.221071e8.svg)
}

.fi-bm.fis {
    background-image: url(../media/bm.cb8f9039.svg)
}

.fi-bn {
    background-image: url(../media/bn.f926e10e.svg)
}

.fi-bn.fis {
    background-image: url(../media/bn.746d182c.svg)
}

.fi-bo {
    background-image: url(../media/bo.4e914291.svg)
}

.fi-bo.fis {
    background-image: url(../media/bo.a106c061.svg)
}

.fi-bq {
    background-image: url(../media/bq.f6d582bf.svg)
}

.fi-bq.fis {
    background-image: url(../media/bq.68b35ed6.svg)
}

.fi-br {
    background-image: url(../media/br.bfab72c7.svg)
}

.fi-br.fis {
    background-image: url(../media/br.1ceb3d81.svg)
}

.fi-bs {
    background-image: url(../media/bs.d0bf1659.svg)
}

.fi-bs.fis {
    background-image: url(../media/bs.1fc645d9.svg)
}

.fi-bt {
    background-image: url(../media/bt.4d635bf9.svg)
}

.fi-bt.fis {
    background-image: url(../media/bt.f6193c5f.svg)
}

.fi-bv {
    background-image: url(../media/bv.dbc727c7.svg)
}

.fi-bv.fis {
    background-image: url(../media/bv.b376a0c2.svg)
}

.fi-bw {
    background-image: url(../media/bw.df3366e6.svg)
}

.fi-bw.fis {
    background-image: url(../media/bw.a1b03391.svg)
}

.fi-by {
    background-image: url(../media/by.13904877.svg)
}

.fi-by.fis {
    background-image: url(../media/by.89e8e376.svg)
}

.fi-bz {
    background-image: url(../media/bz.b811201e.svg)
}

.fi-bz.fis {
    background-image: url(../media/bz.07375350.svg)
}

.fi-ca {
    background-image: url(../media/ca.eee04cb8.svg)
}

.fi-ca.fis {
    background-image: url(../media/ca.7f1fcfaa.svg)
}

.fi-cc {
    background-image: url(../media/cc.6d11e0c3.svg)
}

.fi-cc.fis {
    background-image: url(../media/cc.67fce0cd.svg)
}

.fi-cd {
    background-image: url(../media/cd.25808585.svg)
}

.fi-cd.fis {
    background-image: url(../media/cd.fffb6b4f.svg)
}

.fi-cf {
    background-image: url(../media/cf.be784cc8.svg)
}

.fi-cf.fis {
    background-image: url(../media/cf.6cff29be.svg)
}

.fi-cg {
    background-image: url(../media/cg.d1d9c2f7.svg)
}

.fi-cg.fis {
    background-image: url(../media/cg.4b0f3275.svg)
}

.fi-ch {
    background-image: url(../media/ch.a4939cb8.svg)
}

.fi-ch.fis {
    background-image: url(../media/ch.baba02d3.svg)
}

.fi-ci {
    background-image: url(../media/ci.514886a6.svg)
}

.fi-ci.fis {
    background-image: url(../media/ci.6778515b.svg)
}

.fi-ck {
    background-image: url(../media/ck.04d9039d.svg)
}

.fi-ck.fis {
    background-image: url(../media/ck.d6781181.svg)
}

.fi-cl {
    background-image: url(../media/cl.c77df473.svg)
}

.fi-cl.fis {
    background-image: url(../media/cl.5a22125c.svg)
}

.fi-cm {
    background-image: url(../media/cm.a298fc08.svg)
}

.fi-cm.fis {
    background-image: url(../media/cm.f4820dd5.svg)
}

.fi-cn {
    background-image: url(../media/cn.7fd9bbb9.svg)
}

.fi-cn.fis {
    background-image: url(../media/cn.cb52daf1.svg)
}

.fi-co {
    background-image: url(../media/co.6b78e07b.svg)
}

.fi-co.fis {
    background-image: url(../media/co.76882952.svg)
}

.fi-cr {
    background-image: url(../media/cr.cc088912.svg)
}

.fi-cr.fis {
    background-image: url(../media/cr.1b227430.svg)
}

.fi-cu {
    background-image: url(../media/cu.41475839.svg)
}

.fi-cu.fis {
    background-image: url(../media/cu.ad9e4327.svg)
}

.fi-cv {
    background-image: url(../media/cv.8b2e1c15.svg)
}

.fi-cv.fis {
    background-image: url(../media/cv.526fd91a.svg)
}

.fi-cw {
    background-image: url(../media/cw.93b85dbf.svg)
}

.fi-cw.fis {
    background-image: url(../media/cw.02547adf.svg)
}

.fi-cx {
    background-image: url(../media/cx.b70e6b17.svg)
}

.fi-cx.fis {
    background-image: url(../media/cx.0d5e5225.svg)
}

.fi-cy {
    background-image: url(../media/cy.804eb68d.svg)
}

.fi-cy.fis {
    background-image: url(../media/cy.d47e121b.svg)
}

.fi-cz {
    background-image: url(../media/cz.7c86bb18.svg)
}

.fi-cz.fis {
    background-image: url(../media/cz.83554014.svg)
}

.fi-de {
    background-image: url(../media/de.666805f5.svg)
}

.fi-de.fis {
    background-image: url(../media/de.7643c466.svg)
}

.fi-dj {
    background-image: url(../media/dj.fdb22cb3.svg)
}

.fi-dj.fis {
    background-image: url(../media/dj.5938f70a.svg)
}

.fi-dk {
    background-image: url(../media/dk.4b0313b3.svg)
}

.fi-dk.fis {
    background-image: url(../media/dk.89836fb3.svg)
}

.fi-dm {
    background-image: url(../media/dm.e046cb14.svg)
}

.fi-dm.fis {
    background-image: url(../media/dm.587e655f.svg)
}

.fi-do {
    background-image: url(../media/do.f6f81b3c.svg)
}

.fi-do.fis {
    background-image: url(../media/do.659f018c.svg)
}

.fi-dz {
    background-image: url(../media/dz.eccc2d17.svg)
}

.fi-dz.fis {
    background-image: url(../media/dz.4d424eed.svg)
}

.fi-ec {
    background-image: url(../media/ec.f77634e7.svg)
}

.fi-ec.fis {
    background-image: url(../media/ec.bef09702.svg)
}

.fi-ee {
    background-image: url(../media/ee.86b42d77.svg)
}

.fi-ee.fis {
    background-image: url(../media/ee.fc1518ad.svg)
}

.fi-eg {
    background-image: url(../media/eg.3da903f5.svg)
}

.fi-eg.fis {
    background-image: url(../media/eg.464243be.svg)
}

.fi-eh {
    background-image: url(../media/eh.8c2d6290.svg)
}

.fi-eh.fis {
    background-image: url(../media/eh.fb5f92c8.svg)
}

.fi-er {
    background-image: url(../media/er.508c8c08.svg)
}

.fi-er.fis {
    background-image: url(../media/er.1b3ace39.svg)
}

.fi-es {
    background-image: url(../media/es.a857d3dd.svg)
}

.fi-es.fis {
    background-image: url(../media/es.4a628583.svg)
}

.fi-et {
    background-image: url(../media/et.2590f747.svg)
}

.fi-et.fis {
    background-image: url(../media/et.831fb719.svg)
}

.fi-fi {
    background-image: url(../media/fi.97487f84.svg)
}

.fi-fi.fis {
    background-image: url(../media/fi.26d2687d.svg)
}

.fi-fj {
    background-image: url(../media/fj.8e03aba8.svg)
}

.fi-fj.fis {
    background-image: url(../media/fj.ad59997f.svg)
}

.fi-fk {
    background-image: url(../media/fk.6bf06027.svg)
}

.fi-fk.fis {
    background-image: url(../media/fk.bf8cf31a.svg)
}

.fi-fm {
    background-image: url(../media/fm.624c0401.svg)
}

.fi-fm.fis {
    background-image: url(../media/fm.9f69c44d.svg)
}

.fi-fo {
    background-image: url(../media/fo.67175ea9.svg)
}

.fi-fo.fis {
    background-image: url(../media/fo.e2127081.svg)
}

.fi-fr {
    background-image: url(../media/fr.f5380d92.svg)
}

.fi-fr.fis {
    background-image: url(../media/fr.9b218945.svg)
}

.fi-ga {
    background-image: url(../media/ga.c54a4716.svg)
}

.fi-ga.fis {
    background-image: url(../media/ga.ed2911b6.svg)
}

.fi-gb {
    background-image: url(../media/gb.a50bb9b9.svg)
}

.fi-gb.fis {
    background-image: url(../media/gb.84704546.svg)
}

.fi-gd {
    background-image: url(../media/gd.eb7b9436.svg)
}

.fi-gd.fis {
    background-image: url(../media/gd.338d504a.svg)
}

.fi-ge {
    background-image: url(../media/ge.6f2dd066.svg)
}

.fi-ge.fis {
    background-image: url(../media/ge.4dd14a50.svg)
}

.fi-gf {
    background-image: url(../media/gf.3432de9d.svg)
}

.fi-gf.fis {
    background-image: url(../media/gf.ebd3395c.svg)
}

.fi-gg {
    background-image: url(../media/gg.2a17e1f5.svg)
}

.fi-gg.fis {
    background-image: url(../media/gg.20336d11.svg)
}

.fi-gh {
    background-image: url(../media/gh.c17cf878.svg)
}

.fi-gh.fis {
    background-image: url(../media/gh.448b0251.svg)
}

.fi-gi {
    background-image: url(../media/gi.424fb04d.svg)
}

.fi-gi.fis {
    background-image: url(../media/gi.1942c880.svg)
}

.fi-gl {
    background-image: url(../media/gl.78358425.svg)
}

.fi-gl.fis {
    background-image: url(../media/gl.5444bdb4.svg)
}

.fi-gm {
    background-image: url(../media/gm.ed8bbaab.svg)
}

.fi-gm.fis {
    background-image: url(../media/gm.f9f1be29.svg)
}

.fi-gn {
    background-image: url(../media/gn.649ba66f.svg)
}

.fi-gn.fis {
    background-image: url(../media/gn.f1877078.svg)
}

.fi-gp {
    background-image: url(../media/gp.bbea90b2.svg)
}

.fi-gp.fis {
    background-image: url(../media/gp.6fcf1bbe.svg)
}

.fi-gq {
    background-image: url(../media/gq.44727e21.svg)
}

.fi-gq.fis {
    background-image: url(../media/gq.45699a0a.svg)
}

.fi-gr {
    background-image: url(../media/gr.c44dd9de.svg)
}

.fi-gr.fis {
    background-image: url(../media/gr.b29b73cc.svg)
}

.fi-gs {
    background-image: url(../media/gs.94933fbb.svg)
}

.fi-gs.fis {
    background-image: url(../media/gs.db5efd5d.svg)
}

.fi-gt {
    background-image: url(../media/gt.acfe5a80.svg)
}

.fi-gt.fis {
    background-image: url(../media/gt.32123d23.svg)
}

.fi-gu {
    background-image: url(../media/gu.8f72d472.svg)
}

.fi-gu.fis {
    background-image: url(../media/gu.c22f341b.svg)
}

.fi-gw {
    background-image: url(../media/gw.ea5c7733.svg)
}

.fi-gw.fis {
    background-image: url(../media/gw.63a96ba0.svg)
}

.fi-gy {
    background-image: url(../media/gy.a49496e0.svg)
}

.fi-gy.fis {
    background-image: url(../media/gy.f6fc470b.svg)
}

.fi-hk {
    background-image: url(../media/hk.fbcde7e7.svg)
}

.fi-hk.fis {
    background-image: url(../media/hk.dce082af.svg)
}

.fi-hm {
    background-image: url(../media/hm.82bbdf2c.svg)
}

.fi-hm.fis {
    background-image: url(../media/hm.5becb17f.svg)
}

.fi-hn {
    background-image: url(../media/hn.2743fae6.svg)
}

.fi-hn.fis {
    background-image: url(../media/hn.04ddc9c9.svg)
}

.fi-hr {
    background-image: url(../media/hr.6238917f.svg)
}

.fi-hr.fis {
    background-image: url(../media/hr.ff570f50.svg)
}

.fi-ht {
    background-image: url(../media/ht.567095aa.svg)
}

.fi-ht.fis {
    background-image: url(../media/ht.2cb09b40.svg)
}

.fi-hu {
    background-image: url(../media/hu.16c6335f.svg)
}

.fi-hu.fis {
    background-image: url(../media/hu.dd178f4f.svg)
}

.fi-id {
    background-image: url(../media/id.4cad97a8.svg)
}

.fi-id.fis {
    background-image: url(../media/id.14f7cd20.svg)
}

.fi-ie {
    background-image: url(../media/ie.81491cb3.svg)
}

.fi-ie.fis {
    background-image: url(../media/ie.3ffc25e6.svg)
}

.fi-il {
    background-image: url(../media/il.80b0a878.svg)
}

.fi-il.fis {
    background-image: url(../media/il.189a898e.svg)
}

.fi-im {
    background-image: url(../media/im.08b118cb.svg)
}

.fi-im.fis {
    background-image: url(../media/im.f54be823.svg)
}

.fi-in {
    background-image: url(../media/in.895a1570.svg)
}

.fi-in.fis {
    background-image: url(../media/in.d0d6fbfb.svg)
}

.fi-io {
    background-image: url(../media/io.6769cc90.svg)
}

.fi-io.fis {
    background-image: url(../media/io.f6eea29c.svg)
}

.fi-iq {
    background-image: url(../media/iq.2be4d3c9.svg)
}

.fi-iq.fis {
    background-image: url(../media/iq.818de327.svg)
}

.fi-ir {
    background-image: url(../media/ir.801fbb84.svg)
}

.fi-ir.fis {
    background-image: url(../media/ir.4fac8a9b.svg)
}

.fi-is {
    background-image: url(../media/is.d9058ffe.svg)
}

.fi-is.fis {
    background-image: url(../media/is.429236e3.svg)
}

.fi-it {
    background-image: url(../media/it.919398e6.svg)
}

.fi-it.fis {
    background-image: url(../media/it.a33eed70.svg)
}

.fi-je {
    background-image: url(../media/je.88159619.svg)
}

.fi-je.fis {
    background-image: url(../media/je.49e8810a.svg)
}

.fi-jm {
    background-image: url(../media/jm.d2a19045.svg)
}

.fi-jm.fis {
    background-image: url(../media/jm.bdacb13d.svg)
}

.fi-jo {
    background-image: url(../media/jo.1d753f70.svg)
}

.fi-jo.fis {
    background-image: url(../media/jo.5f1bc0fd.svg)
}

.fi-jp {
    background-image: url(../media/jp.469572a4.svg)
}

.fi-jp.fis {
    background-image: url(../media/jp.f7679c7d.svg)
}

.fi-ke {
    background-image: url(../media/ke.f16cb069.svg)
}

.fi-ke.fis {
    background-image: url(../media/ke.eae8b5ec.svg)
}

.fi-kg {
    background-image: url(../media/kg.5d491efb.svg)
}

.fi-kg.fis {
    background-image: url(../media/kg.d4e62663.svg)
}

.fi-kh {
    background-image: url(../media/kh.7a65519f.svg)
}

.fi-kh.fis {
    background-image: url(../media/kh.555e3a5a.svg)
}

.fi-ki {
    background-image: url(../media/ki.fbc849c3.svg)
}

.fi-ki.fis {
    background-image: url(../media/ki.cf8b82a1.svg)
}

.fi-km {
    background-image: url(../media/km.7a0dade4.svg)
}

.fi-km.fis {
    background-image: url(../media/km.3b6643b2.svg)
}

.fi-kn {
    background-image: url(../media/kn.fd378e90.svg)
}

.fi-kn.fis {
    background-image: url(../media/kn.108c8847.svg)
}

.fi-kp {
    background-image: url(../media/kp.904381db.svg)
}

.fi-kp.fis {
    background-image: url(../media/kp.d37d1cf3.svg)
}

.fi-kr {
    background-image: url(../media/kr.653f2f60.svg)
}

.fi-kr.fis {
    background-image: url(../media/kr.b7c6fcdd.svg)
}

.fi-kw {
    background-image: url(../media/kw.f6baad6c.svg)
}

.fi-kw.fis {
    background-image: url(../media/kw.fb4eb65c.svg)
}

.fi-ky {
    background-image: url(../media/ky.1cee0845.svg)
}

.fi-ky.fis {
    background-image: url(../media/ky.c0a0214f.svg)
}

.fi-kz {
    background-image: url(../media/kz.8bb1b115.svg)
}

.fi-kz.fis {
    background-image: url(../media/kz.20232208.svg)
}

.fi-la {
    background-image: url(../media/la.21965b6b.svg)
}

.fi-la.fis {
    background-image: url(../media/la.a6797aaf.svg)
}

.fi-lb {
    background-image: url(../media/lb.4ce2be48.svg)
}

.fi-lb.fis {
    background-image: url(../media/lb.928748a8.svg)
}

.fi-lc {
    background-image: url(../media/lc.75168bb4.svg)
}

.fi-lc.fis {
    background-image: url(../media/lc.ab0f97c6.svg)
}

.fi-li {
    background-image: url(../media/li.1b07c512.svg)
}

.fi-li.fis {
    background-image: url(../media/li.6c961d47.svg)
}

.fi-lk {
    background-image: url(../media/lk.87a67414.svg)
}

.fi-lk.fis {
    background-image: url(../media/lk.f72f9533.svg)
}

.fi-lr {
    background-image: url(../media/lr.53b9aaa6.svg)
}

.fi-lr.fis {
    background-image: url(../media/lr.24de0706.svg)
}

.fi-ls {
    background-image: url(../media/ls.3ffccbb5.svg)
}

.fi-ls.fis {
    background-image: url(../media/ls.9d74b3ad.svg)
}

.fi-lt {
    background-image: url(../media/lt.bf4fafec.svg)
}

.fi-lt.fis {
    background-image: url(../media/lt.8caacf8e.svg)
}

.fi-lu {
    background-image: url(../media/lu.c7c449cb.svg)
}

.fi-lu.fis {
    background-image: url(../media/lu.f76643be.svg)
}

.fi-lv {
    background-image: url(../media/lv.a0f4e501.svg)
}

.fi-lv.fis {
    background-image: url(../media/lv.4971dcb7.svg)
}

.fi-ly {
    background-image: url(../media/ly.767d61c3.svg)
}

.fi-ly.fis {
    background-image: url(../media/ly.b15665e7.svg)
}

.fi-ma {
    background-image: url(../media/ma.ac9e8647.svg)
}

.fi-ma.fis {
    background-image: url(../media/ma.011669b1.svg)
}

.fi-mc {
    background-image: url(../media/mc.4575357b.svg)
}

.fi-mc.fis {
    background-image: url(../media/mc.8d86df98.svg)
}

.fi-md {
    background-image: url(../media/md.46084208.svg)
}

.fi-md.fis {
    background-image: url(../media/md.16f4b7fa.svg)
}

.fi-me {
    background-image: url(../media/me.3c71b59e.svg)
}

.fi-me.fis {
    background-image: url(../media/me.4fb0f7fc.svg)
}

.fi-mf {
    background-image: url(../media/mf.ec6640d7.svg)
}

.fi-mf.fis {
    background-image: url(../media/mf.bc094987.svg)
}

.fi-mg {
    background-image: url(../media/mg.fdccffd8.svg)
}

.fi-mg.fis {
    background-image: url(../media/mg.4877b16a.svg)
}

.fi-mh {
    background-image: url(../media/mh.2e69453f.svg)
}

.fi-mh.fis {
    background-image: url(../media/mh.84332268.svg)
}

.fi-mk {
    background-image: url(../media/mk.e08d824e.svg)
}

.fi-mk.fis {
    background-image: url(../media/mk.2e8a86db.svg)
}

.fi-ml {
    background-image: url(../media/ml.8913b6a0.svg)
}

.fi-ml.fis {
    background-image: url(../media/ml.ba7ce81b.svg)
}

.fi-mm {
    background-image: url(../media/mm.88f1ae1b.svg)
}

.fi-mm.fis {
    background-image: url(../media/mm.588f0238.svg)
}

.fi-mn {
    background-image: url(../media/mn.61dee92b.svg)
}

.fi-mn.fis {
    background-image: url(../media/mn.11a4fb81.svg)
}

.fi-mo {
    background-image: url(../media/mo.49df4949.svg)
}

.fi-mo.fis {
    background-image: url(../media/mo.ddca0a6e.svg)
}

.fi-mp {
    background-image: url(../media/mp.8e1a1ccc.svg)
}

.fi-mp.fis {
    background-image: url(../media/mp.f4a099cf.svg)
}

.fi-mq {
    background-image: url(../media/mq.552f523c.svg)
}

.fi-mq.fis {
    background-image: url(../media/mq.ff8d61a6.svg)
}

.fi-mr {
    background-image: url(../media/mr.8bf868ab.svg)
}

.fi-mr.fis {
    background-image: url(../media/mr.acf8d7f9.svg)
}

.fi-ms {
    background-image: url(../media/ms.0907f0f2.svg)
}

.fi-ms.fis {
    background-image: url(../media/ms.2077dd4a.svg)
}

.fi-mt {
    background-image: url(../media/mt.7e1c4dd5.svg)
}

.fi-mt.fis {
    background-image: url(../media/mt.8fa8dfc0.svg)
}

.fi-mu {
    background-image: url(../media/mu.c9c6e4ee.svg)
}

.fi-mu.fis {
    background-image: url(../media/mu.42abd700.svg)
}

.fi-mv {
    background-image: url(../media/mv.f37078c1.svg)
}

.fi-mv.fis {
    background-image: url(../media/mv.cd985551.svg)
}

.fi-mw {
    background-image: url(../media/mw.37635efa.svg)
}

.fi-mw.fis {
    background-image: url(../media/mw.d50d7ea9.svg)
}

.fi-mx {
    background-image: url(../media/mx.8c5c2973.svg)
}

.fi-mx.fis {
    background-image: url(../media/mx.480e2c5a.svg)
}

.fi-my {
    background-image: url(../media/my.b401f0bd.svg)
}

.fi-my.fis {
    background-image: url(../media/my.1e658de7.svg)
}

.fi-mz {
    background-image: url(../media/mz.2f07f2e3.svg)
}

.fi-mz.fis {
    background-image: url(../media/mz.4bc428a9.svg)
}

.fi-na {
    background-image: url(../media/na.54baa000.svg)
}

.fi-na.fis {
    background-image: url(../media/na.a64d8ca1.svg)
}

.fi-nc {
    background-image: url(../media/nc.d686b1f4.svg)
}

.fi-nc.fis {
    background-image: url(../media/nc.31869201.svg)
}

.fi-ne {
    background-image: url(../media/ne.6a215ca5.svg)
}

.fi-ne.fis {
    background-image: url(../media/ne.ddabaa80.svg)
}

.fi-nf {
    background-image: url(../media/nf.f6f398d7.svg)
}

.fi-nf.fis {
    background-image: url(../media/nf.bd461721.svg)
}

.fi-ng {
    background-image: url(../media/ng.ec2e74e2.svg)
}

.fi-ng.fis {
    background-image: url(../media/ng.5247079e.svg)
}

.fi-ni {
    background-image: url(../media/ni.b67664f3.svg)
}

.fi-ni.fis {
    background-image: url(../media/ni.28e5d35d.svg)
}

.fi-nl {
    background-image: url(../media/nl.85512516.svg)
}

.fi-nl.fis {
    background-image: url(../media/nl.0f90b76d.svg)
}

.fi-no {
    background-image: url(../media/no.4ceb414c.svg)
}

.fi-no.fis {
    background-image: url(../media/no.a519bc0f.svg)
}

.fi-np {
    background-image: url(../media/np.c115a58e.svg)
}

.fi-np.fis {
    background-image: url(../media/np.670d8639.svg)
}

.fi-nr {
    background-image: url(../media/nr.f98dec91.svg)
}

.fi-nr.fis {
    background-image: url(../media/nr.a83a706b.svg)
}

.fi-nu {
    background-image: url(../media/nu.e3a84a02.svg)
}

.fi-nu.fis {
    background-image: url(../media/nu.ab755ce5.svg)
}

.fi-nz {
    background-image: url(../media/nz.16212e51.svg)
}

.fi-nz.fis {
    background-image: url(../media/nz.e296aaa6.svg)
}

.fi-om {
    background-image: url(../media/om.4bed163d.svg)
}

.fi-om.fis {
    background-image: url(../media/om.373fe4e7.svg)
}

.fi-pa {
    background-image: url(../media/pa.78bb9a3d.svg)
}

.fi-pa.fis {
    background-image: url(../media/pa.beca3af6.svg)
}

.fi-pe {
    background-image: url(../media/pe.1320cd1a.svg)
}

.fi-pe.fis {
    background-image: url(../media/pe.74e80a97.svg)
}

.fi-pf {
    background-image: url(../media/pf.21c0bcc2.svg)
}

.fi-pf.fis {
    background-image: url(../media/pf.3da8dbe6.svg)
}

.fi-pg {
    background-image: url(../media/pg.f8fb35a5.svg)
}

.fi-pg.fis {
    background-image: url(../media/pg.5e9b463f.svg)
}

.fi-ph {
    background-image: url(../media/ph.84a2556b.svg)
}

.fi-ph.fis {
    background-image: url(../media/ph.63c4356d.svg)
}

.fi-pk {
    background-image: url(../media/pk.4e379b9a.svg)
}

.fi-pk.fis {
    background-image: url(../media/pk.a3662ce6.svg)
}

.fi-pl {
    background-image: url(../media/pl.4ca59b6d.svg)
}

.fi-pl.fis {
    background-image: url(../media/pl.b7f0464c.svg)
}

.fi-pm {
    background-image: url(../media/pm.a5508b8f.svg)
}

.fi-pm.fis {
    background-image: url(../media/pm.6e3b8747.svg)
}

.fi-pn {
    background-image: url(../media/pn.8da3c564.svg)
}

.fi-pn.fis {
    background-image: url(../media/pn.560e2932.svg)
}

.fi-pr {
    background-image: url(../media/pr.89d15f52.svg)
}

.fi-pr.fis {
    background-image: url(../media/pr.eac89ae4.svg)
}

.fi-ps {
    background-image: url(../media/ps.b08f1a2e.svg)
}

.fi-ps.fis {
    background-image: url(../media/ps.aeba5dc9.svg)
}

.fi-pt {
    background-image: url(../media/pt.4f4aed1d.svg)
}

.fi-pt.fis {
    background-image: url(../media/pt.164e60e4.svg)
}

.fi-pw {
    background-image: url(../media/pw.c4139f47.svg)
}

.fi-pw.fis {
    background-image: url(../media/pw.e47cd8a0.svg)
}

.fi-py {
    background-image: url(../media/py.589f91ad.svg)
}

.fi-py.fis {
    background-image: url(../media/py.45c475d8.svg)
}

.fi-qa {
    background-image: url(../media/qa.f779f3e2.svg)
}

.fi-qa.fis {
    background-image: url(../media/qa.79dab309.svg)
}

.fi-re {
    background-image: url(../media/re.d3c4fc19.svg)
}

.fi-re.fis {
    background-image: url(../media/re.4d18457f.svg)
}

.fi-ro {
    background-image: url(../media/ro.c05f47cb.svg)
}

.fi-ro.fis {
    background-image: url(../media/ro.4885a544.svg)
}

.fi-rs {
    background-image: url(../media/rs.8ccd2ab9.svg)
}

.fi-rs.fis {
    background-image: url(../media/rs.318d5b27.svg)
}

.fi-ru {
    background-image: url(../media/ru.6d651e8b.svg)
}

.fi-ru.fis {
    background-image: url(../media/ru.63932a35.svg)
}

.fi-rw {
    background-image: url(../media/rw.c85e0781.svg)
}

.fi-rw.fis {
    background-image: url(../media/rw.04eaf790.svg)
}

.fi-sa {
    background-image: url(../media/sa.b9007726.svg)
}

.fi-sa.fis {
    background-image: url(../media/sa.e5384306.svg)
}

.fi-sb {
    background-image: url(../media/sb.cf6a4ceb.svg)
}

.fi-sb.fis {
    background-image: url(../media/sb.63a8b779.svg)
}

.fi-sc {
    background-image: url(../media/sc.ae98e9c5.svg)
}

.fi-sc.fis {
    background-image: url(../media/sc.95a235db.svg)
}

.fi-sd {
    background-image: url(../media/sd.e0e59b6e.svg)
}

.fi-sd.fis {
    background-image: url(../media/sd.cc39c2fd.svg)
}

.fi-se {
    background-image: url(../media/se.ec52785e.svg)
}

.fi-se.fis {
    background-image: url(../media/se.6e3dfa92.svg)
}

.fi-sg {
    background-image: url(../media/sg.7ad85643.svg)
}

.fi-sg.fis {
    background-image: url(../media/sg.6c7c77dd.svg)
}

.fi-sh {
    background-image: url(../media/sh.3ad15ea1.svg)
}

.fi-sh.fis {
    background-image: url(../media/sh.9a586a73.svg)
}

.fi-si {
    background-image: url(../media/si.f5601e6e.svg)
}

.fi-si.fis {
    background-image: url(../media/si.ccc26c06.svg)
}

.fi-sj {
    background-image: url(../media/sj.239f992c.svg)
}

.fi-sj.fis {
    background-image: url(../media/sj.86309dc7.svg)
}

.fi-sk {
    background-image: url(../media/sk.36b4d176.svg)
}

.fi-sk.fis {
    background-image: url(../media/sk.9957e848.svg)
}

.fi-sl {
    background-image: url(../media/sl.193f7759.svg)
}

.fi-sl.fis {
    background-image: url(../media/sl.b8e2f9c8.svg)
}

.fi-sm {
    background-image: url(../media/sm.b7261ba0.svg)
}

.fi-sm.fis {
    background-image: url(../media/sm.23a41e48.svg)
}

.fi-sn {
    background-image: url(../media/sn.562c00dd.svg)
}

.fi-sn.fis {
    background-image: url(../media/sn.3ab9bf55.svg)
}

.fi-so {
    background-image: url(../media/so.81fb24d4.svg)
}

.fi-so.fis {
    background-image: url(../media/so.90ac99ad.svg)
}

.fi-sr {
    background-image: url(../media/sr.3b1c3796.svg)
}

.fi-sr.fis {
    background-image: url(../media/sr.0953a6a0.svg)
}

.fi-ss {
    background-image: url(../media/ss.1612a976.svg)
}

.fi-ss.fis {
    background-image: url(../media/ss.6f65d43c.svg)
}

.fi-st {
    background-image: url(../media/st.e2d0e812.svg)
}

.fi-st.fis {
    background-image: url(../media/st.24c52b78.svg)
}

.fi-sv {
    background-image: url(../media/sv.0e916201.svg)
}

.fi-sv.fis {
    background-image: url(../media/sv.98512b35.svg)
}

.fi-sx {
    background-image: url(../media/sx.f407c644.svg)
}

.fi-sx.fis {
    background-image: url(../media/sx.7105ebb4.svg)
}

.fi-sy {
    background-image: url(../media/sy.03f8419e.svg)
}

.fi-sy.fis {
    background-image: url(../media/sy.fab84757.svg)
}

.fi-sz {
    background-image: url(../media/sz.1dcbdeb6.svg)
}

.fi-sz.fis {
    background-image: url(../media/sz.8fcb2ad6.svg)
}

.fi-tc {
    background-image: url(../media/tc.110e34b0.svg)
}

.fi-tc.fis {
    background-image: url(../media/tc.c47991a5.svg)
}

.fi-td {
    background-image: url(../media/td.4112ccd5.svg)
}

.fi-td.fis {
    background-image: url(../media/td.5f20acc4.svg)
}

.fi-tf {
    background-image: url(../media/tf.7c977baf.svg)
}

.fi-tf.fis {
    background-image: url(../media/tf.5fa85387.svg)
}

.fi-tg {
    background-image: url(../media/tg.f434b187.svg)
}

.fi-tg.fis {
    background-image: url(../media/tg.171d7e88.svg)
}

.fi-th {
    background-image: url(../media/th.b00e082a.svg)
}

.fi-th.fis {
    background-image: url(../media/th.ef374066.svg)
}

.fi-tj {
    background-image: url(../media/tj.9c507e17.svg)
}

.fi-tj.fis {
    background-image: url(../media/tj.15422eff.svg)
}

.fi-tk {
    background-image: url(../media/tk.c0bf669c.svg)
}

.fi-tk.fis {
    background-image: url(../media/tk.4c50bf5b.svg)
}

.fi-tl {
    background-image: url(../media/tl.2c56cc08.svg)
}

.fi-tl.fis {
    background-image: url(../media/tl.8a381dde.svg)
}

.fi-tm {
    background-image: url(../media/tm.76b4ea01.svg)
}

.fi-tm.fis {
    background-image: url(../media/tm.70324768.svg)
}

.fi-tn {
    background-image: url(../media/tn.37c8e7ce.svg)
}

.fi-tn.fis {
    background-image: url(../media/tn.00f037a9.svg)
}

.fi-to {
    background-image: url(../media/to.e21e7b02.svg)
}

.fi-to.fis {
    background-image: url(../media/to.c6f3657c.svg)
}

.fi-tr {
    background-image: url(../media/tr.d4c9d92a.svg)
}

.fi-tr.fis {
    background-image: url(../media/tr.0def5aa5.svg)
}

.fi-tt {
    background-image: url(../media/tt.e0985f1c.svg)
}

.fi-tt.fis {
    background-image: url(../media/tt.6ab528e2.svg)
}

.fi-tv {
    background-image: url(../media/tv.3824bd65.svg)
}

.fi-tv.fis {
    background-image: url(../media/tv.6903cb03.svg)
}

.fi-tw {
    background-image: url(../media/tw.73a45808.svg)
}

.fi-tw.fis {
    background-image: url(../media/tw.be895da5.svg)
}

.fi-tz {
    background-image: url(../media/tz.2fc608dc.svg)
}

.fi-tz.fis {
    background-image: url(../media/tz.1c849474.svg)
}

.fi-ua {
    background-image: url(../media/ua.f2fcca8e.svg)
}

.fi-ua.fis {
    background-image: url(../media/ua.1906adac.svg)
}

.fi-ug {
    background-image: url(../media/ug.c763208a.svg)
}

.fi-ug.fis {
    background-image: url(../media/ug.0649a4b7.svg)
}

.fi-um {
    background-image: url(../media/um.dcc46281.svg)
}

.fi-um.fis {
    background-image: url(../media/um.3bcbb586.svg)
}

.fi-us {
    background-image: url(../media/us.ed9e9dcf.svg)
}

.fi-us.fis {
    background-image: url(../media/us.74ba1789.svg)
}

.fi-uy {
    background-image: url(../media/uy.9537a65d.svg)
}

.fi-uy.fis {
    background-image: url(../media/uy.d2ccd308.svg)
}

.fi-uz {
    background-image: url(../media/uz.f2c7bb34.svg)
}

.fi-uz.fis {
    background-image: url(../media/uz.547d4bad.svg)
}

.fi-va {
    background-image: url(../media/va.cf5c475a.svg)
}

.fi-va.fis {
    background-image: url(../media/va.098e6750.svg)
}

.fi-vc {
    background-image: url(../media/vc.fef5eea8.svg)
}

.fi-vc.fis {
    background-image: url(../media/vc.236a0c50.svg)
}

.fi-ve {
    background-image: url(../media/ve.fc18ce10.svg)
}

.fi-ve.fis {
    background-image: url(../media/ve.fadaaf82.svg)
}

.fi-vg {
    background-image: url(../media/vg.6f83a135.svg)
}

.fi-vg.fis {
    background-image: url(../media/vg.fcaf70cf.svg)
}

.fi-vi {
    background-image: url(../media/vi.73d19f31.svg)
}

.fi-vi.fis {
    background-image: url(../media/vi.9c07d6d3.svg)
}

.fi-vn {
    background-image: url(../media/vn.72f1ed8d.svg)
}

.fi-vn.fis {
    background-image: url(../media/vn.8508d803.svg)
}

.fi-vu {
    background-image: url(../media/vu.0031be74.svg)
}

.fi-vu.fis {
    background-image: url(../media/vu.041d7436.svg)
}

.fi-wf {
    background-image: url(../media/wf.bca98a8b.svg)
}

.fi-wf.fis {
    background-image: url(../media/wf.f72e2367.svg)
}

.fi-ws {
    background-image: url(../media/ws.7d68a871.svg)
}

.fi-ws.fis {
    background-image: url(../media/ws.7f5978f7.svg)
}

.fi-ye {
    background-image: url(../media/ye.9d9e4c9f.svg)
}

.fi-ye.fis {
    background-image: url(../media/ye.8f3c7165.svg)
}

.fi-yt {
    background-image: url(../media/yt.045dc596.svg)
}

.fi-yt.fis {
    background-image: url(../media/yt.a50469fc.svg)
}

.fi-za {
    background-image: url(../media/za.b4b48b9d.svg)
}

.fi-za.fis {
    background-image: url(../media/za.41aa0ffd.svg)
}

.fi-zm {
    background-image: url(../media/zm.546d1105.svg)
}

.fi-zm.fis {
    background-image: url(../media/zm.d140a71a.svg)
}

.fi-zw {
    background-image: url(../media/zw.f731297d.svg)
}

.fi-zw.fis {
    background-image: url(../media/zw.268cabba.svg)
}

.fi-arab {
    background-image: url(../media/arab.80202ce6.svg)
}

.fi-arab.fis {
    background-image: url(../media/arab.5453d607.svg)
}

.fi-cefta {
    background-image: url(../media/cefta.3c76a868.svg)
}

.fi-cefta.fis {
    background-image: url(../media/cefta.6ce94a42.svg)
}

.fi-cp {
    background-image: url(../media/cp.d0eb7df6.svg)
}

.fi-cp.fis {
    background-image: url(../media/cp.f400c9ba.svg)
}

.fi-dg {
    background-image: url(../media/dg.3aca390e.svg)
}

.fi-dg.fis {
    background-image: url(../media/dg.47d23584.svg)
}

.fi-eac {
    background-image: url(../media/eac.33877f5b.svg)
}

.fi-eac.fis {
    background-image: url(../media/eac.1e5b17e3.svg)
}

.fi-es-ct {
    background-image: url(../media/es-ct.5e59862b.svg)
}

.fi-es-ct.fis {
    background-image: url(../media/es-ct.c6598d85.svg)
}

.fi-es-ga {
    background-image: url(../media/es-ga.ec3cb77a.svg)
}

.fi-es-ga.fis {
    background-image: url(../media/es-ga.d636e546.svg)
}

.fi-es-pv {
    background-image: url(../media/es-pv.73f0dc2b.svg)
}

.fi-es-pv.fis {
    background-image: url(../media/es-pv.98874354.svg)
}

.fi-eu {
    background-image: url(../media/eu.cef9551f.svg)
}

.fi-eu.fis {
    background-image: url(../media/eu.6f18afcd.svg)
}

.fi-gb-eng {
    background-image: url(../media/gb-eng.e1fc6b4f.svg)
}

.fi-gb-eng.fis {
    background-image: url(../media/gb-eng.5107a4c2.svg)
}

.fi-gb-nir {
    background-image: url(../media/gb-nir.3373f6f9.svg)
}

.fi-gb-nir.fis {
    background-image: url(../media/gb-nir.1f1ff7f5.svg)
}

.fi-gb-sct {
    background-image: url(../media/gb-sct.10f3906a.svg)
}

.fi-gb-sct.fis {
    background-image: url(../media/gb-sct.6618f22c.svg)
}

.fi-gb-wls {
    background-image: url(../media/gb-wls.ed753b1e.svg)
}

.fi-gb-wls.fis {
    background-image: url(../media/gb-wls.177b6ee1.svg)
}

.fi-ic {
    background-image: url(../media/ic.1404e905.svg)
}

.fi-ic.fis {
    background-image: url(../media/ic.b8b8078e.svg)
}

.fi-pc {
    background-image: url(../media/pc.f4f93430.svg)
}

.fi-pc.fis {
    background-image: url(../media/pc.7598f754.svg)
}

.fi-sh-ac {
    background-image: url(../media/sh-ac.54107ff5.svg)
}

.fi-sh-ac.fis {
    background-image: url(../media/sh-ac.88ff57e3.svg)
}

.fi-sh-hl {
    background-image: url(../media/sh-hl.5f50fb49.svg)
}

.fi-sh-hl.fis {
    background-image: url(../media/sh-hl.0902110e.svg)
}

.fi-sh-ta {
    background-image: url(../media/sh-ta.8250445d.svg)
}

.fi-sh-ta.fis {
    background-image: url(../media/sh-ta.d8575da8.svg)
}

.fi-un {
    background-image: url(../media/un.b37ced61.svg)
}

.fi-un.fis {
    background-image: url(../media/un.1aad5c12.svg)
}

.fi-xk {
    background-image: url(../media/xk.7f06d7f5.svg)
}

.fi-xk.fis {
    background-image: url(../media/xk.033589f4.svg)
}

@font-face {
    font-family: __Ubuntu_52cd8b;
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url(../media/1ba8e8b6c9d172f6-s.woff2) format("woff2");
    unicode-range: U+0460-052f,U+1c80-1c88,U+20b4,U+2de0-2dff,U+a640-a69f,U+fe2e-fe2f
}

@font-face {
    font-family: __Ubuntu_52cd8b;
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url(../media/95eedef70bd4de40-s.p.woff2) format("woff2");
    unicode-range: U+0301,U+0400-045f,U+0490-0491,U+04b0-04b1,U+2116
}

@font-face {
    font-family: __Ubuntu_52cd8b;
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url(../media/1d8e2dbdadbdf483-s.woff2) format("woff2");
    unicode-range: U+1f??
}

@font-face {
    font-family: __Ubuntu_52cd8b;
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url(../media/d1e001fefb299ae5-s.woff2) format("woff2");
    unicode-range: U+0370-0377,U+037a-037f,U+0384-038a,U+038c,U+038e-03a1,U+03a3-03ff
}

@font-face {
    font-family: __Ubuntu_52cd8b;
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url(../media/2463254c8c0fd5e6-s.woff2) format("woff2");
    unicode-range: U+0100-02af,U+0304,U+0308,U+0329,U+1e00-1e9f,U+1ef2-1eff,U+2020,U+20a0-20ab,U+20ad-20c0,U+2113,U+2c60-2c7f,U+a720-a7ff
}

@font-face {
    font-family: __Ubuntu_52cd8b;
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url(../media/f28c0d0ddfdf7c25-s.woff2) format("woff2");
    unicode-range: U+00??,U+0131,U+0152-0153,U+02bb-02bc,U+02c6,U+02da,U+02dc,U+0304,U+0308,U+0329,U+2000-206f,U+2074,U+20ac,U+2122,U+2191,U+2193,U+2212,U+2215,U+feff,U+fffd
}

@font-face {
    font-family: __Ubuntu_52cd8b;
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(../media/cb6f448281d0c282-s.woff2) format("woff2");
    unicode-range: U+0460-052f,U+1c80-1c88,U+20b4,U+2de0-2dff,U+a640-a69f,U+fe2e-fe2f
}

@font-face {
    font-family: __Ubuntu_52cd8b;
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(../media/0cf580864ae59341-s.p.woff2) format("woff2");
    unicode-range: U+0301,U+0400-045f,U+0490-0491,U+04b0-04b1,U+2116
}

@font-face {
    font-family: __Ubuntu_52cd8b;
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(../media/fb3d4f9492d39101-s.woff2) format("woff2");
    unicode-range: U+1f??
}

@font-face {
    font-family: __Ubuntu_52cd8b;
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(../media/b3e13a4ac57b538e-s.woff2) format("woff2");
    unicode-range: U+0370-0377,U+037a-037f,U+0384-038a,U+038c,U+038e-03a1,U+03a3-03ff
}

@font-face {
    font-family: __Ubuntu_52cd8b;
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(../media/8bb90efd1b2442e0-s.woff2) format("woff2");
    unicode-range: U+0100-02af,U+0304,U+0308,U+0329,U+1e00-1e9f,U+1ef2-1eff,U+2020,U+20a0-20ab,U+20ad-20c0,U+2113,U+2c60-2c7f,U+a720-a7ff
}

@font-face {
    font-family: __Ubuntu_52cd8b;
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(../media/f884d4ea94220255-s.woff2) format("woff2");
    unicode-range: U+00??,U+0131,U+0152-0153,U+02bb-02bc,U+02c6,U+02da,U+02dc,U+0304,U+0308,U+0329,U+2000-206f,U+2074,U+20ac,U+2122,U+2191,U+2193,U+2212,U+2215,U+feff,U+fffd
}

@font-face {
    font-family: __Ubuntu_52cd8b;
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url(../media/f98b5748eac51d35-s.woff2) format("woff2");
    unicode-range: U+0460-052f,U+1c80-1c88,U+20b4,U+2de0-2dff,U+a640-a69f,U+fe2e-fe2f
}

@font-face {
    font-family: __Ubuntu_52cd8b;
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url(../media/f9e3f1f7478b5cbf-s.p.woff2) format("woff2");
    unicode-range: U+0301,U+0400-045f,U+0490-0491,U+04b0-04b1,U+2116
}

@font-face {
    font-family: __Ubuntu_52cd8b;
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url(../media/2ffff5335cee8907-s.woff2) format("woff2");
    unicode-range: U+1f??
}

@font-face {
    font-family: __Ubuntu_52cd8b;
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url(../media/cfcbe5037985cfe8-s.woff2) format("woff2");
    unicode-range: U+0370-0377,U+037a-037f,U+0384-038a,U+038c,U+038e-03a1,U+03a3-03ff
}

@font-face {
    font-family: __Ubuntu_52cd8b;
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url(../media/7eba5a0cf69ea5af-s.woff2) format("woff2");
    unicode-range: U+0100-02af,U+0304,U+0308,U+0329,U+1e00-1e9f,U+1ef2-1eff,U+2020,U+20a0-20ab,U+20ad-20c0,U+2113,U+2c60-2c7f,U+a720-a7ff
}

@font-face {
    font-family: __Ubuntu_52cd8b;
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url(../media/e76854c588de135c-s.woff2) format("woff2");
    unicode-range: U+00??,U+0131,U+0152-0153,U+02bb-02bc,U+02c6,U+02da,U+02dc,U+0304,U+0308,U+0329,U+2000-206f,U+2074,U+20ac,U+2122,U+2191,U+2193,U+2212,U+2215,U+feff,U+fffd
}

@font-face {
    font-family: __Ubuntu_52cd8b;
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(../media/d4f7cefda76b2fff-s.woff2) format("woff2");
    unicode-range: U+0460-052f,U+1c80-1c88,U+20b4,U+2de0-2dff,U+a640-a69f,U+fe2e-fe2f
}

@font-face {
    font-family: __Ubuntu_52cd8b;
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(../media/d51be7479414f4fc-s.p.woff2) format("woff2");
    unicode-range: U+0301,U+0400-045f,U+0490-0491,U+04b0-04b1,U+2116
}

@font-face {
    font-family: __Ubuntu_52cd8b;
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(../media/3be63adebbe80e17-s.woff2) format("woff2");
    unicode-range: U+1f??
}

@font-face {
    font-family: __Ubuntu_52cd8b;
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(../media/7e2a926bef88262a-s.woff2) format("woff2");
    unicode-range: U+0370-0377,U+037a-037f,U+0384-038a,U+038c,U+038e-03a1,U+03a3-03ff
}

@font-face {
    font-family: __Ubuntu_52cd8b;
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(../media/86ba892d94d0e659-s.woff2) format("woff2");
    unicode-range: U+0100-02af,U+0304,U+0308,U+0329,U+1e00-1e9f,U+1ef2-1eff,U+2020,U+20a0-20ab,U+20ad-20c0,U+2113,U+2c60-2c7f,U+a720-a7ff
}

@font-face {
    font-family: __Ubuntu_52cd8b;
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(../media/e94cfb95acf534f2-s.woff2) format("woff2");
    unicode-range: U+00??,U+0131,U+0152-0153,U+02bb-02bc,U+02c6,U+02da,U+02dc,U+0304,U+0308,U+0329,U+2000-206f,U+2074,U+20ac,U+2122,U+2191,U+2193,U+2212,U+2215,U+feff,U+fffd
}

@font-face {
    font-family: __Ubuntu_Fallback_52cd8b;
    src: local("Arial");
    ascent-override:90.81%;descent-override:18.42%;line-gap-override:2.73%;size-adjust:102.63%}

.__className_52cd8b {
    font-family: __Ubuntu_52cd8b,__Ubuntu_Fallback_52cd8b;
    font-style: normal
}
