/*------------------------------------------------
    Copyright PRO TV S.A. All rights reserved.
    Contact: @protv.ro
------------------------------------------------*/

@import url("reset.css");
@import url("bootstrap.min.css");

/*------------------------------------------------
  FONTS
------------------------------------------------*/

@font-face {
    font-family: "SuperbetSans Light";
    src: url("../fonts/SuperbetSans-Light.eot");
    src: url("../fonts/SuperbetSans-Light.eot?#iefix")
            format("embedded-opentype"),
        url("../fonts/SuperbetSans-Light.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "SuperbetSans Regular";
    src: url("../fonts/SuperbetSans-Regular.eot");
    src: url("../fonts/SuperbetSans-Regular.eot?#iefix")
            format("embedded-opentype"),
        url("../fonts/SuperbetSans-Regular.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "SuperbetSans Bold";
    src: url("../fonts/SuperbetSans-Bold.eot");
    src: url("../fonts/SuperbetSans-Bold.eot?#iefix")
            format("embedded-opentype"),
        url("../fonts/SuperbetSans-Bold.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "SuperbetSans Black";
    src: url("../fonts/SuperbetSans-Black.eot");
    src: url("../fonts/SuperbetSans-Black.eot?#iefix")
            format("embedded-opentype"),
        url("../fonts/SuperbetSans-Black.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/*------------------------------------------------
  GLOBAL STYLES
------------------------------------------------*/
:root {
    --background-color: #423d38;
    --main-font: "SuperbetSans Regular", Helvetica, sans-serif;
    --headings-font: "SuperbetSans Bold", Helvetica, sans-serif;
    --headings-font-black: "SuperbetSans Black", Helvetica, sans-serif;
    --block-margin: 20px;
    --block-padding: 40px;
    --h1-size: 2.5rem;
    --h2-size: 2.3rem;
    --h4-size: 1.75rem;
    --big-text: 5rem;
    --mobile-heading: 3rem;
    --paragraph-size: 1.8rem;
    --heading-line-height: 1.45;
    --heading-letter-spacing: normal;
    --heading-text-transform: uppercase;
    --heading-color: #fff;
    --link-color: #42affa;
    --link-color-dark: #068de9;
    --link-color-hover: #8dcffc;
    --light-blue: #74add0;
    --darker-blue: #2e235e;
    --text-color: #333;
    --superbet-red: #ed0104;
    --superbet-pink: #fea9be;
    --superbet-purple: #700042;
    --white: #ffffff;
    --grey: #cccccc;
    --black: #000000;
}

/* GENERAL */

body {
    overflow-x: hidden;
    overflow-y: scroll;
}

*,
*:after,
*:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

*:focus {
    outline: none !important;
}

a {
    color: var(--superbet-red);
}

a:hover,
a:focus {
    color: var(--superbet-red);
}

.dark-bg {
    background-color: var(--darker-blue);
}

.light-bg {
    background-color: var(--light-blue);
}

.nav-item {
    padding: 0 var(--block-margin);
}

.nav-item a {
    font-family: var(--main-font);
    text-transform: var(--heading-text-transform);
    font-size: 20px;
    letter-spacing: var(--heading-letter-spacing);
    color: var(--white);
    padding: 9px 20px;
    border-radius: 6px;
}

.nav-item a:hover {
    background-color: var(--superbet-red);
}

.navbar-brand svg {
    max-width: 348px;
    height: auto;
}

.navbar-toggler .spantext {
    display: flex;
}

.burger {
    width: 20px;
    height: 14px;
    position: relative;
    margin: 0px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    cursor: pointer;
}

.burger span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    border-radius: 6px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
}

.navbar-toggler[aria-expanded="false"] .burger span {
    background: var(--white);
}

.burger span {
    background: var(--white);
}

.navbar-toggler[aria-expanded="false"] .burger span:nth-child(1) {
    top: 0px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

.navbar-toggler[aria-expanded="false"] .burger span:nth-child(2) {
    top: 5px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

.navbar-toggler[aria-expanded="false"] .burger span:nth-child(3) {
    top: 10px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

.navbar-toggler[aria-expanded="true"] .burger span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 5px;
    left: 2px;
}

.navbar-toggler[aria-expanded="true"] .burger span:nth-child(2) {
    width: 0%;
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .burger span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 5px;
    left: 2px;
}

.hero-text {
    font-family: "SuperbetSans Bold";
    font-size: 33px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px #00000080;
    text-transform: uppercase;
}

.hero-container h2 {
    font-family: "SuperbetSans Bold";
    font-size: 50px;
    letter-spacing: -1px;
    color: var(--white);
    margin: 0 auto;
    text-shadow: 1px 1px 2px #00000080;
    text-transform: uppercase;
}

.licence-logo img {
    max-width: 200px;
}

.cta-wrapper button {
    background: var(--white);
    color: var(--superbet-red);
    font-weight: 800;
    padding: 10px 50px;
    margin: 30px 0 40px 0;
    border: none;
}

.cta-wrapper button:hover {
    background: var(--superbet-red);
    color: var(--white);
}

/*------------------------------------------------
  FORM
------------------------------------------------*/

/* radios */
input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}

.custom-control {
    position: relative;
    display: block;
    min-height: 1.5rem;
    padding-left: 1.5rem;
    /* margin-bottom: var(--block-margin); */
}

.custom-control-label {
    display: block;
    cursor: pointer;
}

.custom-control-input:checked ~ .custom-control-label::before {
    color: #fff;
    border-radius: 50%;
    border-color: var(--superbet-red);
    background-color: var(--tchibo-color-10rule);
}

.custom-radio .custom-control-label::before {
    border-radius: 50%;
}

.custom-control-label::before,
.custom-file-label,
.custom-select {
    transition: background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.custom-radio .custom-control-input:checked ~ .custom-control-label::after {
    background-color: var(--tchibo-color-10rule);
}

.custom-control-label::after {
    position: absolute;
    top: 0.25rem;
    left: -1.5rem;
    display: block;
    width: 1rem;
    height: 1rem;
    content: "";
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50% 50%;
}

.custom-control-label::before {
    position: absolute;
    top: 0.25rem;
    left: -1.5rem;
    display: block;
    width: 1rem;
    height: 1rem;
    pointer-events: none;
    content: "";
    background-color: #fff;
    border: var(--tchibo-color-10rule) solid 1px;
}

/* checkbox */
.checkbox-round {
    width: 24px;
    height: 24px;
    background-color: var(--white);
    border-radius: 50%;
    vertical-align: middle;
    border: 1px solid var(--tchibo-color-10rule);
    -webkit-appearance: none;
    appearance: none;
    outline: none;
    cursor: pointer;
    margin-right: 10px;
}

.checkbox-round:checked {
    background-color: var(--tchibo-color-10rule);
}

.custom-control-description {
    font-size: 20px;
    font-family: var(--main-font);
    line-height: 1.2;
    color: var(--superbet-red);
}

.custom-control-description a {
    color: var(--darker-blue);
}

.row-checkbox {
    padding-top: 20px;
    padding-bottom: 15px;
}

#ssoform {
    min-height: 800px;
    height: auto;
}

#results {
    color: var(--tchibo-color-60rule);
}

#text-errors {
    color: var(--tchibo-color-10rule);
    padding: var(--block-margin) 0 0;
    font-size: 30px;
    padding: 20px 0;
}

.visuallyhidden {
    position: absolute;
    overflow: hidden;
    clip: rect(0 0 0 0);
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
}

.form-group label {
    color: var(--black);
    font-family: var(--main-font);
}

#ssoform input[type="text"],
#ssoform input[type="tel"],
#ssoform input[type="email"] {
    color: var(--superbet-red);
    width: 100%;
    padding: 4px 10px;
    box-sizing: border-box;
    letter-spacing: 1px;
    background-color: var(--white);
    height: 70px;
    border-radius: 20px;
    border: solid 3px;
}

input:not(:placeholder-shown) {
    border-color: var(--superbet-red);
}

.input-effect {
    position: relative;
    width: 100%;
    margin: 20px 0;
}

.effect-placeholder {
    color: var(--white);
    border: 0;
    padding: 4px 0;
}

.effect-placeholder ~ label {
    position: absolute;
    left: 30px;
    width: 100%;
    top: 7px;
    color: var(--tchibo-color-30rule);
    transition: 0.3s;
    z-index: 1;
    letter-spacing: 0.5px;
}

input:focus {
    outline: 0;
}

.effect-placeholder:focus ~ label,
.has-content.effect-placeholder ~ label,
input:not(:empty).effect-placeholder ~ label {
    top: -20px;
    left: 30px;
    font-size: 12px;
    color: var(--tchibo-color-10rule);
    transition: 0.3s;
}

.quizzing {
    min-height: 40vh;
    margin-bottom: 2vh;
}

.quizzing h5 {
    font-size: 30px;
    color: var(--white);
    padding-top: 8vh;
}

.quizzing label {
    display: block;
    margin-bottom: var(--block-margin);
}

.submitButton {
    width: 100%;
    border-radius: 50px;
    background: var(--superbet-red);
    text-align: center;
    font-size: var(--h2-size);
    text-transform: var(--heading-text-transform);
    color: var(--white);
    font-family: var(--headings-font);
    padding-left: calc(2 * var(--block-padding));
    padding-right: calc(2 * var(--block-padding));
    border: solid 3px var(--superbet-red);
}

.submitButton:hover {
    background-color: rgba(var(--white));
    color: var(--superbet-red);
    border: solid 3px var(--superbet-red);
}

#errorMessage {
    display: none;
    padding: 30px;
    width: 100%;
    text-align: center;
    margin: 20px;
    background-color: var(--superbet-red);
    color: var(--white);
    border-radius: 10px;
    font-size: 20px;
    font-weight: 200;
}

.info {
    padding: var(--block-padding);
    color: var(--white);
    font-size: calc(var(--h2-size) / 2);
    font-family: var(--main-font);
}

.row-checkbox .col-12 {
    margin: 0 auto;
}

.custom-control {
    position: relative;
    display: block;
    min-height: 1.4rem;
    padding-left: 3rem;
    margin-right: 1rem;
    cursor: pointer;
}

.custom-control-input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.custom-radio .custom-control-indicator {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid rgba(var(--white), 1);
}

.centering {
    white-space: nowrap;
    display: inline-block;
    text-align: center;
    width: 19%;
    padding: 5px 0 0 0;
}

.custom-control-indicator {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    background-color: var(--white);
    border: 3px solid var(--superbet-red);
    border-radius: 8px;
    width: 28px;
    height: 28px;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: 70% 75%;
    background-size: 70% 75%;
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-indicator {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCA4IDgnPjxwYXRoIGZpbGw9JyNmZmYnIGQ9J002LjU2NC43NWwtMy41OSAzLjYxMi0xLjUzOC0xLjU1TDAgNC4yNiAyLjk3NCA3LjI1IDggMi4xOTN6Jy8+PC9zdmc+");
    background-color: var(--superbet-red);
    border: 1px solid var(--superbet-red);
}

/* ------------------------------------------------
SLIDER QUIZZ
------------------------------------------------*/
#slide-quizzing label {
    font-size: 22px;
}

#slide-quizzing input[type="radio"] {
    background: var(--white);
    border: 1px solid var(--tchibo-color-10rule);
    border-radius: 12px;

    cursor: pointer;
    display: inline-block;
    margin-right: 15px;
    position: relative;
    -webkit-appearance: none;
    appearance: none;
    transition: background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    width: 24px;
    height: 24px;
}

#slide-quizzing input[type="radio"]:checked {
    background-color: var(--tchibo-color-10rule);
}

/* Dots */
.slick-dotted.slick-slider {
    margin-bottom: 30px;
}

.slick-dots {
    position: absolute;
    bottom: -25px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}

.slick-dots li {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 10px;
    margin: 0 20px;
    padding: 0;
    cursor: pointer;
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 60px;
    height: 10px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    border: 2px solid #f7f7f7;
    background: #f7f7f7;
    border-radius: 30px;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
    outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
    opacity: 1;
    border-radius: 30px;
    background: var(--tchibo-lightgold);
}

.slick-dots li button:before {
    font-family: "slick";
    font-size: 0;
    line-height: 10px;
    width: 60px;
    height: 10px;
    border-radius: 30px;
    content: "";
    text-align: center;
    opacity: 1;
    color: transparent;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button {
    background: var(--tchibo-lightgold);
    border-radius: 30px;
    color: transparent;
}

.slick-dots li.slick-active button:before {
    opacity: 1;
    border-radius: 30px;
    color: transparent;
}

/*------------------------------------------------
  SECTIONS
------------------------------------------------*/

img {
    height: auto;
    max-width: 100%;
}

.full-width {
    margin-right: 0;
    right: 0;
    max-width: 100vw;
    position: relative;
    width: 64vw;
    max-height: 500px;
    overflow: hidden;
}

.full-width img {
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.container {
    max-width: 1400px;
}

.first-container {
    position: relative;
}

.second-container {
    position: relative;
}

section {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
    overflow: hidden;
}

.promo-pro {
    background-image: url(../img/hero_bg.png);
    background-size: auto;
    background-position: center top;
    max-height: 800px;
    min-height: 750px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.promo-pro .align-logos {
    padding: 10px 0 0 0;
    position: relative;
    display: block;
}

.promo-pro .align-logos .row {
    align-items: center;
}

.promo-pro .logo_vocea {
    max-width: 200px;
    width: 100%;
}

#triangle-1 {
    width: 0;
    height: 0;
    border-bottom: 10vw solid #fff;
    border-right: 100vw solid transparent;
    float: left;
}

#triangle-2 {
    width: 0;
    height: 0;
    border-bottom: 10vw solid #fff;
    border-left: 100vw solid transparent;
}

#triangle-holder {
    position: absolute;
    bottom: 0;
}

.logo-protv {
    width: 120px;
}

.logo-superstar {
    width: 120px;
}

.headlineTitle {
    display: block;
    position: absolute;
    margin-top: 50px;
    left: 12%;
}

.main-hero-stage {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
}

.scena-kaufland {
    position: absolute;
    bottom: 40px;
}

.card-kaufland {
    position: absolute;
    left: 38%;
    bottom: -85px;
}

.hero-wave {
    overflow: hidden;
    position: absolute;
    bottom: -70px;
    width: 100%;
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}

.main-headline {
    height: auto !important;
    padding: 40px 0;
}

.hero-main-title {
    font-size: var(--h1-size);
    font-family: var(--headings-font);
}

.hero-main-title strong,
.hero-paragraph strong {
    font-family: var(--headings-font);
    font-size: 1.1em;
}

.hero-paragraph {
    font-size: var(--paragraph-size);
    font-family: var(--main-font);
    line-height: 1.1em;
}

.premii {
    height: auto;
    position: relative;
    display: block;
    padding: 40px 0;
    /* background-color: var(--superbet-purple); */
}

.premii h2 {
    font-family: var(--headings-font-black);
    text-transform: var(--heading-text-transform);
    font-size: var(--big-text);
    color: var(--black);
    padding-bottom: 1em;
    padding-top: 1em;
    position: relative;
    z-index: 3;
}

.img-wrapper {
    max-width: 400px;
    position: relative;
    margin: 0 auto;
}

.img-wrapper span {
    position: absolute;
    font-size: 200px;
    font-family: "SuperbetSans Black";
    top: -30px;
    right: -10px;
    letter-spacing: -10px;
    color: var(--superbet-red);
    width: 200px;
    height: 200px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 4px 4px 2px;
    margin-bottom: 25px;
    border: solid;
}

.premii h3 {
    font-size: 50px;
    text-align: center;
    font-family: "SuperbetSans Bold";
    line-height: 45px;
    letter-spacing: -2px;
}

/* Select concurent */

.blue-ring {
    /* border: solid 2px var(--white); */
    border-radius: 50%;
    width: 196px;
    height: 196px;
    overflow: hidden;
    margin: auto;
}

.red-ring {
    /* border: solid 3px var(--white); */
    border-radius: 50%;
    height: 196px;
    overflow: hidden;
}

.white-ring {
    border: solid 5px var(--white);
    border-radius: 50%;
    height: 196px;
    overflow: hidden;
}

#selectConcurent {
    text-align: center;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.answers {
    margin: 20px;
    display: inline-block;
}

.answers .custom-radio {
    text-align: center;
    text-transform: uppercase;
    padding: 0;
}

.answers .custom-control-description {
    color: var(--black);
    position: relative;
    margin: 15px auto;
    width: 100%;
    text-align: center;
    display: block;
    text-transform: var(--heading-text-transform);
}

.answers input[type="checkbox"],
input[type="radio"] {
    visibility: hidden;
}

.answers .selected {
    box-shadow: 0px 0px 0px 5px #ee1d26;
}

.img-concurent {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    border-radius: 50%;
    height: 100%;
    margin-bottom: 20px;
    margin: 0 auto;
}

/* end select concurent */

.content-formular {
    /* background-color: var(--light-blue);
    padding: var(--block-padding); */
}

.form-subtitle {
    position: absolute;
    top: 80px;
    left: 70px;
    font-size: 250px;
    font-weight: 900;
    color: #ccc;
}

.content-formular .container {
    max-width: 1280px;
}

.form-main-title,
.form-title {
    font-family: var(--headings-font-black);
    text-transform: var(--heading-text-transform);
    font-size: var(--big-text);
    color: var(--black);
    padding-bottom: 1em;
    padding-top: 1em;
    position: relative;
    z-index: 3;
}

.vot-concurent {
    font-family: var(--main-font);
    font-size: var(--paragraph-size);
    color: var(--white);
}

.form-section {
    display: block;
    height: auto;
    overflow: hidden;
    background-color: var(--tchibo-color-30rule);
    background-image: linear-gradient(
        top,
        var(--tchibo-color-60rule) 400px,
        var(--tchibo-color-30rule) 400px
    );
    background-image: -moz-linear-gradient(
        top,
        var(--tchibo-color-60rule) 400px,
        var(--tchibo-color-30rule) 400px
    );
    background-image: -webkit-linear-gradient(
        top,
        var(--tchibo-color-60rule) 400px,
        var(--tchibo-color-30rule) 400px
    );
}

.e-container {
    position: relative;
    margin: 0 auto;
    margin-bottom: 0px;
    background-color: #f0f0f0;
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    object-fit: contain;
    object-position: center;
    border: 5px solid transparent;
}

.e-container img {
    object-position: center;
    padding: 40px;
}

.bordered-m {
    border-radius: 10px;
    overflow: hidden;
    object-fit: contain;
    object-position: center;
    border: 5px solid transparent;
}

.bordered-m .active {
    border: solid 5px var(--tchibo-color-10rule);
    border-radius: 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.b-container {
    border-radius: 10px;
    overflow: hidden;
    object-fit: contain;
    object-position: center;
    border: 5px solid transparent;
}

.b-container .active {
    border: solid 5px var(--tchibo-color-10rule);
    border-radius: 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.videoembed {
    display: flex;
    width: 100%;
    height: auto;
    min-height: 300px;
    background-size: 100%;
    background: var(--white);
    background: linear-gradient(
        to top,
        var(--white) 50px,
        var(--tchibo-color-60rule) 50px,
        var(--tchibo-color-60rule) 90%,
        var(--white) 90%
    );
}

.section__contain_iframe {
    max-width: 50vw;
    width: 100%;
    display: block;
}

.iframe-container {
    width: 100%;
    margin: 0;
    display: block;
    overflow: hidden;
    /* 16:9 aspect ratio */
    padding-top: 56.25%;
    position: relative;
}

.iframe-container iframe {
    position: absolute;
    border: 0;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.produse {
    width: 100%;
    height: auto;
    background: var(--white);
    background: linear-gradient(
        to top,
        var(--white) 100px,
        var(--tchibo-color-60rule) 100px,
        var(--tchibo-color-60rule) 90%,
        var(--white) 90%
    );
}

.display-mobile {
    display: none;
}

.display-desktop {
    display: flex;
}

.scrollbar {
    overflow: auto;
    overflow-x: scroll;
    overflow-y: hidden;
    scroll-snap-type: y mandatory;
    scroll-padding: 1rem;
}

#black-style::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    height: 8px;
    background-color: var(--light-blue);
}

#black-style::-webkit-scrollbar {
    height: 10px;
    border-radius: 12px;
    background-color: var(--black);
}

#black-style::-webkit-scrollbar-thumb {
    border-radius: 12px;
    -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
    background-color: var(--darker-blue);
}

.castigatori {
    background: rgb(116, 177, 211);
    background: linear-gradient(
        145deg,
        rgba(116, 177, 211, 1) 0%,
        rgba(109, 86, 148, 1) 85%,
        rgba(27, 20, 78, 1) 100%
    );
    height: auto;
    display: block;
    padding: 40px 0;
}

.castigatori h2 {
    font-family: var(--headings-font);
    font-size: var(--h2-size);
    text-transform: var(--heading-text-transform);
    color: var(--white);
    margin-bottom: 20px;
}

.castigatori h4 {
    font-family: var(--main-font);
    font-size: var(--h4-size);
    color: var(--white);
}

.titlu-formular-2 {
    font-family: var(--main-font);
    font-size: var(--h2-size);
    color: var(--black);
    text-align: center;
    padding: 40px 0;
}

.titlu-formular-2 ul.lista-castigatori-concurs {
    list-style: none;
}

.titlu-formular-2 ul.lista-castigatori-concurs li{
    font-size: .8em;
    padding: 10px;
}
.footer a:hover {
    background-color: transparent;
}

/*------------------------------------------------
    MODAL
------------------------------------------------*/
.modal {
    padding: 0 !important;
    margin: 0;
}

.modal-open {
    padding: 0 !important;
    margin: 0 !important;
}

.modal-dialog {
    max-width: 500px;
    top: 50%;
    left: 0;
    position: relative;
    width: auto;
    pointer-events: none;
    transform: translate(0%, -50%) !important;
}

.modal-header {
    border-bottom: 0px;
}

@media (max-width: 1920px) {
    .heading-two {
        padding: 5em;
    }
}

@media (max-width: 1440px) {
    .heading-two {
        padding: 2.6em;
    }
}

@media (max-width: 1024px) {
    .navbar-nav {
        margin-right: 0.4rem !important;
    }

    #selectConcurent {
        grid-template-columns: repeat(2, 1fr);
    }

    .heading-two {
        padding: 0.5em;
    }
}

@media screen and (max-width: 992px) {
    .form-main-title, .form-title {
        font-size: var(--mobile-heading);
    }
    .form-subtitle {
        top: 70px;
        left: 10px;
        font-size: 120px;
    }
    .premii h3 {
        font-size: 40px;
        line-height: 32px;
    }
    .img-wrapper span {
        font-size: 100px;
        width: 150px;
        height: 150px;
    }
    .hero-container h2 {
        font-size: 35px;
    }
}

@media (max-width: 768px) {
    :root {
        --main-font-size: 16px;
        --block-margin: 10px;
        --block-padding: 15px;
        --heading-one-size: 1.75em;
        --heading-two-size: 1.35em;
        --heading-three-size: 1em;
        --heading-color: #fff;
        --heading-line-height: 1.2;
    }

    .display-mobile {
        display: flex;
    }

    .display-desktop {
        display: none;
    }

    .navbar-brand {
        position: relative;
        left: 0;
    }

    .full-width,
    .produse .full-width {
        left: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
        position: relative;
        right: 50%;
        width: 100vw;
        max-height: 400px;
        margin-bottom: var(--block-margin);
    }

    .produse .full-width img {
        width: 100vw;
    }

    .premii__bg {
        max-width: 100%;
    }

    .image-form {
        position: relative;
        max-width: 100%;
        padding-left: 0;
        top: auto;
        right: auto;
        display: block;
        margin: 0 auto;
    }

    .navbar-brand svg {
        max-width: 150px;
    }

    .form-section {
        background-image: linear-gradient(
            top,
            var(--tchibo-color-60rule) 600px,
            var(--tchibo-color-30rule) 600px
        );
        background-image: -moz-linear-gradient(
            top,
            var(--tchibo-color-60rule) 600px,
            var(--tchibo-color-30rule) 600px
        );
        background-image: -webkit-linear-gradient(
            top,
            var(--tchibo-color-60rule) 600px,
            var(--tchibo-color-30rule) 600px
        );
    }

    .videoembed {
        background: var(--tchibo-color-60rule);
        display: block;
        min-height: 60vh;
    }

    .section__contain_iframe {
        max-width: 100%;
        overflow: hidden;
    }

    .card-kaufland {
        width: 70%;
        bottom: -30px;
    }

    .scena-kaufland {
        bottom: 80px;
    }

    .navbar-collapse {
        background-color: var(--superbet-red);
        padding-top: 2rem;
        padding-bottom: 2rem;
        top: 70px;
        position: absolute;
        left: 15px;
        width: calc(100% - 30px);
        text-align: center;
        z-index: 10;
    }

    .nav-item a:hover {
        background: transparent;
    }

    .answers {
        margin: 20px 0;
    }
}

@media (max-width: 650px) {
    .promo-pro {
        min-height: 650px;
    }

    .hero-text {
        font-size: 25px;
    }

    .titlu-formular-2 {
        font-size: 28px;
    }


    .navbar-brand,
    .headlineTitle {
        position: relative;
        left: 0;
    }

    .hero-main-title {
        font-size: 2.2rem;
    }

    .headlineTitle {
        margin: 0 auto;
        margin-top: 40px;
    }

    .card-kaufland {
        bottom: 6%;
        left: 45%;
    }

    .scena-kaufland {
        margin: 70px 0;
        bottom: 0;
        left: -40px;
    }

    .form-main-title {
        font-size: 30px;
    }

    #selectConcurent {
        grid-template-columns: repeat(1, 1fr);
    }

    .premii img {
        width: 100%;
    }

    footer {
        overflow-x: hidden;
    }

    .container-footer .navbar-nav {
        flex-direction: column !important;
    }
}

@media (max-width: 360px) {
    .answers .custom-radio {
        margin: 0;
    }
}

@media (max-width: 320px) {
    .content-formular .container {
        padding-left: 0;
        padding-right: 0;
    }
}

/* modal pop-up inscriere */

.modal-header,
.modal-footer {
    border: none;
}

.modal-content {
    border-radius: 15px;
}

.modal-header .check-close {
    position: absolute;
    font-size: 24px;
    color: var(--tchibo-color-60rule);
    opacity: 1;
    right: 32px;
    top: 25px;
    padding: 0;
}

.winners {
    color: var(--tchibo-darkgold);
}

.fb-share-button,
.fb-share-button > span,
.fb-share-button > span iframe {
    width: 100px !important;
    height: 30px !important;
}

.fb_iframe_widget {
    position: relative !important;
    margin: 0 auto !important;
    margin-left: 192px !important;
}