@font-face {
    font-family: 'Inter';
    src: url('/catalog/view/css/fonts/Inter-Regular.woff2') format('woff2'),
    url('/catalog/view/css/fonts/Inter-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'MDLZ BITE TYPE';
    src: url('/catalog/view/css/fonts/MDLZBITETYPE-Regular.woff2') format('woff2'),
    url('/catalog/view/css/fonts/MDLZBITETYPE-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@view-transition {
    navigation: auto;
}

body {
    font-size: 18px;
    background: var(--bg-color);
    color: var(--font-color);
    font-family: "Inter";
    height: 100%;
}
#ios_container {
    display: flex;
    flex-direction: column;
    height: 100%;
}
#logo {
    max-height: 70px;
}

header{
    min-height: 100px;
    background: var(--mc);
}
.main_content {
    flex: 1 0 auto;
}
.main_footer {
    flex: 0 0 auto;
}

footer{
    min-height: 150px;
    background: var(--mc);
    padding: 20px 0 15px;
    font-size: 20px;
    line-height: 1.5;
}
h1 {
    color: var(--mc);
    text-transform: uppercase;
    font-size: 64px;
    margin: 68px 0 40px;
    font-family: 'MDLZ BITE TYPE';
}
a {
    color: var(--mc);
}
a:hover{
    text-decoration: none;
    color: var(--mc);
    opacity: 0.8;
}
header a , header a:hover{
    color: var(--link-color);
}
footer a, footer a:hover, footer{
    color: var(--footer_link-color);
}
.np{
    padding: 0;
}
.npl {
    padding-left: 0;
}
.npr {
    padding-right: 0;
}
.pdt0 {
    padding-top:0px !important;
}
.pdt20 {
    padding-top:20px;
}
.pdt50 {
    padding-top:50px;
}
.pdt80 {
    padding-top:80px !important;
}
.flex_aligned{
    display: flex;
    align-items: center;
}
.fs22 {
    font-size: 22px;
}
.flex_center {
    display: flex;
    align-items: center;
}
.btn {
    font-size: 18px;
}

.dropdown {
    display: inline-block;
    position: relative;
    margin-left: 40px;
}

.dropdown-options {
    display: none;
    position: absolute;
    overflow: auto;
    background-color:#eee;
    border-radius:5px;
    box-shadow: 0px 10px 10px 0px rgba(0,0,0,0.4);
    z-index: 10;
    font-size: 16px;
}

.dropdown:hover .dropdown-options {
    display: block;
}

.dropdown-options a {
    display: block;
    color: var(--footer_link-color);
    padding: 5px 10px;
    text-decoration: none;
    cursor: pointer;
}

.dropdown-options a:hover {
    color: #0a0a23;
    background-color: #ddd;
    border-radius:5px;
}
.subfooter {
    background: var(--fc);
    padding: 20px;
    color: var(--footer_link-color);
    font-size: 18px;
}
.subfooter a {
    color: var(--footer_link-color);
}
.slider {
    width: 100%;
    margin: 48px auto 0;
}
.slick-dotted.slick-slider {
    margin-bottom: 0;
}
.slick-slide {
    margin: 0px 20px;
}
.slick-slide a:active, .slick-slide a:hover {
    outline: 0 !important;
}

.slick-slide img {
    width: 100%;
    border-radius: 20px;
}

.slick-prev:before,
.slick-next:before {
    color: black;
}


.slick-slide {
    transition: all ease-in-out .3s;
    opacity: .2;
}

.slick-active {
    opacity: 1;
}

.slick-current {
    opacity: 1;
}

.np{
    padding: 0;
}
.sep20 {
    width: 100%;
    display: block;
    height: 20px;
}
.sep50 {
    width: 100%;
    display: block;
    height: 50px;
}
.pdb20 {
    padding-bottom: 20px;
}
.pdb40 {
    padding-bottom: 40px;
}
#home_campaigns_div, #user_campaigns_div {
    min-height: 200px;
}
.flex{
    display: flex;
    align-items: center;
    justify-content: center;
}
.flex_stretch{
    display: flex;
    align-items: stretch;
    justify-content: center;
}
.flex-justified{
    display: flex;
    align-items: stretch;
    justify-content: space-around;
}
.step_container img{
    max-width: 100px;
}

.step_container .img {
    padding: 20px;
}


.checkcontainer {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-weight: 400;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.checkcontainer input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border:1px solid var(--mc);
    border-radius: 3px;
}
.checkcontainer .checkmark:after {
    left: 9px;
    top: 3px;
    width: 7px;
    height: 12px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.checkcontainer input:checked ~ .checkmark:after {
    display: block;
}
/* On mouse-over, add a grey background color */
.checkcontainer:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.checkcontainer input:checked ~ .checkmark {
    background-color: var(--mc);
}
.checkcontainer input:checked ~ .checkmark.required {
    background-color: #B1B5B8;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.checkcontainer input:checked > .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.container_check .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.pwd_eye {
    position: absolute;
    right: 7px;
    margin-top: -88px;
    cursor: pointer;
    color: var(--mc);
}
.btn-primary {
    background: var(--mc);
    border:1px solid var(--mc);
    color: var(--link-color);
}
.btn-primary:hover {
    background: var(--mc);
    border:1px solid var(--mc);
    opacity: 0.8;
}
.btn-header {
    background: var(--fc);
    border:1px solid var(--fc);
    color: var(--footer_link-color);
    min-width: 170px;
    margin-right: 10px;
}
.btn-header:nth-child(1){
    min-width: 120px;
}
.btn-primary:hover {
    background: var(--fc);
    border:1px solid var(--fc);
    opacity: 0.8;
}
.btn-login {
    background: #fff;
    border:1px solid var(--mc);
    color:var(--mc);
    min-width: 170px;
}
.btn-login:hover{
    background: #e7e7e7;
}
.mm-ocd--open .mm-ocd__content {
    padding-top: 10%;
}
.navbar {
    background: var(--nav_bg);
    font-size: 24px;
    font-family: 'MDLZ BITE TYPE';
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}
.nav>li>a:focus, .nav>li>a:hover {
    background: var(--sub-color);
    opacity: 0.8;
    color: var(--mc);
}

.slick-dots li button:before {
    opacity: 1;
    color: var(--mc);
    width: 25px;
    height: 25px;
    font-size: 18px;
}
.slick-dots li.slick-active button:before {
    opacity: 1;

}
.mc {
    color: var(--mc);
}
.mfc {
    color: var(--mc);
}
.subflex {
    align-items: normal;
    justify-content: space-between;
}
.filter_container {
    background: var(--mc);
    padding: 20px;
    overflow: hidden;
    border-radius: 10px;
}
.campaign_div {
    background: var(--sub-color);
    border-radius: 10px;
    margin-bottom: 40px;
    box-shadow: 0 10px 13px -6px rgba(0, 61, 165, .16), 0 20px 31px 3px rgba(0, 61, 165, .08), 0 8px 38px 7px rgba(0, 61, 165, .06);
}
.campaign_div img{
    width: 100%;
    margin:0px auto 0;
}
.campaign_div .footer {
    background: var(--link-color);
    color: var(--mc);
    padding: 20px;
    border-radius: 0 0 10px 10px;
    line-height: 1.8;
    font-size: 24px;
    text-align: center;
    font-family: 'MDLZ BITE TYPE';
}
#user_campaigns_div .campaign_div .footer{
    background: var(--mc);
    color: var(--link-color);
    padding: 20px;
    border-radius: 0 0 10px 10px;
    line-height: 1.8;
    font-size: 16px;
}
.campaign_div .footer .btn {
    margin-top: 0px;
    border-radius: 30px;
    font-family: 'MDLZ BITE TYPE';
}
#user_campaigns_div .campaign_div .footer .btn {
    margin-top: -3px;
    border-radius: 30px;
    font-family: 'MDLZ BITE TYPE';
}
#user_campaigns_div .btn-header {
    background: var(--fc);
    border: 1px solid var(--fc);
    color: var(--footer_link-color);
    min-width: 112px;
    margin-right: -16px;
}
.campaign_div .footer .btn:hover {
    color: var(--link-color);
    opacity: 0.8;
}

.dropdown-options {
    display: none;
    position: absolute;
    overflow: auto;
    background-color: var(--fc);
    border-radius: 5px;
    box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.4);
    z-index: 10;
    font-size: 16px;
    width: 89%;
    text-align: left;
}
.filter_select {
    color: var(--mc);
    font-weight: 600;
    font-size: 20px;
    height: 54px;
}
.tab-pane .filter_select {
    font-size: 14px;
}
.btn.focus, .btn:focus, .btn:hover {
    color: var(--link-color);
    opacity: 0.8;
}
.btn-header:hover, .btn-header:focus {
    color: var(--footer_link-color);
}

footer h3 {
    text-transform: uppercase;
    margin-top:0;
    margin-bottom: 15px;
    font-family: 'MDLZ BITE TYPE';
    font-size: 32px;
}

.reg_container {
    background: var(--sub-color);
    padding: 30px 80px;
    margin:30px 0;
    border-radius: 10px;
    color: var(--mc);
}
.participate_container{
    padding: 40px;
    background: var(--mc);
    margin:30px 0;
    border-radius: 10px;
    overflow: hidden;
    color: var(--link-color);
}
.participate_container h1{
    margin: 15px 0 50px;
    color: var(--link-color);
}
.participate_container p {
    color: var(--link-color);
}

#upload_container .btn-primary {
    background: var(--mc);
    border: 1px solid var(--mc);
    color: var(--link-color);
}
.participate_container .btn-primary {
    background: var(--bg-color);
    border: 1px solid var(--bg-color);
    color: var(--font-color);
}
.mdlz {
    font-family: 'MDLZ BITE TYPE';
}
.s24 {
    font-size: 24px;
}
footer ul{
    margin: 40px 0 0 0;
}
footer ul li {
    display: inline-block;
    margin-right:20px;
    /*background: #fff;*/
    border:1px solid var(--mc);
    border-radius: 30px;
    width: 54px;
    height: 53px;
}
footer ul li path{
    fill:var(--fc)
}

.subfooter ul {
    margin: 0;
    padding: 0;
}
.subfooter ul li {
    display: inline-block;
    padding-right: 10px;
    border-right: 1px solid var(--footer_link-color);
}
.subfooter ul li:last-child{
    border-right: 0;
}
.mb20 {
    margin-bottom: 20px;
}
.mtm15{
    margin-top: -15px;
}
.mt25{
    margin-top: 25px;
}
.reg_container .form-control, .login_container .form-control {
    height: 60px;
    margin-bottom: 50px;
}
.over_limit {
    height: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    align-self: center;
}
#email_form .form-control {
    width: 50%;
    margin: 0 auto 50px;
    color: var(--mc);
    font-size: 24px;
    font-weight: bold;
    text-align: center;
}
#email_form .warn-tooltip{
    left: unset;
    right: 20%;
}
#code_for_validation {
    text-transform: uppercase;
    text-align: center;
    font-size: 40px;
    padding: 10px;
    height: auto;
    width: 100%;
}
.reg_container #showbirthday , .reg_container #sex{
   /* margin-top: 32px;*/
}
.reg_container .checkcontainer  {
    font-family: "MDLZ BITE TYPE";
    font-size: 20px;
    color: var(--mc);
}
.reg_container p{
    margin-bottom: 10px;
}
.label {
    display: inline-block;
    color: var(--mc);
    font-size: 20px;
    margin-top: 10px;
}
.reg_add_info{
    background: var(--subbg-color);
    padding: 30px 40px;
    font-size: 14px;
    color: #5A5F69;
    border-radius: 10px;
    line-height: 1.5;
}
.action_btn {
    padding: 14px;
    min-width: 170px;
}

.login_container {
    background: var(--sub-color);
    padding: 50px 100px;
    margin: 40px 0;
    border-radius: 10px;
}
.login_container #password{
    margin-bottom: 20px !important;
}
.button.login{
    font-size: 22px;
    padding: 16px 22px;
    border-radius: 130px;
    width:295px;
}
.btn-secondary {
    background: var(--sub-color);
}
#reglogin {
    margin-top: -10px;
    border-radius: 30px;
    padding: 12px 20px;
}
.img_div{
    width: 100%;
    height: 320px;
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    border-radius: 10px 10px 0 0;
}

#user_campaigns_div .img_div{
    width: 100%;
    height: 230px;
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    border-radius: 10px 10px 0 0;
}

#lang_form {
    display: inline-block;
}
.breadcrumb {
    background: transparent;
    margin: 15px 0;
    display: none;
}
.breadcrumb>li+li:before {
    display: none;
}
.breadcrumb path{
    fill: var(--link-color);
}

.subbg {
    background: var(--sub-color);
    border-radius: 10px;
    padding: 24px 24px 24px;
    align-items: normal;
}
.cash_container {
    background: var(--bg-color);
    margin-right: 15px;
    border-radius: 10px;
    border:1px solid var(--subbg-color);
    padding: 30px 10px 20px;
}
.cash_container p {
    font-weight: 600;
    font-size: 36px;
    color: var(--mc);
}
.step_container {
    background: var(--bg-color);
    margin-right: 3px;
    border-radius: 10px;
    justify-content: flex-start;
}
.step_container p{
    margin-bottom: 0;
}
.step_container h2 {
    margin: 40px 0;
}
.white_bg p:not(:last-child){
    margin-bottom: 0;
}
.step_container:last-child{
    margin-right: 0;
}
.step_container path{
    fill:var(--font-color);
}
.step_container .text {
    font-size: 20px;
}
.counter_div {
    background: var(--slider_bg_color);
    color: var(--font-color);
    padding: 20px;
    border-radius: 10px;
    overflow: hidden;
}
.counter_div p, .prize_counter p {
    margin-bottom: 10px;
    font-size: 25px;
}
.prize_counter, .days_counter {
    margin: 0;
    padding: 0;
}
.prize_counter li {
    display: inline-block;
    background: var(--sub-color);
    color: var(--mc);
    font-size: 32px;
    width: 64px;
    height: 64px;
    text-align: center;
    font-weight: 600;
    line-height: 2;
    margin-right: 5px;
    border-radius: 5px;
}
.days_counter li {
    display: inline-block;
    background: var(--sub-color);
    color: var(--mc);
    font-size: 24px;
    width: 88px;
    height: 64px;
    text-align: center;
    font-weight: 600;
    line-height: 1;
    padding-top: 10px;
    margin-right: 5px;
    border-radius: 5px;
}
.days_counter small {
    color: var(--fc);
    font-size: 16px;
    display: block;
}
.mr20 {
    margin-right: 20px;
}
h2 {
    font-size: 40px;
    margin: 40px 0 20px;
    color: var(--header_title_color);
    font-family: "MDLZ BITE TYPE";
}
.substep_container {
    background: transparent;
    padding: 20px;
    border-radius: 10px;
    margin-right: 15px;
    width: 22%;
    color: var(--font-color);
    border: 1px solid var(--mc);;
}
.substep_container:last-child {
    margin-right: 0;
}
.substep_container img{
    width: 83px;
    height: 82px;
}
.divider_container .substep_container{
    border:1px solid var(--link-color);
}
    /*.substep_container img:hover{
        transform: scale(1.2);
        box-shadow: 0px 2px 12px;
        border-radius: 50px;
    }*/
.substep_container .text {
    font-size: 14px;
    padding-left: 15px;
    color: var(--mc);
    width: unset;
}
.substep_container .btn-secondary {
    background:transparent;
    font-size: 20px;
    color: var(--font-color);
    font-weight: 600;
    padding: 3px 5px;
    margin-bottom: 10px;
}
.divider_bg .substep_container .text, .divider_bg .steps_participate p, .divider_bg .steps_participate a{
    color: var(--link-color);
}
#mobile_a , #closeMobileNav{
    display: none;
}
#upload_container {
    background: var(--bg-color);
    padding: 20px;
    border-radius: 10px;
}
.bordered {
    border: 1px solid var(--subbg-color);
    border-radius: 10px;
    padding: 13px 10px 12px;
}
.bordered span{
    font-size: 13px;
}

#upload_bordered {
    border: 1px dashed var(--mc);
    padding: 50px;
    border-radius: 10px;
    background: var(--sub-color);
}
#upload_bordered h3{
    font-size: 32px;
    color:var(--mc);
    margin: 115px 0;
    font-weight: 600;
    text-align: center;
}
#upload_right h3{
    font-size: 32px;
    color:var(--font-color);
    margin: 0 0 10px;
    font-weight: 600;
    text-align: left;
}
.participate_container #upload_right h3{
    color: var(--link-color);
}
#upload_right p{
    font-size: 22px;
    font-weight: 500;
    color: var(--font-color);
    margin-bottom: 40px;
    text-align: left;
}
    .participate_container #upload_right p{
        color: var(--link-color);
    }
.round_btn {
    border-radius: 120px;
    margin: 0 auto;
    width: 90%;
}
#upload_bordered h4{
    font-size: 16px;
    color: var(--mc);
    font-weight: 600;
    margin: 35px 0 0;
    text-align: center;
}
.rule_row {
    padding: 20px 10px;
    background: #fff;
    font-size: 17px;
    color: var(--mc);
    border-radius: 10px;
    margin-bottom: 16px;
}
.rule_row span:nth-child(1) {
    padding: 4px 14px;
    background: var(--mc);
    color: var(--link-color);
    font-size: 26px;
    font-family: "MDLZ BITE TYPE";
    border-radius: 40px;
    line-height: 1;
    margin-right: 7px;
}
.rule_row span:nth-child(2) {
    display: inline-block;
    width: calc(100% - 50px);
}
.h360 {
    min-height: 360px;
}
.mt0 {
    margin-top: 0;
}
.step_btn, #save_adress_btn {
    padding: 20px;
    border-radius: 40px;
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
}
.receipt_container {
    background: #fff;
    height: 300px;
    border-radius: 10px;
    text-align: center;
    width: 216px;
    margin-left: 10px;
    margin-top: 35px;
}
#examples .receipt_container {
    margin-top: 0;
}
.receipt_ico{
    position: absolute;
    bottom: -25px;
    right: -2px;
    z-index: 9;
}
.receipt_img {
    max-height: 300px;
}
#examples .receipt_img {
    max-height: unset;
    height: 300px;
    margin:  auto;
}
#uploaded_receipts{

}
.pdt50 {
    padding-top:50px;
}
.pdt5 {
    padding-top:5px;
}
.finish_btn {
    padding: 20px 55px;
}
 #save_adress_btn {
    padding: 9px 55px;
}
#save_adress_btn {
    margin-bottom: 30px;
}
#sidenav {
    text-align: left;
    padding: 20px 0 20px 20px;
    border-radius: 10px;
    margin:15px 20px;
}
#sidenav li span {
    width: 17px !important;
}
.nav_bg {
    border-radius: 10px;
    background: var(--sub-color);
}
.mb45 {
    margin-bottom: 45px;
}
#sidenav li {
    display: inline-block;
    width: 100%;
    font-size: 18px;
    font-weight: bold;

    color: var(--mc);
}
.npt {
    padding-top: 0;
}
.last{
    text-align: center;
}
.mr15 {
    margin-right: 15px;
}
.btn:active:focus, .btn:focus {
    outline: 0;
    outline-offset: 0;
}
.info_mark_points {
    position: absolute;
    right: 40px;
    margin-top: -12px;
    font-size: 18px;
    cursor:POINTER;
}
#sidenav li a {
    display: inline-block;
    padding: 5px 5px 5px 0;
    font-size: 18px;
    font-weight: bold;
}
#sidenav h3{
    margin: 40px 0 20px;
}
#sidenav ul {
    margin: 13px 0 22px 13px;
    border-left: 1px solid var(--subbg-color);
    padding-left: 10px;
}
#sidenav li ul li a {
    font-size: 16px;
    font-weight: 400;
    color: var(--fc);
    padding: 10px;
}
#users_data {
    text-align: center;
    background: var(--sub-color);
    padding: 20px;
    border-radius: 10px;
    margin:30px 20px 0;
    display: block;
}
#users_data .fa-edit {
    position: absolute;
    top:20px;
}
#users_data p {
    margin: 20px 0;
}
.mb0 {
    margin-bottom: 0 !important;
}
#users_data h3 {
    margin: 5px 0;
    color: var(--mc);
    font-weight: 600;
    font-size: 28px;
}
#users_data h3 small{
    color: var(--mc);
}
#users_data .white_bg{
    width: 150px;
    height: 150px;
    margin: 0 auto;
    border: 2px solid #fff;
    padding: 47px 20px;
    border-radius: 112px;
    cursor: pointer;
    position: relative;
}
header .white_bg, .mm-ocd__content .white_bg{
    width: 84px;
    height: 84px;
    margin: -12px auto 0;
    border: 2px solid #fff;
    padding: 32px 20px;
    border-radius: 112px;
    cursor: pointer;
    position: relative;
    display: inline-block;

}
#user_block {
    display: inline-block;
}
#users_data .existing, header .existing, .mm-ocd__content .existing{
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}
#users_data .existing .fa-edit{
    top:0;
    right: -55px;
    color: var(--mc);
}
#users_data .existing img{
    width: 100px;
    height: 100px;
}
.brand_container{
    border-radius: 50%;
    padding: 50px;
    height: 214px;
    width: 214px;
    background-color: #fff;
    box-shadow: 0 10px 13px -6px rgba(0, 61, 165, .15), 0 20px 31px 3px rgba(0, 61, 165, .05), 0 8px 38px 7px rgba(0, 61, 165, .03);
    display: flex;
    justify-content: center;
    align-items: center;
}
.divider_bg h2 {
    color: var(--link-color);
}
.brand_container .img{
    max-width: 100%;
    height: auto;
}
.fs20 {
    font-size: 20px;
}
.fs16 {
    font-size: 16px;
}
.h100{
    height: 100%;
}
.last {
    margin-top: 115px;
}
.btn-rounded {
    border-radius: 169px;
    padding: 15px 72px !important;
}
#home_campaigns_div .col-lg-6:nth-child(odd), #user_campaigns_div .col-lg-6:nth-child(odd) {
    padding-left: 0;
}
#home_campaigns_div .col-lg-6:nth-child(even),#user_campaigns_div .col-lg-6:nth-child(even) {
    padding-right: 0;
}
.top_buttons {
    display: flex;
    align-self: end;
    justify-content: end;
    color:var(--link-color);
}
.pdl15{
    padding-left: 15px;
}
.pdr15{
    padding-right: 15px;
}
.cashback_campaign_item {
    border: 1px solid var(--subbg-color);
    padding: 0;
    border-radius: 10px;
    text-align: center;
}
.slick-prev:before, .slick-next:before {
    color: var(--link-color) !important;
}
.slick-prev, .slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 28px !important;
    height: 85px !important;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: var(--mc) !important;
    border-radius: 5px;
    /* color: #fff; */
}
.slick-prev {
    left: 25px !important;
    z-index: 99;
}
.slick-next {
    right: 25px !important;
}
.popup_img {
   max-width: 100%;
}
#available_prizes {
     background: var(--slider_bg_color);
     padding: 50px;
     border-radius: 10px;
 }
#available_goods {
     background: var(--slider_bg_color);
     padding: 50px;
     border-radius: 10px;
 }
.available_prizes_item {
    /*border: 1px solid var(--subbg-color);*/
    padding: 0;
    border-radius: 10px;
    text-align: center;
    background-color:var(--subbg-color);

    box-shadow:inset 0px -2px 12px 0px rgba(0, 0, 0, 0.5);
}
.available_goods_item {
    border: 1px solid var(--subbg-color);
    padding: 0;
    border-radius: 10px;
    text-align: center;
    background-color:var(--subbg-color);
}
.cashback_campaign_item .img {
    background-size: 90% auto;
    background-repeat: no-repeat;
    background-position: center center;
    border-radius: 10px;
    width: 100%;
    height: 150px;
}
.available_prizes_item .img {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    border-radius: 10px;
    width: 100%;
    height: 150px;
    margin-top: 10px;
}
.available_goods_item .img {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    border-radius: 10px;
    width: 100%;
    height: 150px;
}
.cashback_campaign_item .img img {
    max-height: 50px;
    width: auto;
    margin: 0 auto;
}
.available_prizes_item .img img {
    max-height: 50px;
    width: auto;
    margin: 0 auto;
}
.available_goods_item .img img {
    max-height: 50px;
    width: auto;
    margin: 0 auto;
}
.cashback_campaign_item .descr{
    font-size: 16px;
    text-align: center;
    margin-bottom: 10px;
    height: 65px;
    overflow: hidden;
}
.available_prizes_item .descr {
    font-size: 20px;
    text-align: center;
    margin-bottom: 0;
    height: 65px;
    overflow: hidden;
    color: var(--mc);
    border-radius: 0 0 10px 10px;
}
.available_goods_item .descr {
    font-size: 16px;
    text-align: center;
    margin-bottom: 0;
    height: 65px;
    overflow: hidden;
    color: var(--mc);
    border-radius: 0 0 10px 10px;
}
.btn-success {
    color: var(--link-color);
    background-color: var(--mc);
    border-color: var(--mc);
}
#demo .dates {
    color: var(--mc);
    font-size: 16px;
    text-align: center;
    margin: 10px 0px 15px !important;
    border-top: 1px solid var(--subbg-color);
    padding: 18px 0 1px;
}
#demo p{
    margin-bottom: 5px;
    text-align: center;
    color: #000;
    font-size: 20px;
}
.campaigns{
    padding: 25px 30px;
}
.campaigns h3 {
    color: var(--mc);
    font-family: "MDLZ BITE TYPE";
    font-size: 28px;
}
.campaign_img {
    max-height: 250px;
}
.mb20 {
    margin-bottom: 20px;
}
.brand_img {
    max-width: 300px;
}
.brand_img {
    max-width: 300px;
    box-shadow: 1px -6px 14px rgba(10, 10, 10, 0.6);
    border-radius: 15px;
}

.filter_select, select.form-control {
    appearance: none;
    background: url(/image/select.svg) no-repeat right white;
}

.loader_container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    /*background-color: rgba(122,122,122,0.7);*/
    position: absolute;
    z-index: 9999999999;
    text-align: center;
    width: 100%;
    top:0;
    background-color: var(--bg-color);
    opacity: 0.8;
    color: var(--font-color);
}
.loader_container .img-rotation {
    fill:var(--font-color) !important;
}
#tic_tac_toe {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: rgba(255,255,255, 0.95);
    position: absolute;
    z-index: 9999999999;
    text-align: center;
    width: 100%;
    top:0;
}

.loader_img {
    max-width: 15rem;
    width: 100%;
    height: auto;
    stroke-linecap: round;
    margin-top:0;
}
circle {
    fill: none;
    stroke-width: 3.5;
    animation-name: preloader;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    transform-origin: 170px 170px;
    will-change: transform;
}
circle:nth-of-type(1) {
    stroke-dasharray: 550px;
}
circle:nth-of-type(2) {
    stroke-dasharray: 500px;
}
circle:nth-of-type(3) {
    stroke-dasharray: 450px;
}
circle:nth-of-type(4) {
    stroke-dasharray: 300px;
}

@keyframes preloader {
    50% {
        transform: rotate(360deg);
    }
}

#cc-main .cm__title+.cm__desc {
    margin-top: 1.1em;
    text-align: justify !important;
}
.users_table thead td{
    border-bottom: 2px solid var(--subbg-color);
    font-size: 16px;
    color: var(--mc);
    font-weight: 600;
}
.users_table tbody td{
    background: var(--bg-color);
    padding: 30px 15px !important;
}
.banner_campaign {
    width: 100%;
}
.campaign_tabs {
    margin: 30px auto;
    width: 350px;
    border-bottom: 0;
}
.campaign_tabs li{
    border: 1px solid #ccc;
    margin-right: 10px;
    border-radius: 22px;
    width: 165px;
    text-align: center;
}
.campaign_tabs li.active{
    background: var(--mc);
}
.campaign_tabs li.active a{
    color: var(--link-color);
    background: transparent;
    cursor: pointer;
    border: 1px solid transparent;
}
.campaign_tabs li a:hover,.campaign_tabs li a:focus{
    background: transparent;
    opacity: 0.8;
    border: 1px solid transparent;
}
.campaign_tabs li.active a:hover,.campaign_tabs li.active a:focus{
    color: var(--link-color);
    background: transparent;
    cursor: pointer;
    border: 1px solid transparent;
    opacity: 0.8;
}
#uploaded_receipt_div {
    text-align: center;
}
#uploaded_receipt_div img{
    height: 300px;
    margin: 0 auto 10px;
}
.remove_receipt_ico{
    width: unset;
    height: unset !important;
    position: absolute;
    right: 60px;
    margin-top: -30px !important;
    cursor: pointer;
    color: #c41919;
}
#campaign_banner_div {
    width: 100%;
    height: 500px;
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    border-radius: 10px;
}
#campaign_banner_div2 {
    width: 100%;
    height: 500px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 10px;
}
.headline {
    font-size: 60px;
    text-align: center;
    padding: 60px 0 30px;
    text-transform: uppercase;
    font-weight: bold;
    text-shadow: 5px 2px 2px rgba(255, 255, 255, 0.3);
}
.paginationjs .paginationjs-pages li.active>a {
    height: 30px;
    line-height: 30px;
    background: var(--mc);
    color: #fff;
    cursor: default;
    border-radius: 15px;
}
.paginationjs .paginationjs-pages li {
    float: left;
    border: 0;
    border-right: none;
    list-style: none;
    background: transparent;
}
.paginationjs .paginationjs-pages li>a {
    background: transparent;
}
.paginationjs .paginationjs-pages li>a:hover {
    background: var(--subbg-color);
}
.paginationjs .paginationjs-pages li:last-child {
    border: 0;
}
.paginationjs .paginationjs-pages li:first-child, .paginationjs .paginationjs-pages li:first-child>a , .paginationjs .paginationjs-pages li:last-child>a{
    border-radius: 3px 0 0 3px;
    color: var(--mc);
    opacity: 1;
    font-size: 20px;
    font-weight: bold;
}
.paginationjs {
    justify-content: center;
    margin-top: 40px;
}
.dates{
    padding: 10px;
}
.filter_campaign {
    width: 100%;
    color: var(--fc);
    border:1px solid var(--subbg-color);
    border-radius: 40px;
    font-size: 20px;
    padding-left: 30px;
}
.filter_campaign::placeholder{
    color: var(--subbg-color);
}
#submit_filter_campaign {
    position: absolute;
    right: 40px;
    margin-top: 20px;
    cursor:POINTER;
}
.retailer_hover{
    position: absolute;
    width: 89%;
    height:150px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    text-align: center;
    border-radius: 10px;
    vertical-align: middle;
    padding-top: 10%;
    font-size: 20px;
    line-height: 1.5;
}
.tooltipp {
    position: absolute;
    display: inline-block;
}

/* Tooltip text */
.tooltipp .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: var(--fc);
    color: var(--footer_link-color);
    text-align: center;
    padding: 10px;
    border-radius: 6px;
    font-size: 14px;
    /* Position the tooltip text - see examples below! */
    position: absolute;
    z-index: 1;
}
.shadow {
    box-shadow: 0 8px 32px -4px rgba(0,61,165,.2);

}
.shadow_inset{
    box-shadow: inset 0px -2px 12px 0px rgba(0, 0, 0, 0.5);
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltipp:hover .tooltiptext {
    visibility: visible;
}
.chance_div {
    background: var(--sub-color);
    border-radius: 10px;
    padding: 20px 20px 0 20px;
    cursor: POINTER;
}
.chance_div h2 {
    margin: 30px 10px 40px 10px;
}
.chance_foot{
    margin: 0 -20px;
    background: var(--mc);
    border-radius: 0 0 10px 10px;
    padding: 15px;
    color: var(--link-color);
}
.chance_div.disabled {
    opacity: 0.5;
    cursor: unset;
}
.retailer_subbg {
    background: var(--subbg-color);
    margin-top: -100px;
    padding-top: 120px;
    padding-bottom: 120px;
    border-radius: 0 10px 10px 0;
    box-shadow: 7px 4px 16px rgba(0, 0, 0, 0.3);
}
.retailer_subbg .item_row span{
    display: inline-block;
}
.retailer_subbg .item_row{
    padding: 10px 0;
}
.retailer_subbg img{
    max-width: 50%;
    margin: 0 auto;
}
.ng-fa-icon {
    display: inline-block;
    width: 14px;
    margin-right: 10px;
}
.points_tooltiptext {
    position: absolute;
    width: 250px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    z-index: 999;
    margin-top: -26px;
    margin-left: -120px;
    color: var(--mc);
}
.pd40 {
    padding: 0 40px;
}
.nav>li.msm {
    display: none !important;
}
.text-justified {
    text-align: justify;
}
#swal2-content h2 {
    margin: 10px 0;
}
.animation-bg{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: -40px;
}
.img-rotation:hover{
    animation-duration: 5s;
}
.img-rotation {
    width: 200px;
    -webkit-animation-name: rotation;
    -webkit-animation-duration: 15s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: rotation;
    -moz-animation-duration: 15s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -o-animation-name: rotation;
    -o-animation-duration: 15s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
    animation-name: rotation;
    animation-duration: 15s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@-webkit-keyframes rotation {
    0% {-webkit-transform:rotate(0deg);
        -moz-transform:rotate(0deg);
        -o-transform:rotate(0deg);
        transform:rotate(0deg);}
    100% {-webkit-transform:rotate(360deg);
        -moz-transform:rotate(360deg);
        -o-transform:rotate(360deg);
        transform:rotate(360deg);}
}
@-moz-keyframes rotation {
    0% {-webkit-transform:rotate(0deg);
        -moz-transform:rotate(0deg);
        -o-transform:rotate(0deg);
        transform:rotate(0deg);}
    100% {-webkit-transform:rotate(360deg);
        -moz-transform:rotate(360deg);
        -o-transform:rotate(360deg);
        transform:rotate(360deg);}
}
@-o-keyframes rotation {
    0% {-webkit-transform:rotate(0deg);
        -moz-transform:rotate(0deg);
        -o-transform:rotate(0deg);
        transform:rotate(0deg);}
    100% {-webkit-transform:rotate(360deg);
        -moz-transform:rotate(360deg);
        -o-transform:rotate(360deg);
        transform:rotate(360deg);}
}
@keyframes rotation {
    0% {-webkit-transform:rotate(0deg);
        -moz-transform:rotate(0deg);
        -o-transform:rotate(0deg);
        transform:rotate(0deg);}
    100% {-webkit-transform:rotate(360deg);
        -moz-transform:rotate(720deg);
        -o-transform:rotate(360deg);
        transform:rotate(360deg);}
}

.cookies_div {
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.square {
    position: relative;

    width: 300px;
    height: 300px;

    color: #fff;
    font-size: 1.5em;
    text-align: center;

    animation: 3s linear infinite rotate;
}

.pivont-point {
    position: absolute;

    color: #363636;
    font-size: 30px;

    transform: translate(-50%, -50%);

    &.center {
        top: 50%;
        left: 50%;
    }
}

.origin {
    &-center {
        transform-origin: center;
    }
}

@keyframes rotate {
    from {
        transform: rotateX(0deg);
    }

    to {
        transform: rotateX(360deg);
    }
}

.cookies_div {
    margin-top: -200px;
    position: absolute;
    width: 100%;
}
.btn-lg {
    display: inline-block;
}
.block-lg{
    display: block;
}
.btn-sm {
    display: none !important;
}
.h-sm {
    display: block;
}
.slick-dots {
    position: absolute;
    bottom: -25px;
    display: block;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}
#available_prizes .slick-dots{
    width: 90%;
    bottom: 0;
}

.mobile_logo {
    display: none !important;
}
.mobile-ocd__backdrop {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 3;
    width: calc(100% - 80%);
    width: calc(100% - var(--mm-ocd-width));
    min-width: calc(100% - 440px);
    min-width: calc(100% - var(--mm-ocd-max-width));
    max-width: calc(100% - 200px);
    max-width: calc(100% - var(--mm-ocd-min-width));
    background: rgba(3, 2, 1, 0);
}
.mobile-ocd__content {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 2;
    width: 80%;
    width: var(--mm-ocd-width);
    min-width: 200px;
    min-width: var(--mm-ocd-min-width);
    max-width: 440px;
    max-width: var(--mm-ocd-max-width);
    background: #fff;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: .3s;
    -o-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease;
}
.mobile-ocd--left .mobile-ocd__content {
    left: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
}
.mobile-ocd--open .mobile-ocd__content {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    z-index: 5;
}
.mobile-spn.mobile-spn--light {
    color: var(--link-color);
    background: var(--mc);
}
.mobile-ocd__content {
    background: var(--mc);
    color: var(--link-color);
}
.filter_div_container a {
    color: var(--link-color);
}
.mobile_filter{
    display: flex;
    align-items: center;
    height: 100vh;
}
.mobile_filter .nav {
    margin: 0;
    font-size: 18px;
}
.mobile_filter a{
    display: flex;
    cursor: pointer;
    padding: 5px 10px;
}
.mobile_filter a:hover, .mobile_filter a.active{
    box-shadow: 0px 10px 13px -6px rgba(0, 61, 165, .36), 0 20px 31px 3px rgba(0, 61, 165, .18), 0 8px 38px 7px rgba(0, 61, 165, .16);
    background: var(--fc);
    border-radius: 8px;
}
.filter_div_header{
    font-size: 22px;
    border-bottom: 1px solid var(--link-color);
    padding: 10px;
    margin-bottom: 15px;
}
.mobile_filter li{
    padding-bottom: 20px;
}
.filter_div_container {
    display: none;
}
.mobile_filter .row{
    width: 80%;
}
.mobile_filter a:before {
    content: "\f560";
    font-family: 'Font Awesome 5 Free';
    margin-right: 15px;
}
#show_filter {
    width: 260px;
    padding: 20px !important;
    height: unset;
    background: var(--mc);
    color: var(--link-color);
}
.subbg_container {
    background: var(--subbg-color);
    color:var(--link-color);
}
.subbg_container h1{
    color: var(--bg-color);
}
.text-flex {
    display: flex;
    align-items: center;
}
.block h1{
    color: var(--font-color);
    margin-top: 0;
}
.run_text_container{
    position: relative;margin-right: 1%;
    left: unset;padding-right: 0px;    display: flex;    align-items: flex-end;    justify-content: center;    flex-direction: column;
    padding-top: 90px;
    z-index: 10;
}
.et_pb_posts_nav a,
.et_pb_with_background {
    position: relative;
    background-size: cover;
    background-position: 50%;
    background-repeat: no-repeat;
}
.mejs-offscreen {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal;
}
.et_pb_section {
    position: relative;
    background-color: #fff;
    background-position: 50%;
    background-size: 100%;
    background-size: cover;
}
#closeGame {
    position: absolute;
    right: 0;
    cursor: pointer;
}
#game_frame{
    width:100%;
    height:100%;
    position:absolute;
    top:0;
    left:-120%;
    transition-property: left;
    transition-duration: 3s;
    z-index: 99;
}
.txt {
    position: relative;
    font-family: 'MDLZ BITE TYPE';
    text-transform: uppercase;
    font-size: 55px;
    letter-spacing: 4px;
    overflow: hidden;
    background: linear-gradient(90deg, #000, #fff, #000);
    background-repeat: no-repeat;
    background-size: 80%;
    animation: animate 3s linear infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(255, 255, 255, 0);
    font-weight: bold;
    margin-bottom: 0 !important;
}
@keyframes animate {
    0% {
        background-position: -500%;
    }
    100% {
        background-position: 500%;
    }
}
.prizes_list_ul {
    text-align: left;
    font-weight: bold;
    margin-bottom: 40px;
    list-style-position: inside;
}
.prizes_list_ul li {
    display: list-item;
}
#code_for_validation::placeholder{
    color: #e7e7e7;
}
.header-navi {
    display: flex;
    margin: 1rem auto;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    background: transparent;
}
.header-navi a {
    display: flex;
    margin: 1rem auto;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
}
.oreo-logo {
    margin-top: 9px;
    max-width: 140px;
}
.header-navi .logo-spacer {
    margin: 1rem;
}
.minecraft-logo {
    max-width: 140px;
}
.keyvisual {
    background-image: url(/image/portal.png);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    margin-left: auto;
    margin-right: auto;
    max-width: unset;
    max-width: 1310px;
    width: 100%;
}
.keyvisual .keyvisual-wrapper {
    margin: 0 auto;
    max-width: 1920px;
    padding: 10px;
    position: relative;
}
.keyvisual .keyvisual-wrapper .keyvisual-content {
    margin: 0 auto;
    max-width: 960px;
}
.keyvisual .keyvisual-wrapper .keyvisual-content .characters {
    display: block;
    margin: 0 auto -23%;
    max-width: 100%;
    position: relative;
    width: 700px;
}
.keyvisual .keyvisual-wrapper .keyvisual-content .cookies {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    position: relative;
    width: 960px;
}
.keyvisual .keyvisual-wrapper .keyvisual-content h1 {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: -6%;
    max-width: 70%;
    position: relative;
    text-align: center;
    z-index: 2;
}
.keyvisual .keyvisual-wrapper .keyvisual-content .packshot {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: -2%;
    max-width: 80%;
    position: relative;
    z-index: 2;
}
.keyvisual .keyvisual-wrapper .keyvisual-content h2 {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: -6%;
    max-width: 40%;
    position: relative;
    text-align: center;
    z-index: 2;
}
.keyvisual .keyvisual-wrapper .keyvisual-content h2 img {
    max-width: 100%;
}
.keyvisual .keyvisual-wrapper .keyvisual-content h1 img {
    max-width: 100%;
}
.d-none {
    display: none !important;
}
.steps_participate p{
    font-size: 19px;
    font-weight: 400;
    color: var(--font-color);
}
.bootstrap-datetimepicker-widget td span {
    color: var(--mc);
}
.bootstrap-datetimepicker-widget table {
    width: 100%;
    margin: 0;
    color: var(--mc);
}

.step_container_owner {
    align-items: normal;
    padding: 2px;
}
.step_container_owner .text {
    font-weight: 400;
}
.step_container_owner .step_container {
    border:2px solid var(--link-color)
}
.subbg_container h3{
    color: var(--mc);
}
.sm_login{
    position: absolute;
    right: 80px;
    bottom: 0;
    transform: translateY(-3px);
    top:24px;
    z-index: 20;
    height: 30px;
}
.sm_login i{
    color: var(--link-color);
    font-size: 23px;
}
.sm_login .dropdown-options{
    width: 150px;
    transform: translateX(-50%);
    z-index: 9999999;
    background: var(--fc);
}
.sm_login .dropdown-options a {
    display: block;
    color: var(--footer_link-color);
    padding: 5px 10px;
    text-decoration: none;
    cursor: pointer;
    width: 100%;
    text-align: center;
    font-size: 16px;
    padding: 10px 0 ;
}

.sm_login .white_bg {
    width: 28px;
    height: 28px;
    background-size: contain;
    border-radius: 30px;
    border: 2px solid var(--link-color);
    margin-top: -2px;
    padding:2px 5px !important;
    font-size: 16px;
}
.sm_login .white_bg .fa {
    font-size: 14px;
}
.sm_login .white_bg.existing {
    padding: 0 !important;
}
#closeMobileNav{
    position: absolute;
    color: #fff;
    top: 0;
    right: 17px;
    z-index: 100;
    cursor: pointer;
}
#bottom_button{
    position: fixed;
    width: 100%;
    bottom: 0;
    z-index: 999;
    padding: 20px;
    box-shadow: inset 0px 4px 6px rgba(255, 255, 255, 0.8);
    border-radius: 0;
}
.substep_container  a{
    font-weight: 400;
    color: var(--font-color);
}
.steps_participate .substep_container {
    font-size: 24px;
}
#resend_activation {
    cursor: pointer;
    text-decoration: underline;
}
.login_error{
    background: var(--subbg-color);
    color: var(--font-color);
    padding: 20px;
    border-radius: 10px;
}
.auth_fieldset {
    border-width:1px 0 0 0;
    border-color:  #c0c0c0;

    margin: 0 0 40px;
    padding: 0;
}
.auth_fieldset legend{
    width: unset;
    margin: 0 auto;
    padding: 0 10px;
}
.social_link {
    display: inline-block;
    height: 69px;
    border: 1px solid var(--mc);
    padding: 15px;
    width: 70px;
    text-align: center;
    border-radius: 50px;
    margin-right: 15px;
}
.social_link svg{
    height: 100%;
}
.google:hover path{
    fill: #ff0000;
}
.fb:hover path{
    fill: #1892E8;
}
#game_div {
    padding: 0;
}
#game_div .modal-body{
    padding: 0;
}
#whyCollect {
    cursor: pointer;
}
.sep {
    border-top-left-radius: 167px 67px;
    border-bottom-right-radius: 0;
    border-color: var(--mc);
    border-width: 5px 0 0 0;
    border-style: solid;
    width: 98%;
    margin-left: 2%;
    height: 50px;
    margin-top: 50px;
}
.divider_container{
    background-color: var(--mc) !important;
    width: 100%;
    margin-bottom: 50px;
    position: relative;
}
.divider_container1{
    background-color: var(--mc) !important;
    width: 100%;
    margin-bottom: 50px;
    position: relative;
    padding: 40px;
}
.divider{
    display: block;
    background-repeat-y: no-repeat;
    height: 100%;
    pointer-events: none;
    width: 100%;
    left: 0;
    right: 0;
}

.divider_top{
    background-image: url(/test/1.svg);
    background-size: 100% 50px;
    top: 0;
    height: 50px;
    z-index: 3;
    transform: scale(-1, -1);
    position: absolute;
}
.divider_bottom{
    background-image: url(/test/1.svg);
    background-size: 100% 50px;
    bottom: 0;
    height: 50px;
    z-index: 1;
    transform: scale(-1, 1);
    position: absolute;
}
.divider_bg {
    padding-top: 20px !important;
    padding-bottom: 20px !important;

}
.divider_container .button.login {
    background: var(--bg-color);
}
.steps_participate {
    margin-bottom: 50px;
}
.bg_pattern{
    background-image: url(/test/2.svg);
    z-index: 1;
    background-color: transparent;
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    background-position: 0 0;
    background-repeat: repeat;
}
.man {
    background: url(/image/4545.png) no-repeat;
    height: 718px;
    width: 60%;
    background-position: left bottom;
    background-size: auto 100%;
}
/*#man {
    position: absolute;
    height: 94%;
    margin-left: 0;
    z-index: 100;
    transform: rotate(-1deg);
    margin-top: 39px;
}*/
.play {
    width: 40%;
    overflow: hidden;
    clip-path: polygon(1% 0, 100% 0, 100% 100%, 0 100%, 18% .7%);
    background: #00AD00;
}
.play video{
    /*margin-left: -25%;*/
}
#man {
    position: absolute;
    height: 100%;
    margin-left: -10%;
    z-index: 100;
}
#playstation {
    position: absolute;
    top: 15%;
    transform: rotate(-45deg);
    width: 280px;
    left: 1%;
}
#playstation1 {
    position: absolute;
    bottom: 5%;
    transform: rotate(45deg);
    left: 25%;
    width: 200px;
}
#bg{
    position: absolute;
    z-index: 0;
    height: 100%;
    width: 100%;
    transform: translateX(-32%);
}
#cookie1 {
    position: absolute;
    width: 227px;
    left: 13%;
}
#cookie2{
    position: absolute;
    width: 190px;
    left: 39%;
    top: 16%;
}
#cookie3{
    position: absolute;
    width: 190px;
    left: 40%;
    bottom: -1%;
    transform: rotate(-79deg);
}
#card{
    position: absolute;
    left: 27%;
    top: 31%;
    transform: rotate(-25deg);
    width: 150px;
}
.man{
    display: flex;
    align-items: normal;
    justify-content: center;
    flex-direction: column;
    background-position: left bottom;
}
#scan{
    font-size: 50px;
}
.main_txt
{
    z-index: 10;
    transform: translate(0, 30%);
    /* width: 300px; */
    /* margin: 0 auto; */
    width: 400px;
    height: 50%;
    overflow: auto;
    margin: auto;
    position: absolute;
    top: 1px;
    left: 0;
    bottom: 0;
    right: 0;
    text-align: center;
}
.play_game_btn {
    transform: translate(100%, 225%);
    /* width: 300px; */
    /* margin: 0 auto; */
    width: 400px;
    height:100px;
    overflow: auto;
    margin: auto;
    position: absolute;
    top: 1px;
    left: 0;
    bottom: 0;
    right: 0;
    text-align: center;
    z-index: 99;
}
.play_game_btn .blue{
    background: #0536C2;
    color: #fff;
    font-size: 24px;
    box-shadow: 2px 5px 10px rgba(255, 255, 255, 0.8);
    padding: 15px 72px !important;
}
.main_txt .green:hover {
    box-shadow: 2px 5px 25px rgba(255, 255, 255, 0.8);
    opacity: 1;
}
.main_txt .green {
    background: #00AD00;
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    font-family: 'MDLZ BITE TYPE';
    box-shadow: 2px 5px 10px rgba(255, 255, 255, 0.8);
    padding: 15px 72px !important;
}
#scrollToA {
    margin-bottom: 50px;
}
.divider_bg h2{
    margin-top: 50px;
}
.fs25 {
    font-size: 25px;
}
#to_step2 {
    margin-top: 20px;
    padding: 6px 12px;
    width: 100%;
}
.success_prize {
    width: 350px;
    height: 350px;
}
.w50 {
    width: 50%;
}

#barcode_img {
    transform: translateY(50%);
    position: absolute;
    color: var(--mc);
    right: 10px;
    font-size: 22px;
    box-shadow: 1px 3px 5px rgba(0, 0, 0, 0.5);
    border: 1px solid;
    padding: 5px 10px;
    background: #fff;
    display: none;
}
.mh500 {
    min-height: 500px;
}
.zoom_image {
    cursor:zoom-in;
}

.popup {
    position: absolute;
    height:100%;
    width:100%;
    top:0;
    left:0;
    display:none;
    text-align:center;
}

.popup_bg {
    background:rgba(0,0,0,0.3);
    position:fixed;
    z-index:1;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: auto;
    height: auto;
}


.popup_img {
    position: fixed;
    z-index:2;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    max-height: 90%;
}

.popup_img {
    pointer-events: none;
}
@media (min-width: 981px) {
    .et_pb_section {
        padding: 4% 0;
    }
}
@media (min-width: 768px) {
    .keyvisual .keyvisual-wrapper {
        background-size: contain;
    }
}
@media only screen and (min-width: 1350px) {
    .et_pb_section {
        padding: 54px 0;
    }
}
.et_pb_section_7 {
    height: 400px;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-top: -1px;
}
.et_pb_section_8 {
    height: 600px;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-top: -1px;
}
@media only screen and (min-width: 981px) {
    .et_pb_section_7, .et_pb_section_8 {
        width: 100%;
    }
}
.et_pb_section_video:not(.et_pb_section--with-menu) {
    overflow: hidden;
    position: relative;
}
.et_pb_section_7.et_pb_section, .et_pb_section_8.et_pb_section {
    background-color: var(--mc) !important;
}
.et_pb_bottom_inside_divider, .et_pb_top_inside_divider {
    display: block;
    background-repeat-y: no-repeat;
    height: 100%;
    position: absolute;
    pointer-events: none;
    width: 100%;
    left: 0;
    right: 0;
}



.et_pb_section_8.section_has_divider.et_pb_top_divider .et_pb_top_inside_divider, .et_pb_section_5.section_has_divider.et_pb_top_divider .et_pb_top_inside_divider, .et_pb_section_7.section_has_divider.et_pb_top_divider .et_pb_top_inside_divider {
    background-image: url(/test/1.svg);
    background-size: 100% 50px;
    top: 0;
    height: 50px;
    z-index: 10;
    transform: scale(1, -1);
}

.et_pb_section_video_bg .mejs-video {
    left: 50%;
    position: absolute;
    max-width: none;
}


.et_pb_section_video_bg .mejs-overlay-loading {
    display: none !important;
}


div.et_pb_section.et_pb_section_7>.et_pb_background_pattern, div.et_pb_section.et_pb_section_8>.et_pb_background_pattern {
    background-image: url('/test/2.svg');
    z-index: 1;
    background-color: transparent;
}
.et_pb_background_pattern {
    background-position: 0 0;
    background-repeat: repeat;
    z-index: 0;
}

.et_pb_background_pattern {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}
.et_pb_section_8.section_has_divider.et_pb_bottom_divider .et_pb_bottom_inside_divider, .et_pb_section_3.section_has_divider.et_pb_bottom_divider .et_pb_bottom_inside_divider, .et_pb_section_5.section_has_divider.et_pb_bottom_divider .et_pb_bottom_inside_divider, .et_pb_section_7.section_has_divider.et_pb_bottom_divider .et_pb_bottom_inside_divider {
    background-image: url(/test/1.svg);
    background-size: 100% 50px;
    bottom: 0;
    height: 50px;
    z-index: 1;
    transform: scale(1, 1);
}
.et_pb_bottom_inside_divider, .et_pb_top_inside_divider {
    display: block;
    background-repeat-y: no-repeat;
    height: 100%;
    position: absolute;
    pointer-events: none;
    width: 100%;
    left: 0;
    right: 0;
}

.fly_container{
    position: absolute;
    z-index: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    width: 100%;
    height: 85%;
    margin-top: -140px;
    opacity: 0.5;
}
.text{
    position: relative;
    font-size: 8vh;
    font-weight: bold;
    text-align: center;
    color: var(--font-color);
    margin: 20px;
    width: 100%;
    font-family: "MDLZ BITE TYPE";
}
.text span{
    position: relative;
    display: inline-block;
    font-size: 65px ;
    font-weight: bold;
    color: var(--font-color);
}
.et_pb_section_8 #play_game_btn {
    transform: translate(-25%, -10%);
}


.animate-gradient {
    line-height: 72px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 22px;
    padding: 20px;
    text-align: center;
    color: #FFFFFF;
    background: linear-gradient(-45deg, #0a1765, #1d20ea, #088ec7, #76ccf3);
    background-size: 400% 400%;
    animation: animate_gradient 5s ease infinite;
}
.animate-gradient:hover {
    animation: none;
}

@keyframes animate_gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

#play_game_btn img{
    margin-right: 15px;
}
.animate-reduce {
    line-height: 72px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 22px;
    padding: 20px;
    text-align: center;
    color: #FFFFFF;
    animation: animate_reduce 2s infinite;

}
.animate-reduce:hover {
    animation: none;
}
.bg_hover {
    display: none;
}

.controller{
    display: none;
}

@keyframes animate_reduce {
    0% {
        transform: scale3d(1, 1, 1);
    }
    50% {
        transform: scale3d(0.95, 0.95, 0.95);
    }
    100% {
        transform: scale3d(1, 1, 1);
    }
}
@media (min-width: 992px) {

    .container {
        width: 100%;
        /*padding: 0 33px;*/
    }
        .keyvisual {
            background-size: contain;
        }

}
@media(min-width: 1200px){
    .container {
        width: 1248px;
    }
}

@media (min-width: 2490px) {
    background-position: center bottom;
}
@media screen and (min-width: 1200px) and (max-width: 2000px){
    body {
        zoom: 100% !important;
    }
    .play video{
        width: 100%;
        height: 100%;
    }
    .play{
        text-align: right;
    }
    .man{
        background-position: left bottom;
    }
    .container {
        width: 70%;
    }
}
@media(max-width: 1520px){
    .play video {
        margin-left: -47%;
    }
    .main_txt {
        z-index: 10;
        transform: translate(10%, 26%);
    }
    .container.divider_bg {
        width: 90%;
    }
}
@media(max-width: 1367px){
    .play video {
        margin-left: 0;
        scale: 1;
        right: 0;width: 100% !important;
        height: 100% !important;
        transform: translate(10px, 10px);
    }
    .container.divider_bg {
        width: 90%;
    }
}
@media(max-width: 1199px){
    #barcode_img {
        display: block;
    }
    #scan {
        font-size: 40px;
    }
    #campaign_checks {
        width: 90%;
        margin: 0 auto;
    }
    .man {
        background: url(/image/4545.png) no-repeat;
        background-position: left bottom;
        height: 560px;
    }
    .main_txt {
        z-index: 10;
        transform: translate(10%, 0%);
    }
    .filter_container .col-sm-3 {
        padding: 0 5px;
    }

    .rule_row span:nth-child(2) {
        display: inline-block;
        width: 80%;
    }
    .btn-rounded {
        padding: 7px !important;
    }
    #users_data .existing .fa-edit {
        right: -33px;
    }
}
@media(max-width: 1180px){
    .step_container {
        width: 48%;

    }
    .step_container:nth-child(1){
        margin-right: 10px;
    }
    .nav>li>a {
        position: relative;
        display: block;
        padding: 10px 6px;
    }

    #adress_form .npl{
        padding-left: 0 !important;
        padding-right: 15px !important;
    }
    #adress_form .npr{
        padding-left: 15px!important;
        padding-right: 0!important;
    }
    #adress_form .np{
        padding: 0!important;
    }
    .reg_container .form-control, .login_container .form-control, #adress_form .form-control {
        margin-bottom: 0;
    }
    .step_container {
        margin: 15px 0;
        overflow: hidden;
    }
    .step_container small{
        display: block;
        margin: 40px;
    }

}
@media(max-width: 1100px){
    .bg_hover {
         display: block;
        z-index: 1;
        background-color: rgba(6, 45, 173, 0.3);
        bottom: 0;
        left: 0;
        position: absolute;
        right: 0;
        top: 0;
        background-position: 0 0;
        background-repeat: repeat;
    }
    .play_game_btn {
        transform: translate(10%, 140%) !important;
    }

    #user_campaigns_div .btn-header {
        background: var(--fc);
        border: 1px solid var(--fc);
        color: var(--footer_link-color);
        min-width: 112px;
        margin: 19px 0 0 0 !important;
        float: unset !important;
    }
    .main_txt {
        z-index: 10;
        transform: translate(10%, -35%);
    }
}
@media(max-width: 1024px){
    .subbg_container {
        padding: 30px;
    }
    .substep_container .text {
        font-size: 14px;
        padding-left: 0;
        color: var(--mc);
        width: 100%;
        margin: 20px 0;
    }
    .counter_div div:nth-child(2){
        margin-top: 30px;
    }
    .steps_participate .substep_container {
        display: block;
    }
    .flex.step_container {
        display: block;
    }
    .step_container .img {
        padding: 20px;
        text-align: center;
    }
    .step_container .text {
        font-size: 16px;
        width: unset;
        margin-top: 0;
    }
    #mep_0 { width: 100% !important; }
    #mep_0 video {
        width: unset !important;
        transform: translateX(-41%);
        height: 100%;
    }
    .run_text_container{
        float: none !important;
        left: 0;
        transform: translate(-20%, 75%);
        bottom: 0;
    }
    .et_pb_section_7 {
        width: 100%;
    }
    .et_pb_section_8 {
        width: 100%;
    }
    .fly_container .text {
        font-size: 4vh;
    }

    .fly_container .text span {
        font-size: 30px;
    }


    .rule_row {
        padding: 10px 15px;
        background: #fff;
        font-size: 14px;
        color: var(--mc);
        border-radius: 10px;
        margin-bottom: 5px;
        display: flex;
    }
    .rule_row span{

        width: 42px;
        height: 42px;
    }
    .step_container {
        width: 100%;

    }
    .step_container:nth-child(1){
        margin-right: 0px;
    }
    .top_buttons {
        margin-top: 20px;
    }
    .btn-header, .btn-login {
        min-width: 130px;
    }
    .logo_div {
        margin: 20px 0 0 0px;
    }

}
@media(max-width: 991px){
    #users_data h3 {
        font-size: 20px;
    }
     #user_campaigns_div .col-lg-6 {
         padding-left: 15px !important;
         padding-right: 15px !important;
    }
    .container {
        width: 97%;
    }
    .info_mark_points {
        position: absolute;
        margin-top: 0;
        font-size: 18px;
        cursor: POINTER;
    }
        .flex_stretch {
        display: block;
    }
    .flex.subbg {
        align-items: stretch;
    }
    .flex.step_container {
        align-items: center;
        /* display: block; */
        text-align: center;
        justify-content: flex-start;
        width: 100%;
    }
    .substep_container {
        padding: 10px;
        display: flex;
    }
    .npl, .npr, .np {
        padding: 0 !important;
    }
    .rule_row span:nth-child(2) {
        display: inline-block;
        width: 80%;
    }
    #upload_right {
        margin-top: 15px;
    }
    #upload_right h3, #upload_right p{
        text-align: center;
    }
    #upload_right .img-responsive {
        margin: 0 auto 15px;
    }
    header .white_bg {
        margin-top: 0;
    }
}
@media(max-width: 820px){
    .chance_div h2 {
        margin: 20px 10px 20px 10px;
        font-size: 22px;
    }
    .chance_foot {
        padding: 5px;
    }
    #mep_0 {
        margin: 75px 0px 0px 0px !important;
        height: 100% !important;
    }
    .run_text_container {
        float: none !important;
        left: 0;
        transform: translate(-10%, 57%);
        bottom: 0;
        width: 100%;
    }
}
@media(max-width: 768px){
    #play_game_btn {
        width: 50%;
    }
    .nav>li>a {
        position: relative;
        display: block;
        padding: 10px 5px;

    }
    .navbar {
        font-size: 18px;
    }
    .rule_row {
        padding: 5px;
        background: #fff;
        font-size: 12px;
        color: var(--mc);
        border-radius: 10px;
        margin-bottom: 5px;
        display: flex;
    }
    #upload_bordered h3 {
        margin: 35px 0;
    }
    #upload_bordered {
        border: 1px dashed var(--mc);
        padding: 30px;
        border-radius: 10px;
        background: var(--sub-color);
    }
    #upload_right h3 {
        font-size: 20px;
    }
    #upload_right p {
        font-size: 15px;
    }
    .info_mark_points {
        right: -95px;
    }
    .filter_container {
        padding:5px;
    }
}
@media(max-width: 767px){
    #tic_tac_toe h4 {
        font-size: 20px !important;
    }
    .subfooter, footer {
        text-align: center;
    }
    footer ul li {
        margin-right: 0;
    }
    footer #logo {
        max-height: 70px;
        margin: 0 auto 30px;
    }
    .man{
        background-size: auto 100%;
    }
    .flex.step_container {
        display: block;
    }
    .step_container .text {
        font-size: 16px;
        width: unset;
        margin-top: 0;
    }
    .substep_container img {
        width: 60px;
        height: 54px;
    }
    .steps_participate p,  .steps_participate a {
        font-size: 18px;
    }
    .et_pb_section_8 #play_game_btn{
        transform: translate(0%, 0%);
    }

    #code_for_validation {
        font-size: 45px;
    }
    #adress_form .npl{
        padding-left: 0 !important;
        padding-right: 0px !important;
    }
    #adress_form .npr{
        padding-left: 0px!important;
        padding-right: 0!important;
    }
    #adress_form .np{
        padding: 0!important;
    }
    .run_text_container {
       transform: translate(0, 50%);
        align-items: center;
    }
    .logo_div {
        margin: 0;
    }
    #play_game_btn {
        width: 60%;
    }
    .reg_container .form-control, .login_container .form-control, #adress_form .form-control {
        height: 60px;
        margin-bottom: 0;
    }
.step_container_owner {
    margin: 5px;
}
    .mm-spn a:not(:last-child) {
        width: unset;
    }
    .mobile_logo{
        position: absolute;
        top: -5px;
        margin: 0 0 0 30px;
        width: 100%;
        text-align: left;
        display: block !important;
    }
.breadcrumb {
    display: none;
}
.subbg {
        background: var(--sub-color);
        border-radius: 10px;
        padding: 0 10px;
        align-items: normal;
    }

    .substep_container img {
        margin: 0 auto 10px;
    }
    .h-sm {
        display: none;
    }
    .container {
        width: 100%;
        padding:0;
    }
    .slick-prev, .slick-next {
        display: none !important;
    }

    .slick-slide {
        margin: 0;
    }
    .slider {
        width: 100%;
        margin: 15px auto 0;
    }
    .slick-dots li button:before {
        font-size: 12px;
    }
    .mm-ocd__content .btn-header {
        background: var(--fc);
        border: 1px solid var(--fc);
        color: var(--footer_link-color);
        min-width: 170px;
        margin: 20px 0 0 0;
    }
    .mm-ocd__content .btn-login {
        background: #fff;
        border: 1px solid var(--mc);
        color: var(--mc);
        min-width: 170px;
        margin: 20px 0 0 0;
    }
    .mm-ocd__content {
        background: var(--mc);
    }
    .mm-spn.mm-spn--light {
        color: var(--link-color);
        background: var(--mc);
    }
    .mm-spn li:after, .mm-spn li:before {
        display: none;
    }
    .mm-spn li {
        text-align: center;
    }

    .btn-lg, .block-lg {
        display: none;
    }
    .btn-sm {
        display: block !important;
    }
    .top_buttons {
        display: none;
    }
    .nav>li.msm {
        display: block !important;
    }
    .participate_container .flex-justified{
        display: block;
    }
    #examples .receipt_container {
        width: 48%;
        /* margin-left: 10px !important; */
        /* margin-top: 10px !important; */
        margin: 0 10px 10px 0;
        padding: 0;
    }
    #examples .receipt_container:nth-child(odd){
        margin-left: 0;
    }
    #examples .receipt_container:nth-child(even){
        margin-right: 0;
    }
    #examples .receipt_container:nth-child(4) {
        margin-left: 0;
        margin-right: 10px;
    }
    #examples .receipt_container:nth-child(5) {
        margin-right: 0;
    }
    .button.login {
        width: unset;
    }
    #sidenav {
        display: none;
    }
    .mb45 {
        margin: 0;
    }
    .my_acc {
        padding: 0;
    }
    .cashback_campaign_item .img {
        height: 250px;
        background-size: auto 70%;
    }
    .available_prizes_item .img {
        height: 250px;
        background-size: auto 70%;
    }
    .available_goods_item .img {
        height: 250px;
        background-size: auto 70%;
    }
    .retailer_hover {
        height: 250px;
    }
    #mobile_a {
        display: block;
        float: right;
        color: #4040ec;
        z-index: 999;
        top:25px;
    }
    #mobile_a i{
        color: var(--link-color);
    }
    #closeMobileNav {
        display: block;
    }
    .flex.subbg {
        align-items: stretch;
        display: block;
        overflow: hidden;
    }
    .step_container {
        margin: 15px 0;
        overflow: hidden;
    }
    .step_container small{
        display: block;
        margin: 40px;
    }
    #home_campaigns_div .col-lg-6:nth-child(odd),#user_campaigns_div .col-lg-6:nth-child(odd) {
        padding: 0;
    }
    #home_campaigns_div .col-lg-6:nth-child(even), #user_campaigns_div .col-lg-6:nth-child(even) {
        padding: 0;
    }
    .logo_div {
        text-align: left;
    }

    .row:nth-child(1) {
        margin: 0 15px;
    }
    #home_campaigns_div .col-lg-6:nth-child(even), #user_campaigns_div .col-lg-6:nth-child(even) {
        padding: 0;
    }
#contact_form {
    padding: 25px;
}

    header {
        min-height: unset;
        padding: 8px 0 0 0;
    }
    .fs20 {
        font-size: 20px;
    }
    #examples .receipt_ico {
        position: absolute;
        bottom: 5px;
        right: 20px;
        z-index: 9;
        width: 45px !important;
    }
    #user_campaigns_div {
        margin-top: 15px;
    }
    .info_mark_points {
        position: absolute;
        right: 15%;
        margin-top: 0;
        font-size: 18px;
        cursor: POINTER;
    }
    .banner_row {
        margin: 0 !important;
    }
    #available_prizes .slick-dots{
        width: 90%;
    }
}
@media(max-width: 699px){
    .chance_div h2 {
        margin: 20px 10px 20px 10px;
        font-size: 18px;
    }
    .chance_foot {
        padding: 5px;
        font-size: 14px;
    }

    #scan {
        margin-bottom: 0;
    }
    #scan span{
        font-size: 24px;
      /*  background: rgb(5, 54, 194, 0.7);*/
        text-shadow: 2px 1px 4px rgba(0, 0, 0, 0.8);
        padding: 24px;
        border-radius: 20px;
        color: var(--link-color);
        display: inline-block;
    }
    .main_txt .green {
        background: #0536C2;
        color: #fff;
        font-size: 24px;
        box-shadow: 2px 5px 10px rgba(255, 255, 255, 0.8);
        padding: 15px 72px !important;
    }
    .play_game_btn {
        transform: unset;
        display: none;
    }
    #scan {
        font-size: 30px;
    }
    .main_txt {
        z-index: 10;
        transform: translate(0%, 0%);
        width: 100% !important;
        height: 72%;
    }
    .controller {
        display: block;
        position: fixed;
        top: 15%;
        width: 115px;
        right: 0;
        opacity: 1;
        transform: rotate(-45deg);
        z-index: 55;
    }

    .controller.shake {
        animation: shake 0.5s !important;
        animation-iteration-count: infinite;
    }
    .controller.shakenone {
        animation: none;
    }

    @keyframes shake {
        0% { transform: translate(1px, 1px) rotate(0deg); }
        10% { transform: translate(-1px, -2px) rotate(-1deg); }
        20% { transform: translate(-3px, 0px) rotate(1deg); }
        30% { transform: translate(3px, 2px) rotate(0deg); }
        40% { transform: translate(1px, -1px) rotate(1deg); }
        50% { transform: translate(-1px, 2px) rotate(-1deg); }
        60% { transform: translate(-3px, 1px) rotate(0deg); }
        70% { transform: translate(3px, 1px) rotate(-1deg); }
        80% { transform: translate(-1px, -1px) rotate(1deg); }
        90% { transform: translate(1px, 2px) rotate(0deg); }
        100% { transform: translate(1px, -2px) rotate(-1deg); }
    }

    #play_game_btn {
        display: none;
    }
    .man{
        height: 300px;
        width: 100% !important;
        display: block;
    }
    .play {
        width: 100% !important;
        background-size: 100% 100%;
        clip-path: unset !important;
    }
    .play video {
      display: none;
    }
    .boy {
        display: block;
    } .bg_pattern {
          display: none;
      }
}
@media(max-width: 667px){
    .login_container {
        padding: 40px;
    }
    .login_container .flex_stretch {
        text-align: center;
    }
    #mobile_menu {
        padding-top: 0px;
        margin-top: 0;
        overflow-y: auto;
    }
}

@media(max-width: 640px){

    #mobile_a {
     margin-top: -14px;
 }
    .brand_btn {
        padding: 20px 0;
    }
    #campaign_banner_div2 {
        width: 100%;
        height: 210px;
        background-position: center bottom;
        background-size: contain;
        background-repeat: no-repeat;
        border-radius: 10px;
    }
    h2{
        margin:15px 0 11px;
    }
    #campaign_banner_div {
        width: 100%;
        height: 400px;
        background-position: center top;
        background-size: cover;
        background-repeat: no-repeat;
        border-radius: 10px;
    }
    .steps_participate {
        display: block;
    }
    .substep_container .text {
        text-align: left;
        padding-left: 20px;
    }
    .substep_container  a{
        font-size: 24px;
        font-weight: 400;
    }
    .steps_participate .substep_container {
        display: flex ;
        width: 100%;
        margin-bottom: 15px;
        align-items: center !important;
        justify-content: left;
        font-size: 24px;
    }

    #campaign_banner_div2, #campaign_banner_div {
        background-size: contain;
    }
    .cookies_div {
        display: flex !important;
        margin-top: -100px;
    }
    .animation-bg {
        width: 20%;
    }
    .payout_container {
        padding: 15px !important;
    }
    .terms_table td{
        display: block;
    }
    .step_btn {
        padding: 20px;
        border-radius: 40px;
        font-size: 16px;
        font-weight: 600;
        text-transform: uppercase;
        width: 100%;
        margin-top: 10px;
    }
    .flex_stretch .reg_container {
        margin-bottom: 15px;
    }
    .flex_stretch {
        display: block;
    }
    #logo {
        margin: 0 auto;
        max-height: 40px;
    }
    .logo_div {
        text-align: left;
    }

    .top_buttons {
        text-align: center;
        padding: 20px 0  !important;
    }
    .filter_container .col-sm-3{
        padding-bottom: 15px;
    }
    .filter_container {
        margin: 0px;
    }
    #home_campaigns_div {
        padding:0px;
        margin-top: 15px;
    }
    #home_campaigns_div .btn {
        float: none !important;
        margin-top: 15px;
    }
    footer .col-md-2 {
        margin-top: 15px !important;
    }
    .np {
        padding: 0 15px;
    }

    .subflex {
        align-items: stretch;
    }
    .counter_div {
        display: block;
        margin:  0 15px;
    }
    .prize_counter, .days_counter {
        justify-content: flex-start;
        margin-bottom: 20px;
    }
    .reg_container {
        padding: 15px;
    }

    .reg_container .form-control, .login_container .form-control {
        margin-bottom: 10px;
    }

    .pwd_eye {
        margin-top: -48px;
    }


    .dropdown {
        margin-left: 0;
    }
}

@media(max-width: 560px){
    .block .flex-justified {
        display: block;
    }
    #code_for_validation {
        font-size: 20px;
    }
    #barcode_img {
        transform: translateY(25%);
    }
    #mobile_a {
        margin-top: 0px;
    }
    .sm_login {
        top:17px;
    }
    .cashback_campaign_item .img {
        height: 100px;
        padding: 10px 0;
        background: var(--subbg-color);
        margin-bottom: 0;
        border-radius: 10px 10px 0 0;
    }
    .brand_btn {
        padding: 20px 0;
    }
    .auth_fieldset {
        margin-bottom: 20px;
    }
    .social_link {
        width: 50px;
        height: 50px;
        margin-bottom: 20px;
    }

    .demo-material-label {
        font-size: 1.4vh !important;
    }
    .substep_container {
        padding: 5px;
        margin-bottom: 5px;
    }
    .substep_container .img{
        text-align: left;
        width: 15%;
    }
    .substep_container .text{
        text-align: left;
    }
    .substep_container img{
        width: 60px;
        margin:0;
    }
    .step_container_owner {
        display: block;
    }
    #play_game_btn {
        width: 70%;
    }
    .animation-bg {
        margin-left: -15px;
    }
    header .pdt20 {
        padding-top: 0;
    }
    .step_container {
        margin: 5px 0 5px;
    }
    .step_container:nth-child(1){
        margin-top: 10px;
    }
    .headline {
        font-size: 4vh;
        padding-bottom: 0;
    }
    #available_prizes {
        padding: 5px;
    }
}
@media(max-width: 500px){

.info_mark_points {
    right: 5%;
}
    .swiper-slide-visible:nth-child(2) {
        min-width: 300px;
    }
    .receipt_img {
        max-height: 100% !important;
    }
    .receipt_container {
        position: relative;
        margin: 35px auto;
        padding-top: 25px;
        padding-bottom: 25px;
    }
    .run_text_container .txt{
        font-size: 30px;
    }

    .fly_container {
        margin-top: -70px;
    }
    #play_game_btn {
        width: 80%;
    }
    #available_prizes .slick-dots{
        width: 100%;
    }
    .remove_receipt_ico {
        width: unset;
        height: unset !important;
        position: absolute;
        right: 38px;
        margin-top: -15px !important;
        cursor: pointer;
        color: #c41919;
        box-shadow: -1px 9px 12px rgba(255, 255, 255, 0.7);
    }
    .counter_div p, .prize_counter p {
        margin-bottom: 10px;
        font-size: 22px;
    }
    .main_home_container {
        padding: 5px;
    }
    #upload_bordered {
        padding: 20px;
    }
    .button.login {
        width: 80%;
        padding: 10px;
        margin-top: 15px;
    }
    #scrollToA {
        margin-top: -15px;
    }
    #available_goods {
        padding: 10px;
        margin-bottom: 20px;
    }
    .rule_row {
            text-align: left;
            display: flex  ;
            align-items: center;
            justify-content: flex-start;
            margin-left: 10px;
            margin-bottom:5px;
        padding: 5px 5px 0;
        background: #fff;
        font-size: 12px;
    }
    .login_container .flex_stretch img, .reg_container .flex_stretch img {
        width: 48% !important;
        margin: 0 auto 10px !important;
        height: 49px;
    }
    .campaign_div .footer {
        text-align: center;
    }
    .reg_container .flex_stretch {
        text-align: center;
    }
    .rule_row span {
        display: inline-block;
        margin-bottom: 10px;
    }
    .slick-dots {
        position: relative;
        bottom: 0;
        display: block;
        width: 100%;
        padding: 0;
        margin: 0 0 15px;
        list-style: none;
        text-align: center;
    }

    body {
        font-size: 14px;
    }
    .top_buttons .btn-login {
        margin-top: 20px;
    }
    .flex.subbg {
        align-items: stretch;
        display: block;
        overflow: hidden;
    }
    .flex.step_container {
        align-items: center;
        display: flex ;
        text-align: center;
        justify-content: flex-start;
    }
    .step_container:last-child{
        margin-bottom: 10px;
    }
    .available_goods_item .descr {
        padding: 10px;
    }
    .subflex {
        display: block;
    }
    .substep_container, .substep_container:last-child {
        margin:0;
        justify-content: flex-start;
    }
    #available_goods .btn-rounded {
        width: 60%;
    }
    .brand_img {
        margin-bottom: 30px;
    }
    .steps_participate {
        margin-bottom: 30px;
        padding: 5px;
    }
    h2 {
        font-size: 30px;
    }
    h1 {
        font-size: 34px;
        margin-top: 10px;
        margin-bottom: 20px;
    }
    .checkcontainer {
        font-size: 14px;
    }
    p{
        word-break: break-word;
    }
    .step_container .text, .substep_container .text {
        font-size: 20px;
        padding-bottom: 0px;
        width: 80%;
    }
    .step_container_owner .text{
        width: 100%;
    }
    .counter_div {
        margin:0;
    }
    .label {
        font-size: 16px;
    }
    .reg_add_info {
        padding: 10px;
    }
    footer .col-sm-6 {
        padding: 15px !important;
    }
    .subfooter ul {

    }
    .login_container {
        padding: 10px;
    }
    #reglogin {
        float: none !important;
        margin-top: 20px;
    }
    .logo_div{
        margin-bottom: 8px;
        text-align: left;
    }
    .participate_container {
        width: 100%;
        padding: 0 15px 15px ;
    }
    #upload_right {
        margin-top: 15px;
    }
    #upload_right h3, #upload_right p{
        text-align: center;
    }
    #upload_right .img-responsive {
        margin: 0 auto 15px;
    }
    #upload_bordered h3 {
        margin: 30px 0 ;
    }
    .rule_row span:nth-child(2) {
        display: inline-block;
        width: 85%;
    }
    .btn-login {
        margin-bottom: 20px !important;
    }
    .sep50 {
        height: 1px;
    }
    #mobile_a{
        margin-top: 3px;
    }
    .cookies_div {
        display: flex !important;
        margin-top: -100px;
    }
    #campaign_banner_div {
        height: 320px;
    }

}
@media(max-width: 460px) {
    #play_game_btn {
        font-size: 24px;
        padding: 8px 8px;
        width: 70%;
    }
    #campaign_banner_div2, #campaign_banner_div3 {
        height: 100px;
    }
    .h3, h3 {
        font-size: 18px;
    }
    #upload_bordered h3 {
        font-size: 24px;
    }
    #upload_right h3 {
        font-size: 20px;
    }
    #upload_right p {
        font-size: 18px;
    }
    .bg_hover {
        background: rgba(6, 45, 173, 0.3);
    }
}
@media(max-width: 399px) {
    #mobile_a {
        margin-top: 0px;
    }
    .sm_login {
        top:14px;
    }

    #play_game_btn {
        font-size: 24px;
        padding: 8px 8px;
        width: 70%;
    }
    .days_counter li {
        width: 75px;
    }
    .headline {
        font-size: 3vh;
        padding-bottom: 0;
        padding-top: 10px;
    }
#upload_btn {
    width: 100%;
}
    .main_txt .green {
        color: #fff;
        font-size: 18px;
        font-weight: 600;
        font-family: 'MDLZ BITE TYPE';
        box-shadow: 2px 5px 10px rgba(255, 255, 255, 0.8);
        padding: 15px 50px !important;
    }
    #scan {
        font-size: 28px;
    }
    .main_txt {
        width: 100% !important;
    }
    .play_game_btn {
        width: 100% !important;
    }
    .prize_counter li {
            width: 50px;
        }
}
    @media(max-width: 388px) {

        .days_counter li {
            width: 70px;
        }
    }
    @media(max-width: 357px) {
        .prize_counter li {
            width: 50px;
        }
        .days_counter li {
            width: 70px;
        }
    }