.mobile {
    display: none;
}
.blobBtn.whiteGreen {
    background: #fff;
    color: #00665e;
    border: 2px solid #00665e;
    min-width: 190px;
    height: 44px;
    line-height: 44px;
    margin: 0;
}
.blobBtn.whiteGreen:hover {
    transform: scale(1.06);
}
.greenText{
    color: #00665e;
    font-weight: 800;
}
.pinkText{
    color: #e31f8d;
    font-weight: 800;
}
section#mashaBear {
    font-size: 16px;
}
section#mashaBear .innest {
    max-width: 660px;
    position: relative;
}
section#mashaBear h1, section#mashaBear h2 {
    color: #00665e;
}
section#mashaBear h3{
    text-transform: uppercase;
    font-size: 33px;
    color: #00665e;
}
section#mashaBear h2 {
    font-family: 'VAGRoundedLTPro';
    text-transform: none;
}

section#mashaBear h3 span, section#mashaBear h2 span {
    color: #e31f8d;
}
section#mashaBear p {
    color: #00665e;
}
section#mashaBear .discoverNewTaste p strong {
    color: #c277b4;
    font-weight: 700;
}
section#mashaBear p strong span {
    color: #e31f8d;
}
section#mashaBear p span {
    color: #e75541;
    font-weight: 700;
}

/************  QUIZ  **************/

section#mashaBearQuiz .quiz{
    position: relative;
}
section#mashaBearQuiz .level > .tabs > .tab {
    width: 50%;
}
section#mashaBearQuiz .level .tab:nth-of-type(1){
    background: #fff6e4;
    position: relative;
}
section#mashaBearQuiz .level .tab:nth-of-type(2){
    background: #FFF;
    position: relative;
}
section#mashaBearQuiz .level .tab:nth-of-type(1)::after{
    content: '';
    background: url("../images/quizTriangle.svg") center no-repeat;
    width: 25px;
    height: 50px;
    display: inline-block;
    position: absolute;
    top: 50%;
    right: -25px;
    z-index: 2;
}
section#mashaBearQuiz .level .animation {
    position: relative;
}
section#mashaBearQuiz .level .animation .scaler {
    padding-bottom: 112.5%;
    position: relative;
}
section#mashaBearQuiz .level .animation video {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}
section#mashaBearQuiz .level .animation.success{
    display: none;
}
.popup.mashaBearPopup .tabs.main .tab.main {
    padding: 0;
}
.popup.mashaBearPopup {
    background: #fff6e4;
}
.popup.mashaBearPopup .placer {
    width: 100%;
    max-width: none;
    border-radius: 0;
    padding: 0px;
    box-shadow: none;
    background: none
}
.popup.mashaBearPopup .placer .content,
.popup.mashaBearPopup .placer .content #mashaBearQuiz,
.popup.mashaBearPopup .placer .content #mashaBearQuiz .quiz,
.popup.mashaBearPopup .placer .content #mashaBearQuiz .quiz .level {
    height: 100%;
}
section#mashaBearQuiz .level{
    display: none;
}
section#mashaBearQuiz .level.active {
    display: block;
}
section#mashaBearQuiz .question{
    color: #c277b4;
    font-size: 22px;
    line-height: 1;
    text-align: left;
    max-width: 420px;
    margin: 0px auto;
}
section#mashaBearQuiz .options{
    max-width: 340px;
    margin: 40px auto 20px auto;
}
section#mashaBearQuiz .options .option{
    padding: 15px 20px;
    color: #c277b4;
    border: 1px solid #c277b4;
    border-radius: 30px;
    margin: 20px auto;
    font-size: 18px;
    cursor: pointer;
}
section#mashaBearQuiz .options .right{
    color: #ffffff;
    background: #c277b4;
    position: relative;
    transition: all 0.3s ease-in-out;
}
section#mashaBearQuiz .options .right::before{
    content: '';
    background: url("../images/quizCheckmark.svg") center no-repeat;
    width: 34px;
    height: 34px;
    display: inline-block;
    position: absolute;
    top: 10px;
    left: -45px;
    cursor: auto;
}
section#mashaBearQuiz .options .wrong{
    color: #ffffff;
    background: #d34132;
    border: 1px solid #d34132;
    position: relative;
    transition: all 0.3s ease-in-out;
}
section#mashaBearQuiz .options .wrong::before{
    content: '';
    background: url("../images/quizWrong.svg?v=3") center no-repeat;
    width: 34px;
    height: 34px;
    display: inline-block;
    position: absolute;
    top: 10px;
    left: -45px;
    cursor: auto;
}
section#mashaBearQuiz .nextLevelBtn .tab {
    vertical-align: bottom;
}
section#mashaBearQuiz .nextLevelBtn {
    position: absolute;
    left: 42%;
    bottom: 20px;
    color: #ffffff;
    text-align: center;
    cursor: pointer;
    display: none;
    box-sizing: border-box;
}
/*section#mashaBearQuiz .nextLevelBtn {*/
/*    position: absolute;*/
/*    left: 50%;*/
/*    margin-left: -10px;*/
/*    bottom: 20px;*/
/*    color: #C277B4;*/
/*    text-align: left;*/
/*    width: 120px;*/
/*    cursor: pointer;*/
/*    display: none;*/
/*    box-sizing: border-box;*/
/*}*/

section#mashaBearQuiz .nextLevelBtn img {
    width: 20px;
    height: auto;
    display: block;
    cursor: pointer;
    position: relative;
    -webkit-animation: mover 500ms infinite  alternate;
    animation: mover 500ms infinite  alternate;
}

@-webkit-keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}
@keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}
@-webkit-keyframes scale {
    0% { transform: scale(1)  }
    50% { transform: scale(1.1)  }
    100% { transform: scale(1)  }
}
@keyframes scale {
    0% { transform: scale(1)  }
    50% { transform: scale(1.1)  }
    100% { transform: scale(1)  }
}
section#mashaBearQuiz .nextLevelBtn .btnArrow{
    position: relative;
    padding-bottom: 7px;
}
section#mashaBearQuiz .nextLevelBtn .btnArrow::after{
    content: '';
    width: 40px;
    height: 40px;
    display: block;
    border: 4px solid #c277b4;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    margin-left: -20px;
    box-sizing: border-box;
    z-index: 1;
    bottom: 0;
    animation: scale 1s ease-in-out infinite alternate;
}
section#mashaBearQuiz .nextLevelBtn .tabs .tab:nth-child(2){
    padding-left: 20px;
}
section#mashaBearQuiz {
    position: relative;
}
section#mashaBearQuiz .fail{
    background: #fff6e4;
    position: relative;
    display: none;
    height: 100%;
}
section#mashaBearQuiz .fail .tabs .tab{
    vertical-align: bottom;
}
section#mashaBearQuiz .fail::after{
    content: '';
    background: #f8ecd9;
    width: 100%;
    height: 111px;
    display: block;
    position: absolute;
    z-index: 1;
    bottom: 0px;
}
section#mashaBearQuiz .content_fail{
    max-width: 450px;
    background: #ffffff;
    border-radius: 15px;
    margin: 105px auto;
    position: relative;
    padding-bottom: 60px;
}
section#mashaBearQuiz .content_fail::before{
    content: '';
    background: url("../images/masha_quiz_fail_bear.png?v=2") center/contain no-repeat;
    width: 300px;
    height: 380px;
    display: inline-block;
    position: absolute;
    top: 30px;
    left: -178px;
    z-index: 2;
}
section#mashaBearQuiz .content_fail::after{
    content: '';
    background: url("../images/masha_quiz_fail_girl.png?v=2") center/contain no-repeat;
    width: 175px;
    height: 280px;
    display: inline-block;
    position: absolute;
    bottom: -75px;
    right: -115px;
    z-index: 2;
}
section#mashaBearQuiz .content_fail h3{
    font-size: 86px;
    color: #e31f8d;
    padding-top: 40px;
}
section#mashaBearQuiz .content_fail p{
    font-size: 32px;
    font-weight: 700;
    padding-bottom: 40px;
}
section#mashaBearQuiz .content_fail .blobBtn{
    margin-bottom: 60px;
}
section#mashaBearQuiz .end{

    display: none;
}
section#mashaBearQuiz .success .successText{
    max-width: 580px;
    background: #ffffff;
    border-radius: 10px;
    margin: 10px auto;
    padding: 10px 20px;
    position: relative;
}
section#mashaBearQuiz .success .successText::after{
    content: '';
    background: url('../images/quizWhiteTriangle.svg') center no-repeat;
    width: 50px;
    height: 30px;
    display: inline-block;
    position: absolute;
    bottom: -28px;
    right: 50%;
    margin-right: -25px;
    z-index: 2;
}
section#mashaBearQuiz .success .successText h3{
    font-size: 56px;
    font-weight: 800;
}
section#mashaBearQuiz .success .successText p{
    font-size: 30px;
    color: #c277b4;

}
section#mashaBearQuiz .success .successImage{
    max-width: 75%;
    margin: 20px auto;
}
section#mashaBearQuiz .success .successImage img{
    margin: -45px -100px 45px 0px;
}
section#mashaBearQuiz .needContact h3{
    font-size:34px;
    color: #00665e;
}
section#mashaBearQuiz #form510 .submit{
    max-width: 450px;
    margin: 30px auto;

}
section#mashaBearQuiz #form510 .submit .label{
    padding: 10px 0px;
    color: #00665e;
}
section#mashaBearQuiz #form510 .submit .field.phone{
    padding: 10px 0px;
}
section#mashaBearQuiz #goBackButton{
    margin-top: 25px;
}
.ui-widget.ui-widget-content   {
    border: 2px solid #00665e !important;
}
.ui-datepicker th{
    color: #00665e;
}
.ui-datepicker select.ui-datepicker-month, section#mashaBearQuiz .ui-datepicker select.ui-datepicker-year{
    border-color: #00665e;
    color: #00665e;
}
.ui-datepicker select.ui-datepicker-month, .ui-datepicker select.ui-datepicker-year{
    border-color:  #00665e;
    color: #00665e;
}
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active{
    color: #00665e;
}
.ui-datepicker select.ui-datepicker-month:active, .ui-datepicker select.ui-datepicker-year:active, .ui-datepicker select.ui-datepicker-month:focus, .ui-datepicker select.ui-datepicker-year:focus, .ui-datepicker select.ui-datepicker-month:visited, .ui-datepicker select.ui-datepicker-year:visited{
    border-color:  #00665e;
    color: #00665e;
}
    /********  DISCOVER  *********/
.billboard::before {
    position: absolute;
    bottom: 0px;
    left: 20%;
    margin-left: -180px;
    content: '';
    background: transparent url('../images/masha_decoration_masha.png') center/contain no-repeat;
    width: 200px;
    height: 250px;
    z-index: 9;
}
.billboard::after {
    position: absolute;
    bottom: -30px;
    right: 80px;
    content: '';
    background: transparent url('../images/masha_decoration_pear.png') center/contain no-repeat;
    width: 140px;
    height: 170px;
    z-index: 9;
}
.shareFb {
    position: absolute;
    top: 5px;
    right: -90px;
    max-width: 80px;
    cursor: pointer;
}
.shareFb img {
    width: 100%;
    height: 30px;
}
.shareFb a {
    color: #00665e;
    text-decoration: none;
    font-weight: 700;
    line-height: 1;
}


section#mashaBear .lineBottom {
    position: relative;
}
section#mashaBear .lineBottom::after {
    height: 21px;
    width: 100%;
    position: absolute;
    content: '';
    background: transparent url('../images/masha_dashed_line.svg') center/contain no-repeat;
    left: 0;
    bottom: 5px;
    z-index: -1;
}
section#mashaBear .pinkBear {
    padding: 30px 40px 0;
    box-sizing: border-box;
}
section#mashaBear .pinkBear::before {
    position: absolute;
    content: '';
    background: #fcf2fa;
    height: 80%;
    width: 100%;
    z-index: -2;
    bottom: 25px;
    left: 0;
}

/*******  ingredients  *******/
section#mashaBear .ingredientsMasha {
    margin-top: 30px;
}
section#mashaBear .ingredientsMasha .block {
    max-width: 15%;
    min-width: 160px;
    vertical-align: top;
    text-align: left;
}
section#mashaBear .imageIngredients {
    padding: 5px 10px;
}
section#mashaBear .ingredientsMasha p {
    position: relative;
}
section#mashaBear .ingredientsMasha .checkedContent p::before {
    position: absolute;
    content: '';
    top: -6px;
    left: -27px;
    width: 26px;
    height: 28px;
    background: transparent url("../images/masha_checkmark.svg") center/contain no-repeat;
}
section#mashaBear .imageIngredients img {
    width: 100%;
    height: auto;
    display: block;
    margin: 4px auto;
}
section#mashaBear .disclaimer {
    font-size: 13px;
}


/************  HAVE FUN WITH MASHA  ************/

section#mashaBear .haveFunWithMasha, section#mashaBear .productsMasha {
    background: #fff6e4;
    padding: 20px 0;
}
section#mashaBear .haveFunWithMasha .quizMasha {
    margin: 0px 0 -25px;
}
section#mashaBear .haveFunWithMasha h3 .bigPink {
    display: block;
    font-size: 40px;
}
section#mashaBear .haveFunWithMasha p strong {
    color: #00665e;
}
section#mashaBear .haveFunWithMasha p a {
    color: #e31f8d;
}
section#mashaBear .rulesAndTime,
section#mashaBearQuiz .rulesAndTime span {
    color: #00665e;
    font-size: 14px;
    padding: 10px 0;
}
section#mashaBear .rulesAndTime span,
section#mashaBearQuiz .rulesAndTime span {
    margin: 4px 8px;
}
section#mashaBear .rulesAndTime a,
section#mashaBearQuiz .rulesAndTime a{
    color: #00665e;
}
section#mashaBear .haveFunWithMasha .blobBtn {
    font-size: 18px;
    min-width: 170px;
    height: 40px;
    line-height: 42px;
}


/************  QUALITY INGREDIENTS  ************/
section#mashaBear .bearQuality {
    position: relative;
    margin: -30px 0px 10px 60px;
}
section#mashaBear .contentQuality {
    max-width: 460px;
    position: absolute;
    margin: 0px auto;
    left: 50%;
    margin-left: -310px;
    top: 60px;
}

/**************  PRODUCTS  ****************/
section#mashaBear .listProducts {
    padding: 20px 0;
}
section#mashaBear .listProducts .block {
    max-width: 22%;
    padding: 30px 15px;
    transition: all 0.4s ease-in-out;
}
section#mashaBear .listProducts .block:hover {
    transform: scale(1.1);
}
section#mashaBear .listProducts .block:hover .productDetails {
   opacity: 1;
}
section#mashaBear .product h4 {
    font-size: 17px;
    color: #7cb13f;
    margin: 0;
}
section#mashaBear .listProducts .block:nth-child(2) h4 {
    color: #ee9421;
}
section#mashaBear .listProducts .block:nth-child(3) h4 {
    color: #d1b14d;
}
section#mashaBear .listProducts .block:last-child h4 {
    color: #d34132;
}
section#mashaBear .product h4::after {
    content: '';
    display: block;
    background: transparent url('../images/masha_pouches_green_dashed_line.svg') center/contain no-repeat;
    height: 30px;
}
section#mashaBear .listProducts .block:nth-child(2) h4::after {
    background: transparent url('../images/masha_pouches_orange_dashed_line.svg') center/contain no-repeat;
}
section#mashaBear .listProducts .block:nth-child(3) h4::after {
    background: transparent url('../images/masha_pouches_yellow_dashed_line.svg') center/contain no-repeat;
}
section#mashaBear .listProducts .block:last-child h4::after {
    background: transparent url('../images/masha_pouches_red_dashed_line.svg') center/contain no-repeat;
}
.productImage {
    position: relative;
    box-sizing: border-box;
}
section#mashaBear .productImage img {
    position: relative;
    z-index: 5;
    padding: 0 35px;
    width: 100%;
    height: auto;
    display: block;
    box-sizing: border-box;
    filter: drop-shadow(0px 4px 1px rgba(0,0,0,0.11)) drop-shadow(0 5px 2px rgba(0,0,0,0.11)) drop-shadow(0 7px 4px rgba(0,0,0,0.11)) drop-shadow(0 9px 8px rgba(0,0,0,0.11)) drop-shadow(0 11px 16px rgba(0,0,0,0.11));
}
section#mashaBear .productImage::after {
    content: '';
    position: absolute;
    bottom: -25px;
    left: 0;
    width: 100%;
    height: 55px;
    border-radius: 50%;
    background: #7cb13f;
}

section#mashaBear .listProducts .block:nth-child(2) .productImage::after {
    background: #ee9421;
}
section#mashaBear .listProducts .block:nth-child(3) .productImage::after {
    background: #d1b14d;
}
section#mashaBear .listProducts .block:last-child .productImage::after {
    background: #d34132;
}
section#mashaBear .productDetails {
    transition: all 0.4s ease-in-out;
    position: absolute;
    bottom: 30%;
    z-index: 9;
    padding: 40px 0;
    box-sizing: border-box;
    left: 0;
    width: 100%;
    background: transparent url('../images/pouchDetails.png') center/contain no-repeat;
    opacity: 0;
}
section#mashaBear .productDetails a {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
}
section#mashaBear .productDetails a span {
    margin-top: 10px;
    display: inline-block;
}
section#mashaBear .productDetails a img {
    width: 105px;
    display: block;
    height: auto;
    margin: 0px auto;
}


/**********  SHOP MASHA  *********/
section#mashaBear .buyMasha {
    margin: 15px auto;
    overflow: hidden;
}
section#mashaBear .shopMasha > .block {
    width: 50%;
}
section#mashaBear .shopMasha h2 {
    font-size: 35px;
}
section#mashaBear .buyMasha p.shopDisclaimer{
    color: #c277b4;
    font-size: 32px;
    text-align: center;
    line-height: 1.1;
    max-width: 41ch;
    margin: 20px auto;
    font-weight: 800;
}
section#mashaBear .arrowMashs {
    max-width: 480px;
    margin: 0 0 0 auto;
}
section#mashaBear .gallery {
    width: calc(100%/3);
    margin: 20px auto;
    display: flex;
}
section#mashaBear .gallery .flex-viewport {
    width: 100%;
    overflow: inherit !important;
}
section#mashaBear .slides > li .packshotMasha {
    display: table;
    width: 100%;
    height: 50px;
}
section#mashaBear .packshotMasha > div {
    display: table-cell;
    vertical-align: middle;
}
section#mashaBear .packshotMasha img {
    max-height: 60px;
    display: block;
    margin: 0px auto;
    width: auto;
    max-width: 170px;
    box-sizing: border-box;
}
section#mashaBear .flex-control-nav {
    display: none;
}
section#mashaBear .shopsList {
    position: relative;
    max-width: 990px;
    margin: 5px auto;
}
section#mashaBear .flex-direction-nav a {
    opacity: 1;
}
section#mashaBear .flex-direction-nav .flex-next {
    right: 20px;
}
section#mashaBear .flex-direction-nav .flex-prev {
    left: 20px;
}
section#mashaBear .flex-direction-nav a:before {
    content: '';
    width: 22px;
    height: 33px;
    background: transparent url("../images/masha_slider_lt_arrow.svg") center/contain no-repeat;
}
section#mashaBear .flex-direction-nav a.flex-next:before {
    background: transparent url("../images/masha_slider_rt_arrow.svg") center/contain no-repeat;
}
section#mashaBear .topShops > .block {
    width: 32%;
}
.contentShops a img {
    width: 22px;
    margin: 0px 0 0 10px;
}
.contentShops {
    text-align: center;
    border: 3px solid #fff6e4;
    padding: 25px 30px;
}
.contentShops > img {
    display: block;
    height: auto;
    max-height: 50px;
    margin: 0px auto 30px;
}

/************  MASHA SOCCER  ************/

section#mashaBear .mashaSoccer .pinkContainer .pinkContent p{
    width: 410px;
    position: relative;
}
section#mashaBear .mashaSoccer .pinkContainer .pinkContent p::before{
    content: '';
    background: url("../images/masha_checkmark_purple.svg") no-repeat;
    width: 35px;
    height: 34px;
    display: block;
    position: absolute;
    left: -45px;
}
section#mashaBear .mashaSoccer .pinkContainer .pinkContent p span{
    color:#e31f8d;
}
section#mashaBear .mashaSoccer .pinkContainer .mashaDecoration.left{
    top: -15%;
    width: 35%;
    left: -15%!important;
}
section#mashaBear .mashaSoccer .pinkContainer .mashaDecoration.right{
    width: 17%;
    top: 5%;
}
section#mashaBear .mashaPhotography{
    margin: 20px 0px 100px 0px;
}

/************  MASHA ASTRONAUT  ************/

section#mashaBear .mashaAstronaut,
section#mashaBear .mashaSoccer{
    margin: 60px 0px 40px 0px;
}
section#mashaBear .mashaAstronaut .pinkContainer,
section#mashaBear .mashaSoccer .pinkContainer{
    background: #fcf2fa;
    border-radius: 10px;
    position: relative;
}
section#mashaBear .mashaAstronaut .pinkContainer .mashaDecoration,
section#mashaBear .mashaSoccer .pinkContainer .mashaDecoration{
    width: 27%;
    height: auto;
    display: block;
    position: absolute;
    top:-20%;
    left: 0px;
}
section#mashaBear .mashaAstronaut .pinkContainer .mashaDecoration.left,
section#mashaBear .mashaSoccer .pinkContainer .mashaDecoration.left{
    left: -10%;
}
section#mashaBear .mashaAstronaut .pinkContainer .mashaDecoration.right,
section#mashaBear .mashaSoccer .pinkContainer .mashaDecoration.right{
    left: auto;
    right: -15%;
}
section#mashaBear .mashaAstronaut .pinkContainer .pinkContent,
section#mashaBear .mashaSoccer .pinkContainer .pinkContent{
    max-width: 360px;
    margin: 0px auto;
    text-align: left;
    padding: 30px 0px 40px;
}
section#mashaBear .mashaAstronaut .pinkContainer .pinkContent h2,
section#mashaBear .mashaSoccer .pinkContainer .pinkContent h2{
    font-size: 34px;
    line-height: 36px;
}

/************  MASHA INSTRUCTIONS  ************/

section#mashaBear .mashaInstructions{
    padding: 20px 0;
}
section#mashaBear .mashaInstructions .instructionsText,
section#mashaBear .mashaInstructions .instructionSteps .stepText{
    max-width: 660px;
    margin: 0px auto;
}
section#mashaBear .mashaInstructions h2,
section#mashaBear .mashaInstructions p{
    text-align: left;
    display: block;
}
section#mashaBear .mashaInstructions h2{
    line-height: 1;
    margin-bottom: 25px;
}
section#mashaBear .mashaInstructions h4{
    text-align: left;
    color: #c277b4;
    font-size: 34px;
}
section#mashaBear .mashaInstructions p{
    line-height: 1.4;
    width: 710px;
}
section#mashaBear .mashaInstructions .stepImage{
    width: 135px;
    padding-left: 30px;
}
section#mashaBear .mashaInstructions .instructionSteps{
    width: 955px;
}
section#mashaBear .mashaInstructions .step{
    width: 650px;
}
section#mashaBear .mashaInstructions .stepText{
    display: inline-block;
}

/************  COLOUR WITH MASHA  ************/

section#mashaBear .colourWithMasha{
    background: #fff6e4;
    padding: 20px 0;
    margin-bottom: 40px;
}
section#mashaBear .colourWithMasha a{
    text-decoration: none;
}
section#mashaBear .colourWithMasha .coloringPages{
    margin: 40px auto;
}
section#mashaBear .colourWithMasha .coloringPages .coloringPage{
    width: 33%;
    padding: 30px 10px;
    margin: 0 auto;
    text-align: left;
}
section#mashaBear .colourWithMasha .coloringPages .coloringPage h5{
    color:#c277b4;
    font-size: 18px;
    line-height: 22px;
    width: 18ch;
}
section#mashaBear .colourWithMasha .coloringPages .coloringPage h5 span{
    color: #e31f8d;
}
section#mashaBear .colourWithMasha .coloringPages .pageImage{
    max-width: 150px;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    z-index: 10;
}
section#mashaBear .colourWithMasha .coloringPages .pageImage img{
    width: 100%;
    display: block;
    filter:  drop-shadow(0px 1px 1px rgba(0,0,0,0.11))
    drop-shadow(0 2px 2px rgba(0,0,0,0.11))
    drop-shadow(0 4px 4px rgba(0,0,0,0.11))
    drop-shadow(0 6px 8px rgba(0,0,0,0.11))
    drop-shadow(0 8px 16px rgba(0,0,0,0.11));
}
section#mashaBear .colourWithMasha .coloringPages .pageImage::after{
    content: '';
    background: url("../images/masha_coloring_shape.svg") transparent center;
    width: 190px;
    height: 55px;
    display: block;
    position: absolute;
    top: 85%;
    left: -22px;
    z-index: -1;
}
section#mashaBear .colourWithMasha .coloringPages .pageText{
    width: 50%;
    vertical-align: top;
    display: inline-block;
    text-align: left;
    padding: 20px 0px 0px 15px;
}
section#mashaBear .colourWithMasha .coloringPages .pageText img{
    width:40px;
}
section#mashaBear .colourWithMasha .coloringPages .pageText .downloadBtn{
    width: 30px;
    padding-right: 25px;
}
section#mashaBear .colourWithMasha .disclaimer{
    font-family: Bubbleboddy Neue;
    font-weight: 400;
    font-size: 12px;
    margin-top: 40px;
}
section#mashaBear .colourWithMasha .disclaimer a{
    color: #000000;
}
/********  RESPONSIVE  ********/

@media screen and (max-width: 960px) {
    /********  DISCOVER  *********/
    .billboard::before, .billboard::after {
        display: none;
    }
    .shareFb {
        position: relative;
        top: auto;
        right: auto;
        max-width: 80px;
        margin: 5px auto 0;
    }
    section#mashaBear .pinkBear {
        padding: 30px 5px 0;
    }
    section#mashaBear .pinkBear::before {
        bottom: 16px;
    }
    section#mashaBear .lineBottom::after {
        bottom: 1px;
    }
    section#mashaBear .ingredientsMasha {
        padding: 0 15px;
    }
    section#mashaBear h3 {
        font-size: 22px;
    }


    /************  HAVE FUN WITH MASHA  ************/
    section#mashaBear .haveFunWithMasha h3 .bigPink {
        font-size: 30px;
    }
    section#mashaBear .haveFunWithMasha .quizMasha {
        margin: 0px 0 15px;
    }


    /************  QUALITY INGREDIENTS  ************/
    section#mashaBear .contentQuality {
        position: relative;
        left: auto;
        margin: 10px 0 0;
        top: auto;
    }
    section#mashaBear .bearQuality {
        margin: 0px 0px 10px 0px;
    }


    /**************  PRODUCTS  ****************/
    section#mashaBear .listProducts .block {
        max-width: 50%;
    }


    /**********  SHOP MASHA  *********/
    section#mashaBear .shopMasha > .block {
        width: 100%;
    }
    section#mashaBear .shopMasha h2 {
        font-size: 26px;
    }
    section#mashaBear .gallery {
        width: calc(100% / 1);
    }
    .contentShops > img {
        max-height: 35px;
        margin: 0px auto 20px;
    }
    section#mashaBear .topShops > .block {
        width: auto;
        margin: 11px auto;
        display: table;
    }

    /************  MASHA SOCCER  ************/

    section#mashaBear .mashaAstronaut .pinkContainer .pinkContent h2,section#mashaBear .mashaSoccer .pinkContainer .pinkContent h2{
        font-size: 28px;
        line-height: 30px;
    }
    section#mashaBear .mashaAstronaut .pinkContainer .pinkContent, section#mashaBear .mashaSoccer .pinkContainer .pinkContent{
        max-width: 300px;
    }
    section#mashaBear .mashaSoccer .pinkContainer .pinkContent p{
        width: 350px;
    }
    section#mashaBear .mashaAstronaut .pinkContainer .mashaDecoration.left, section#mashaBear .mashaSoccer .pinkContainer .mashaDecoration.left{
        width: 20%;
        left: -3%!important;
        top: -12%;
    }
    section#mashaBear .mashaSoccer .pinkContainer .mashaDecoration.right{
        width: 15%;
        top: -8%;
        left: auto;
        right: -3%;
    }
    section#mashaBear .mashaAstronaut .pinkContainer .mashaDecoration.right{
        right: -3%;
        top: -27%;
    }
    section#mashaBear .mashaInstructions p{
        line-height: 1.3;
        max-width: 630px;
        width: unset;
    }
    section#mashaBear .mashaInstructions .stepImage{
        width: 90px;
        padding-left: 0px;
        padding-right: 10px;
        padding-top: 5px;
    }
    section#mashaBear .mashaInstructions .instructionSteps{
        max-width: 808px;
        display: flex;
        width: unset;
    }
    section#mashaBear .mashaInstructions .step {
        width: auto;
    }
    section#mashaBear .colourWithMasha .coloringPages .pageText{
        width: 100%;
        text-align: center;
        padding: 0;
    }
    section#mashaBear .colourWithMasha .coloringPages .coloringPage{
        width: 49%;
        text-align: center;
        padding: 15px 10px;
    }
    section#mashaBear .colourWithMasha .coloringPages .coloringPage h5{
        width: auto;
        margin-bottom: 15px;
    }


    /********  QUIZ  *********/

    section#mashaBearQuiz .question{
        font-size: 18px;
        max-width: 280px;
        margin: 10px auto;
    }
    section#mashaBearQuiz .options{
        max-width: 240px;

    }
    section#mashaBearQuiz .options .option{
        padding: 10px;
    }
    ection#mashaBearQuiz .options .right::before{
        width: 14px;
        height: 14px;
        top: 13px;
        left: -25px;
    }
    section#mashaBearQuiz .options .wrong::before{
        width: 20px;
        height: 20px;
        top: 15px;
        left: -30px;
    }
    section#mashaBearQuiz .nextLevelBtn img{
        width: 15px;
    }
    section#mashaBearQuiz .nextLevelBtn .btnArrow::after{
        width: 20px;
        height: 20px;
        margin-left: -10px;
    }
    section#mashaBearQuiz .nextLevelBtn .tabs .tab:nth-child(2) {
        padding-left: 10px;
        font-size: 14px;
    }
    section#mashaBearQuiz .content_fail{
        max-width: 390px;
    }
    section#mashaBearQuiz .content_fail::before{
        height: 340px;
        top: 59px;
        left: -175px;
    }
    section#mashaBearQuiz .content_fail::after{
        width: 140px;
        right: -80px;
    }
    section#mashaBearQuiz .success .successText{
        max-width: 420px;
    }
    section#mashaBearQuiz .success .successImage {
        max-width: 85%;
        margin: 85px auto;
    }
}


@media screen and (max-width: 479px) {
    .desktop {
        display: none;
    }
    .mobile {
        display: block;
    }

    section#mashaBear .pinkBear::before {
        bottom: 16px;
    }
    section#mashaBear .lineBottom::after {
        bottom: 3px;
    }
    section#mashaBear .imageIngredients img {
        max-width: 125px;
    }

    section#mashaBear .ingredientsMasha .block {
        width: 100%;
        min-width: auto;
    }
    section#mashaBear .ingredientsMasha .block {
        width: 80%;
        max-width: 100%;
        margin: 0px auto;
        min-width: auto;
        display: block;
    }

    section#mashaBear .rulesAndTime span,
    section#mashaBearQuiz .rulesAndTime span{
        display: block;
    }
    section#mashaBear .rulesAndTime span:nth-child(2),
    section#mashaBearQuiz .rulesAndTime span:nth-child(2) {
        display: none;
    }
    section#mashaBear .haveFunWithMasha .quizMasha {
        margin: 0px -15px 15px;
    }

    section#mashaBear .listProducts .block {
        max-width: 96%;
    }
    section#mashaBear .listProducts .block:hover {
        transform: scale(1.05);
    }
    section#mashaBear .shopMasha h2 {
        font-size: 23px;
    }
    section#mashaBear .productsMasha .productImage{
        max-width: 220px;
        margin: 0 auto;
    }
    section#mashaBear .mashaSoccer .pinkContainer .pinkContent p {
        max-width: 240px;
        margin: 10px auto;
    }
    section#mashaBear .mashaSoccer .pinkContainer .pinkContent p::before{
        width: 20px;
        height: 19px;
        left: -22px;
    }
    section#mashaBear .mashaSoccer .pinkContainer .mashaDecoration.right{
        top: -17%;
    }
    section#mashaBear .mashaAstronaut .pinkContainer .mashaDecoration.left, section#mashaBear .mashaSoccer .pinkContainer .mashaDecoration.left{
        top: -14%;
    }
    section#mashaBear .mashaAstronaut .pinkContainer .pinkContent h2, section#mashaBear .mashaSoccer .pinkContainer .pinkContent h2{
        font-size: 24px;
        line-height: 26px;
        margin-left: 25px;
    }
    section#mashaBear .mashaAstronaut .pinkContainer .pinkContent, section#mashaBear .mashaSoccer .pinkContainer .pinkContent{
        padding: 20px 0px 10px;
        text-align: center;
    }
    section#mashaBear .mashaPhotography{
        margin: 20px 0px 120px 0px;
    }
    section#mashaBear .mashaAstronaut .pinkContainer .mashaDecoration.right{
        right: -7%;
        top: -35%;
    }
    section#mashaBear .mashaAstronaut .pinkContainer .mashaDecoration.left{
        top: -28%;
    }
    section#mashaBear .mashaAstronaut .pinkContainer .pinkContent p{
        max-width: 250px;
        margin: 10px auto;
    }
    section#mashaBear .mashaInstructions .instructionSteps{
        display: block;
    }
    section#mashaBear .mashaInstructions .stepImage{
        width: 105px;
        display: block;
        margin: 0px auto;
    }
    section#mashaBear .mashaInstructions h4{
        font-size: 28px;
        text-align: center;
    }
    section#mashaBear .colourWithMasha .coloringPages .coloringPage{
        display: block;
        width: 100%;
    }
    section#mashaBear .colourWithMasha .coloringPages .coloringPage h5{
        width:18ch;
        margin: 30px auto;
    }
    section#mashaBear .colourWithMasha .coloringPages .pageText .downloadBtn{
        padding-right: 15px;
    }
    section#mashaBear .mashaInstructions h2,
    section#mashaBear .mashaInstructions p{
        text-align: center;
    }
    section#mashaBear .buyMasha p.shopDisclaimer{
        font-size: 22px;
    }

    /********  QUIZ  *********/

    section#mashaBearQuiz .level .tabs .tab{
        display: block;
        width: 100%;
        height: auto;
    }
    section#mashaBearQuiz .question{
        padding: 20px 0px;
    }
    section#mashaBearQuiz .options {
        max-width: 240px;
        padding-bottom: 20px;
        margin-top: 10px;
    }
    section#mashaBearQuiz .options .right::before{
        width: 15px;
        height: 15px;
        top: 13px;
        left: -25px;
    }
    section#mashaBearQuiz .nextLevelBtn .tabs .tab:nth-child(2){
        display: block;
        margin-top: 70px;
        line-height: 1;
        width: 100%;
    }
    section#mashaBearQuiz .nextLevelBtn img{
        width: 10px;
    }
    section#mashaBearQuiz .nextLevelBtn .btnArrow::after {
        width: 15px;
        height: 15px;
        margin-left: -8px;
        bottom: 5px;
    }
    section#mashaBearQuiz br{
        display: none;
    }
    section#mashaBearQuiz .content_fail::before{
        content: unset;
    }
    section#mashaBearQuiz .content_fail::after{
        width: 100px;
        bottom: -95px;
        right: 5px;
    }
    section#mashaBearQuiz .nextLevelBtn .btnArrow{
        display: none;
    }
    section#mashaBearQuiz .nextLevelBtn{
        text-align: center;
        /*width: 100%;*/
        left: 18%;
        bottom: -2px;
        margin: 0 auto;
    }
    section#mashaBearQuiz .nextLevelBtn .tabs .tab:nth-child(2) p{
        text-align: center;
    }
    section#mashaBearQuiz .success .successText{
        max-width: 285px;
    }
    section#mashaBearQuiz .success .successText h3{
        font-size: 36px;
    }
    section#mashaBearQuiz .success .successText p{
        font-size:16px;
    }
    section#mashaBearQuiz .success .successImage{
        width: 100%;
    }
    section#mashaBearQuiz .success .successImage img{
        margin: 0px auto;
    }
    section#mashaBearQuiz #form510 .submit{
        max-width: 320px;
    }
    section#mashaBearQuiz .needContact h3{
        font-size: 28px;
    }
    .popup.mashaBearPopup .placer .content,
    .popup.mashaBearPopup .placer .content #mashaBearQuiz,
    .popup.mashaBearPopup .placer .content #mashaBearQuiz .quiz,
    .popup.mashaBearPopup .placer .content #mashaBearQuiz .quiz .level {
        height: auto;
    }
}











