@charset "UTF-8";

@font-face {
    font-family: Google Sans;
    src: url(/assets/GoogleSans-Regular.woff2) format("woff2"), url(/assets/GoogleSans-Regular.woff) format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: Google Sans;
    src: url(/assets/GoogleSans-Medium.woff2) format("woff2"), url(/assets/GoogleSans-Medium.woff2) format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: Google Sans;
    src: url(/assets/GoogleSans-Bold.woff2) format("woff2"), url(/assets/GoogleSans-Bold.woff) format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: Roboto;
    src: url(/assets/Roboto-Regular.woff2) format("woff2"), url(/assets/Roboto-Regular.woff) format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: SF Pro Display;
    src: url(/assets/SF-Pro-Display-Regular.woff2) format("woff2"), url(/assets/SF-Pro-Display-Regular.woff) format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: SF Pro Display;
    src: url(/assets/SF-Pro-Display-Medium.woff2) format("woff2"), url(/assets/SF-Pro-Display-Medium.woff) format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: SF Pro Display;
    src: url(/assets/SF-Pro-Display-Bold.woff2) format("woff2"), url(/assets/SF-Pro-Display-Bold.woff) format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap
}

@keyframes progressFill {
    0% {
        width: 0
    }

    to {
        width: 100%
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0
    }

    to {
        background-position: 200% 0
    }
}

.market-component,
.skeleton-component {
    margin: 0 auto
}

.chooser__list {
    display: flex;
    flex-direction: column
}

.chooser__item {
    padding: 10px;
    border-bottom: 1px solid #ddd
}

.chooser__button {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    align-items: center
}

.chooser__icon {
    width: 30px;
    height: 30px
}

.chooser__text {
    font-family: Google Sans;
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    color: #202124
}

.loader {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.loader__shimmer {
    width: 150px;
    height: 150px;
    border-radius: 16px;
    background: linear-gradient(to right, #f0f0f0, #e0e0e0 20%, #f0f0f0 40% 100%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite linear
}

.loader__img {
    width: 150px;
    height: 150px;
    border-radius: 16px
}

.loader__text {
    font-family: Google Sans;
    font-size: 19px;
    line-height: 23px;
    font-weight: 500;
    color: #202124
}

.loader__top-wrap {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px
}

.loader__progress-container {
    width: 100%;
    height: 6px;
    background-color: #ddd;
    border-radius: 3px;
    overflow: hidden;
    margin-top: 20px
}

.loader__progress-bar {
    width: 0;
    height: 100%;
    background-color: #4caf50;
    animation: progressFill 1s linear forwards
}