

/* Start:/local/components/choodly/about/templates/.default/style.css?17619928234942*/
.about-component {
    position: relative;
    width: 100%;
    min-height: 100vw;
}

.logo {
    max-width: 1129px;
    width: 65%;
    aspect-ratio: 2.35;
}

.logo img {
    width: 100%;
    margin-top: 73px;
}

.about__menu {
    position: absolute;
    top: 30px;
    right: 9%;
}

.top-menu {
    display: flex;
    justify-content: start;
    align-items: center;

}

.top-menu__item {
    list-style-type: none;
    font-weight: 700;
    font-style: Bold;
    font-size: 100%;
    line-height: 121%;
    letter-spacing: 3%;
    text-align: center;
    text-transform: uppercase;

    margin-right: 42px;
}

.top-menu__item a {
    color: #fff;
    text-decoration: none;
}

.strawberry {
    max-width: 625px;
    width: 36.17%;
    aspect-ratio: 1.34;
    position: absolute;
    top: 60px;
    right: 11.87%;
}

.strawberry img {
    width: 100%;
}

.dolphin {
    position: absolute;
    top: 430px;
    right: 0;
    max-width: 483px;
    width: 28%;
    aspect-ratio: 1.07;
}

.dolphin img {
    width: 100%;
}

.about__text {
    width: 100%;
    color: #fff;
    margin-top: 70px;
    margin-bottom: 44px;
}

.about__text-title {
    width: 192px;
    height: 90px;
    margin: 0 auto;
    font-weight: 700;
    font-size: 281%;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
    margin-bottom: 17px;
}

.about__text-detail {
    width: 653px;
    margin: 0 auto;
    font-family: 'Raleway';
    font-weight: 400;
    font-size: 100%;
    line-height: 114.99999999999999%;
    letter-spacing: 0%;
    text-align: center;
}

.about-component-mobile {
    display: none;
}

@media (max-width: 990px) {

    .about-component {
        display: none;
    }

    .about-component-mobile {
        display: block;
        position: relative;
        width: 100%;
    }

    /* Навбар */
    .navbar {
        background-color: transparent;
        /*padding: 1rem 0;*/
        position: relative;
        width: 100%;
        top: 0;
        z-index: 10;
    }

    .navbar-container {
        width: 100%;
        margin: 0 auto;
        padding: 0 20px;
        display: flex;
        justify-content: end;
        align-items: center;
    }

    .navbar-logo {
        color: white;
        text-decoration: none;
        font-size: 1.5rem;
        font-weight: bold;
    }

    .bar {
        width: 25px;
        height: 3px;
        background-color: white;
        margin: 3px 0;
        transition: 0.3s;
        border-radius: 2px;
    }

    /* Навигационное меню */
    .nav-menu {
        display: flex;
        list-style: none;
        gap: 2rem;
    }

    .nav-link {
        color: white;
        text-decoration: none;
        font-size: 1rem;
        transition: color 0.3s;
        padding: 0.5rem 1rem;
        border-radius: 4px;
    }

    .nav-link:hover {
        color: #3498db;
        background-color: rgba(255,255,255,0.1);
    }

    /* Основной контент */
    .main-content {
        margin-top: 80px;
        padding: 2rem;
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }


    .hamburger {
        display: flex;
        z-index: 11;
        flex-direction: column;
        cursor: pointer;
        padding: 5px;
        background: none;
        border: none;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background-color: #1A428A;
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: 0.3s;
        padding-top: 80px;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 0;
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: 1.5rem;
        font-size: 1.2rem;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        width: 100%;
    }

    .nav-link:hover {
        background-color: #1A428A;
        color: #fff;
    }

    /* Анимация гамбургера */
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);

    }

    .about-component-mobile__logo {
        text-align: center;
    }
    
    .about-component-mobile__logo img {
        width: 100%;
        max-width: 600px;
    }

    .about__text {
        margin: 0;
    }
    
    .about__text-title {
        font-size: 287%;
        text-align: center;
        margin-bottom: 30px;
    }

    .about__text-detail {
        max-width: 472px;
        width: 100%;
        font-size: 87.5%;
        padding: 0 5px;
    }

    .strawberry-mobile {
        text-align: center;
        max-width: 485px;
        margin: 37vw auto 0 auto;
    }

    .strawberry-mobile img {
        width: 100%;

    }
}
/* End */


/* Start:/local/components/choodly/countries/templates/.default/style.css?17620836463520*/
.countries-component {
    margin-top: 80px;
    min-height: 100vw;
}

.countries__nav {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.countries__nav .nav-item a {
    display: block;
    text-decoration: none;
    transition: all 0.1s ease;
}

.countries__nav .nav-item a:hover {
    transform: scale(1.2);
}

.countries__nav .nav-item img {
    width: 100%;

}

.countries__country {
    width: 100%;
    display: none;
}



.countries__country.active {
    display: flex;
    justify-content: space-between;
    overflow: hidden;
    padding-top: 61px;
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}

.countries__country.hiding {
    opacity: 0;
}

.country__choodly{
    max-width: 1238px;
    width: 54.34%;
}

.country-desc {
    max-width: 789px;
    width: 45.66%;
}

.country-desc__img {
    width: 100%;
    margin: 8.8%;
    margin-bottom: 20px;
}

.country-desc__text {
    max-width: 335px;
    width: 100%;
    margin: 0 40px 40px 23%;
    font-family: "Raleway";
    font-size: 72.72%;
    letter-spacing: 0.5px;
    color: #1A428A;
    line-height: 121.00000381469727%;
}
.country-desc__img img{
    width: 100%;
}

.country-desc__btn {
    width: 100%;
}

.country-btn {
    width: 253px;
    height: 53px;
    text-transform: uppercase;
    background: #BF8CF2;
    color: #fff;
    font-family: "Raleway";
    font-size: 100%;
    border-radius: 18px;
    margin-left: 23%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.countries-component-mobile {
    display: none;
}
@media (max-width: 990px) {

    .countries-component {
        display: none;
    }

    .countries-component-mobile {
        display: block;
        margin-top: 10vw;
    }

    .country-mobile-icon {
        width: 100%;
        height: 100%;
        display: block;
        text-align: center;
    }

    .country-mobile-icon img {
        width: 100%;
        max-width: 110px;
    }



    .countries-mobile-nav__item {
        flex: 1;
    }

    .countries-mobile-nav {
        display: flex;
        align-items: center;
        justify-content: space-around;
    }


    .countries-mobile__country {
        position: relative;
        width: 100%;
        display: none;
    }

    .countries-mobile__country.active {
        display: block;
    }

    .country-mobile__icon-title {
        text-align: center;
        margin-top: 50px;
    }

    .country-mobile__icon-title img{
        max-width: 362px;
        width: 100%;

    }

    .country-mobile__choodly {
        text-align: center;
        margin-top: 5vw;
    }

    .country-mobile__choodly img {
        max-width: 614px;
        width: 100%;

    }

    .country-mobile__text {
        max-width: 200px;
        text-align: center;
        width: 100%;
        font-family: 'Raleway';
        font-size: 87.5%;
        margin: 0 auto;
        color: #1A428A;
        line-height: 115%;
    }

    .country-mobile__btn {
        width: 100%;
    }

    .country-mobile-btn {
        width: 190px;
        height: 31px;
        text-transform: uppercase;
        background: #BF8CF2;
        color: #fff;
        font-family: "Raleway";
        font-size: 112.5%;
        border-radius: 8px;
        font-weight: 600;
        margin: 50px auto;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
    }
    
    #country-mobile-4 .country-mobile-btn {
        color: #000;
    }
}


/* End */


/* Start:/local/components/choodly/slider/templates/.default/style.css?17627273976217*/
.slider-component {
    /*margin-top: -140px;*/
    height: 55vh;
}
.slider-component__wrapper {
    max-width: 1250px;
    width: 100%;
    position: relative;
    margin: 0 auto;
}

.swiper {
    max-width: 1110px;
    width: 88.8%;
    height: 450px;
}

.swiper-wrapper {
    align-items: end;
}

.swiper-slide {
    position: relative;
    height: 334px;
    margin-bottom: 50px;
}

.swiper-slide__bg img{
    width: 100%;
    height: 100%;
    border-radius: 18px;
}

.swiper-slide__content-wrapper {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
}

.swiper-slide-content {
    display: flex;
}

.swiper-slide-content__text,
.swiper-slide-content__img {
    width: 50%;
}

.swiper-slide-content__img {
    position: relative;
}

@keyframes sway-subtle {
    0%,
    100% {
        transform: rotate(-1deg);
    }
    50% {
        transform: rotate(1deg);
    }
}

.swiper-slide-content__img img:first-child {

    position: absolute;
    top: -77px;
    animation: sway-subtle 4s ease-in-out infinite;
    transform-origin: center center;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #F34A02;
    opacity: .33;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {

    opacity: 1;
}

.swiper-button-prev {
    left: -1%!important;
}

.swiper-button-next {
    right: -1%!important;
}

.swiper-button-prev, .swiper-button-next {
    width: 5.76%;
}

.swiper-button-prev img, .swiper-button-next img{
    width: 100%;
}

.content-text__title {
    margin: 7% 0 0 15%;
}

.content-text__title.wildberies {
    margin: 13% 0 0 15%;
}

.text-title {
    font-family: 'Raleway';
    font-size: 189.5%;
    color: #fff;
    font-weight: 700;
    line-height: 41.8px;
    text-transform: uppercase;
    letter-spacing: 0.89px;
}

.content-text__text {
    font-family: 'Raleway';
    font-size: 167.68%;
    line-height: 37px;
    letter-spacing: 0.79px;
    color: #fff;
    margin: 0 0 0 23%;
    text-transform: lowercase;
}

@media (max-width: 1240px) {
    .swiper-navigation-icon {
        display: none;
    }
    .swiper-button-prev, .swiper-button-next {
        width: 44px;
    }
    .swiper-button-prev {
        left: 1% !important;
    }
    .swiper-button-next {
        right: 1% !important;
    }

}

.swiper.mobile {
    display: none;
}
.swiper.xs-mobile {
    display: none;
}

@media (max-width: 990px) {
    
    .swiper {
        display: none;
    }

    .swiper.mobile {
        display: block;
    }

    .swiper-button-next, .swiper-button-prev {
        display: none;
    }
    .swiper {
        width: 100%;
        height: 100%;
    }

    .swiper-wrapper {
        margin-left: 30px;
    }

    .swiper-slide img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .swiper-slide {
        width: 80%;
        margin-bottom: 0;
        height: 275px;
        margin-top: 56px;
    }

    .swiper-slide:nth-child(2n) {
        width: 100%;
    }

    .swiper-slide:nth-child(3n) {
        width: 100%;
    }

    .wildberies.swiper-slide-content__img img:first-child {
        height: 200px;
        top: 20px;
        right: 10px;
    }

    .content-text__title {
        margin: 19% 14% 0 11%;
    }

    .content-text__text {
        color: #fff;
        font-size: 20px;
        font-family: 'Raleway';
        line-height: 23px;
        margin: 0 0 0 12%;
    }

    .slider-btn{
        display: block;
        width: 140px;
        margin: 10px 0 0 13%;
    }
    
    .ozon.slider-btn {
        width: 165px;
        margin: 10px 0 0 31%;
    }

    .slider-btn img{
        width: 100%;
    }

    .ozon.swiper-slide-content__img img:first-child {
                top: -64px;
        right: 13px;
/*        width: 197px;
        height: 205px;*/
    }

    .ozon.content-text__title {
        margin: 4% 15% 0 30%;
    }

    .ozon.content-text__title .text-title {
        font-size: 100%;
    }

    .swiper-slide__bg {
        height: 211px;
    }

    .slider-component {
        height: unset;
        margin-top: 100px;
    }
}

@media(max-width: 540px){
    .swiper.mobile {
        display: none;
    }
    .swiper {
        display: none;
    }
    .swiper.xs-mobile {
        display: block;
        height: 200px;
    }
    .swiper-button-next, .swiper-button-prev {
        display: none;
    }
    .swiper {
        width: 100%;
        height: 100%;
    }

    .swiper-wrapper {
        margin-left: 30px;
    }

    .swiper-slide img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .swiper-slide {
        width: 80%;
                margin-bottom: 0;
        max-height: 200px;
        margin-top: 18px;
    }

    .swiper-slide:nth-child(2n) {
        width: 100%;
    }

    .swiper-slide:nth-child(3n) {
        width: 100%;
    }

    .wildberies.swiper-slide-content__img img:first-child {
        height: 65px;
        top: 40px;
        right: 3px;
    }

    .content-text__title {
        margin: 14% 14% 0 11%;
    }

    .content-text__text {
        color: #fff;
        font-size: 20px;
        font-family: 'Raleway';
        line-height: 23px;
        margin: 0 0 0 12%;
    }

    .slider-btn{
        display: block;
        width: 54px;
        margin: 10px 0 0 12%;
    }

    .slider-btn img{
        width: 100%;
    }

    .ozon.swiper-slide-content__img img:first-child {
        top: -12px;
        right: 29px;
        width: auto;
        height: 142px;
    }

    .ozon.content-text__title {
        margin: 7% 14% 0 11%;
    }

    .ozon.content-text__title .text-title {
        font-size: 12px;
    }

    .ozon.content-text__title img {
        height: 30px;
        width: auto;
    }

    .swiper-slide__bg {
        height: 130px;
    }

    .slider-component {
        height: unset;
        margin-top: 100px;
    }


    .swiper-slide-content__text {
        width: 60%;

    }
    .swiper-slide-content__img {
        width: 40%;
    }

    .content-text__text {
        font-size: 14px;
        line-height: 13px;
    }

    .swiper-wrapper {
        align-items: start;
    }
    
    .swiper-pagination {
        bottom: -5px;
    }
}
/* End */


/* Start:/local/components/choodly/game/templates/.default/style.css?17620804134123*/
.game-component {
    height: 74vw;
    position: relative;
    margin-top: max(150px, 10vw);
}

.game-component>img {
    position: absolute;
    width: 100%;
    top: 0;
    left: -9%;
}

.game {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    gap: 5vw;
    margin-top: 28vw;
}

.game__desc {
    width: 40vw;
}

.game-desc__title {
    font-family: 'Jakob';
    font-weight: normal;
    font-size: 290.9%;
    letter-spacing: 9%;
    line-height: 108%;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 30px;
    padding-left: 7vw;
    padding-top: 3vw;
}

.game-desc__btn {
    padding-left: 7vw;
}

.game-desc__text {
    font-size: 72.72%;
    color: #fff;
    font-family: 'Raleway';
    margin-bottom: 50px;
    padding-left: 7vw;
}

.game-btn {
    width: 135px;
    height: 59px;
    background: #F34A02;
    color: #fff;
    text-transform: uppercase;
    border-radius: 18px;
    border: none;
    font-family: 'Raleway';
    letter-spacing: 0;
    font-size: 109%;
    cursor: pointer;
    transition: all 0.1s ease;

}

.game-btn:active {
    transform: scale(0.95);
}

.game__game {
    width: 55vw;
}

.geme-column {
    flex: none;
}

.game-card {
    height: 14.5vw;
    cursor: pointer;
    flex: 1;
}

.game-card img {
    width: 100%;
}

.game-cards__row {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 41vw;
}

.flip-container {
    perspective: 1000px;
    width: 100%;
    height: 100%;
}

.flipper {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.flip-container.flipped .flipper {
    transform: rotateY(180deg);
}

.front, .back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

.back {
    transform: rotateY(180deg);
}

.game__timer {
    margin: 10px 0;
    font-family: 'Raleway';
    font-size: 109%;
    color: #fff;
}

.game__timer.mobile {
    display: none;
}

.mobile-game-bg {
    display: none;
}
@media (max-width: 990px) {

    .game-component {
        height: 195vw;
        overflow:hidden;
    }

    .game {
        position: relative;
        gap:unset;
        flex-direction: column;
        margin: 0;
    }

    .desktop-game-bg {
        display: none;
    }
    .game-desc {
        width: 100%;
        text-align: center;
    }
    .game-desc__title {
        margin: 0;
        padding: 0;
        color: #1A428A;
        font-size: 383%;
    }
    .game-desc__text {
        margin: 50px 0;
        padding: 0;
        font-size: 125%;
        color: #1A428A;
    }

    .game-desc__btn {
        padding: 0;

    }

    .game-btn {
        color: #fff;
        font-size: 177%;
        background-color: #222B9B;
        font-weight: bold;
    }

    .game__game {
        padding: 0;
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: 35vw;
    }

    .game__timer.desktop {
        display: none;
    }
    .game__timer.mobile {
        display: block;
        text-align: center;
    }
    .game-card {
        height: 28.5vw;
        width: 20vw;
    }
    .game-cards__row {
        width: unset;
    }

    .game-component>img {
        position: absolute;
        top: 125vw;
        bottom: 0;
        left: 0;
        width: 100%;
        transform: scale(2);
    }

    .mobile-game-bg {
        display: block;
    }
}

@media (max-width: 540px) {
    .game-component {
        margin-top: max(50px, 10vw);
    }
    .game-desc__title {
        font-size: 32px;
        font-weight: bold;
        padding-top: 10px;
    }

    .game-desc__text {
        margin: 10px 0;
        padding: 0;
        font-size: 14px;
    }

    .game-btn {
        font-size: 14px;
        width: 120px;
        height: 43px;
    }
    
}

@media (min-width: 1800px) {
    .game-card {
        height: 9.5vw
    }

    .game-cards__row {
        width: 27vw;
    }
}
/* End */


/* Start:/local/components/choodly/social/templates/.default/style.css?17642357615908*/
.choodly-social-component {

    background: url(/local/components/choodly/social/templates/.default/img/social_bg.png) no-repeat -100px 33px;
    background-size: cover;
    position: relative;
    margin-top: -13vw;
    height: 70vw;
}

.choodly-left {
    max-width: 544px;
    width: 31.5%;
    left: -40%;
    bottom: 20px;
    position: absolute;
    transition: left 1s ease-in-out;
}

.choodly-left.visible {
    left: 0;
}

.choodly-right {
    max-width: 554px;
    width: 31.5%;
    right: -40%;
    top: 20px;
    position: absolute;
    transition: right 1s ease-in-out;
    z-index: 99;
}

.choodly-right.visible {
    right: 0;
}

.choodly-right__wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.choodly-left img,
.choodly-right img {
    width: 100%;
}

.choodly-right__text {
    color: #1A428A;
    font-size: 100%;
    position: absolute;
    top: 27%;
    left: 15%;
    opacity: 0;
    max-width: 238px;
    width: 46.2%;
    transition: all 1s ease;
}

.choodly-right__text.visible {
    opacity: 1;
}

.social-component__text {
    text-align: center;
    font-size: 100%;
    color: #fff;
    font-family: 'Raleway';
    line-height: 115%;
    max-width: 653px;
    margin: 0 auto;
    padding-top: 7vh;
}

.choodly-right__social {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-top: 20px;

}

.choodly-right__social-icon {
    width: 35.74%;
    height: 35.74%;
    display: block;

}

.choodly-right__social-icon img {
    width: 100%;
    border-radius: 25px;
}

.choodly-left__text {
    color: #1A428A;

    font-family: 'JakobRegular';
    font-size: 100%;
    position: absolute;
    top: 20%;
    left: 53%;
    opacity: 0;
    max-width: 184px;
    width: 34.45%;
    transition: all 1s ease;
}

.choodly-left__text.visible {
    opacity: 1;
}

.social-component__title {
    font-size: 290%;
    text-transform: uppercase;
    font-family: 'JakobRegular';
    color: #fff;
    line-height: 121%;
    letter-spacing: 4px;
    text-align: center;
    padding-top: 30%;
}

.choodly-social__grass {
    width: 11.11%;
    max-width: 192px;
    position: absolute;
    left: 21%;
    bottom: -10px;
    z-index: 9;
}

.choodly-social__grass img {
    width: 100%;
}

.choodly-social__marketplace {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: max(655px, 80vw);
    padding-top: 12vw;
    padding-left: 35vw;
}

.marketplace__waldberis img {
    width: 100%;
}

.marketplace__waldberis {
    max-width: 300px;
    width: 100%;
    display: block;
    margin-right: 25px;
}

.marketplace__ozon {
    max-width: 202px;
    width: 100%;
    display: block;
    margin-right: 25px;
}

.marketplace__ozon img {
    width: 100%;
}

@media (max-width: 1440px) {
    .choodly-left__text {
        width: 72%;
        left: 50%;
    }
}

/*@media (max-width: 1400px){
    .choodly-social-component {
        margin-top: 2vh;
    }
}*/

.social-mobile-wrapper {
    display: none;
}
@media (max-width: 990px) {

    .choodly-social-component {
        position: relative;
        background: none;
        min-height: 200vw;
        margin-top: 0;
    }
    .social-mobile-bg{
        display: block;
        position: absolute;
        top: -32vw;
        right: -20vw;
        z-index: 0;
    }
    /*    .social-component-wrapper, .choodly-social__marketplace {
            display: none;
        }*/
    .social-mobile-wrapper {
        display: flex;
        flex-direction: column;

    }
    
    .social-mobile__row .choodly-right {
        position: relative;
        width: 100%;
        max-width: 500px;
        top: unset;
        bottom: unset;
        right: unset;
        left: unset;
        margin: 0 auto;
        /*        opacity: 0;
                transition: opacity 1s ease;*/
    }

    .social-mobile__row .choodly-right.visible {
        opacity: 1;
    }

    .social-destop-wrapper {
        display: none;
    }

    .social-mobile__row .choodly-right .choodly-right__text{
        opacity: 1;
        font-weight: bold;
        font-size: 150%;
    }

    .social-component__title {
        font-size: 46px;
        padding-top: 50px;
    }

    .social-component__text {
        font-size: 20px;
        max-width: 466px;
    }

    .choodly-social__marketplace {
        align-items: center;
        width: 100%;
        max-width: max(655px, 80vw);
        flex-direction: column;
        text-align: center;
        margin: 0 auto;
        padding: 0;
    }

    .marketplace__waldberis {
        margin: 40px 0 40px 0;
    }

    .choodly-left {
        max-width: 544px;
        display: flex;
        width: 100%;
        left: 0;
        top: unset;
        right: unset;
        bottom: 0;
        position: absolute;
        /*        transition: left 1s
                    ease-in-out;*/
    }

    .choodly-social__grass {
        max-width: 192px;
        position: absolute;
        left: 50vw;
        bottom: -2vw;
        z-index: 9;
        width: 100%;
    }
    
    .choodly-left__text {
        font-family: 'Jakob';
        font-size: 156%;
        opacity: 1;
        font-weight: bold;
    }
}

@media (max-width: 540px) {
    
    .social-mobile__row .choodly-right .choodly-right__text {
        font-size: 16px;
    }
    .social-component__title {
        font-size: 32px;
    }
    .social-component__text {
        font-size: 14px;
        padding-top: 2vw;
    }
    .marketplace__waldberis {
        max-width: 200px;
        margin: 10px 0;
    }
    .marketplace__ozon {
        max-width: 140px;
        margin: 0px 0px 10px 0px;
    }
    .choodly-social-component {
        min-height: 250vw;
    }
    .choodly-social__grass {
        max-width: 95px;
        left: 65vw;
    }
    .choodly-left__text {
        font-size: 20px;
        width: 40%;
        left: 50%;
    }
    .footer-social-mobile {
        padding: 20px!important;
    }
}
/* End */
/* /local/components/choodly/about/templates/.default/style.css?17619928234942 */
/* /local/components/choodly/countries/templates/.default/style.css?17620836463520 */
/* /local/components/choodly/slider/templates/.default/style.css?17627273976217 */
/* /local/components/choodly/game/templates/.default/style.css?17620804134123 */
/* /local/components/choodly/social/templates/.default/style.css?17642357615908 */
