/*
    Copyright PRO TV S.A. All rights reserved.
    Contact: @protv.ro
*/
@import url("reset.css");
@import url("bootstrap.min.css");
/*
  GLOBAL VARS
*/
:root {
    --background-color: #423d38;
    --block-margin: 15px;
    --block-padding: 40px;
    --h1-size: 2rem;
    --h2-size: 1.75rem;
    --h4-size: 1.65rem;
    --paragraph-size: 1rem;
    --line-height: 1.45;
    --text-uppercase: uppercase;
    /* Fonts: */
    --ff: "Roboto", sans-serif;
    --fg: 'Gotham', sans-serif;
    --ff-weight-500: 500;
    --ff-weight-700: 700;
    --fg-weight-500: 500;
    --ff-rbt: "Bull Text", sans-serif;
    --ff-rb: "Bull", sans-serif;

    /* Colors: */
    --form-text-color: #202020;
    --selection-color: #205905;
    --color-60rule: #122508;
    --color-30rule: #d7cbbc;
    --color-10rule: #658a61;
    --untold-gold: #FFCE8A;
    --redbull-blue: #2C4B9A;
    --voyo-red: #F40F4C;
    --redbull-red: #d2003c;
    --white: #ffffff;
    --black: #000000;
}

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-Bold.eot');
    src: url('../fonts/Gotham-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Gotham-Bold.woff2') format('woff2'),
        url('../fonts/Gotham-Bold.woff') format('woff'),
        url('../fonts/Gotham-Bold.ttf') format('truetype'),
        url('../fonts/Gotham-Bold.svg#Gotham-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Bull Text';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('https://static-cosmos.redbull.com/foundation/latest/fonts/v5.001/BullText-Regular.woff2') format('woff2'),
      url('https://static-cosmos.redbull.com/foundation/latest/fonts/v5.001/BullText-Regular.woff') format('woff');
  }
  
  @font-face {
    font-family: 'Bull Text';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('https://static-cosmos.redbull.com/foundation/latest/fonts/v5.001/BullText-Medium.woff2') format('woff2'),
      url('https://static-cosmos.redbull.com/foundation/latest/fonts/v5.001/BullText-Medium.woff') format('woff');
  }
  
  @font-face {
    font-family: 'Bull Text';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('https://static-cosmos.redbull.com/foundation/latest/fonts/v5.001/BullText-Bold.woff2') format('woff2'),
      url('https://static-cosmos.redbull.com/foundation/latest/fonts/v5.001/BullText-Bold.woff') format('woff');
  }
  
  @font-face {
    font-family: 'Bull';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('https://static-cosmos.redbull.com/foundation/latest/fonts/v5.001/Bull-Bold.woff2') format('woff2'),
      url('https://static-cosmos.redbull.com/foundation/latest/fonts/v5.001/Bull-Bold.woff') format('woff');
  }
  
  @font-face {
    font-family: 'Bull';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url('https://static-cosmos.redbull.com/foundation/latest/fonts/v5.001/Bull-Heavy1.woff2') format('woff2'),
      url('https://static-cosmos.redbull.com/foundation/latest/fonts/v5.001/Bull-Heavy1.woff') format('woff');
  }
  
  @font-face {
    font-family: 'Bull VF';
    font-style: normal;
    font-weight: 300 800;
    font-display: swap;
    src: url('https://static-cosmos.redbull.com/foundation/latest/fonts/v5.001/BullVAR.woff2') format('woff2-variations'),
      url('https://static-cosmos.redbull.com/foundation/latest/fonts/v5.001/BullVAR.woff2') format('woff2');
  }


/* GENERAL */

*,
*:after,
*:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    transition: all 0.2s ease-in;
}

*:focus {
    outline: none !important;
    transition: all 0.2s ease-in;
}
html,
body {
    height: 100%;
    width: 100%;
}

body {
    scrollbar-width: thin;
    scrollbar-color: var(--color-10rule) var(--color-60rule) !important;
    overflow-x: hidden !important;
    overflow-y: auto;
    margin: 0;
    background-color: var(--black);
    font-family: var(--ff);
    font-size: var(--main-font-size);
    font-weight: var(--ff-weight-500);
    color: var(--color-60rule);
}

a {
    color: var(--voyo-red);
}
a:hover,
a:focus {
    color: var(--redbull-blue);
}

section {
    margin: 0;
    padding: 0;
    width: 100%;
    display: block;
    position: relative;
    overflow: hidden;
}
.promo {
    padding-top: 0;
    background-image: url("../img/bg-hero.png");
    background-position: center;
    background-repeat: no-repeat;
    background-color: white;
    background-size: cover;
}

.first-screen {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}


.logo-redbull img {
    width: 100%;
    max-width: 360px;
    display: block;
    margin: 0 auto;
}

.headline-redbull {
    font-size: 20px;
    margin-top: 20px;
    color: var(--redbull-red);
    text-transform: uppercase;
    font-weight: 700;
}

.logo-voyo div {
    width: 100%;
    max-width: 180px;
    display: block;
    margin: 0 auto;
    padding: 20px 0;
}

.logo-voyo-svg path {
    fill: #6f5ee1;
}

.img-battle-redbull {
    width: 100%;
    max-width: 360px;
    height: 100%;
    display: block;
    margin: 0 auto;
    margin-top: 20px;
}

.headline {
    padding-block: 4vh;
}

.hero-title-text {
    position: relative;
    display: block;
    margin: 0 auto;
    background: rgba(2, 31, 71, .8);
    margin: 20px auto;
    width: 100%;
    max-width: 850px;
}

.hero-title {
    font-size: 22px;
    line-height: 1.3;
    margin: 0 auto;
    font-family: var(--ff-rb);
    font-weight: bold;
    padding: 15px;
    color: var(--white);
}
.hero-paragraph {
    font-size: var(--h2-size);
    padding: 0;
    color: var(--redbull-red);
}

.titlu-formular-2 {
    text-align: center;
    color: white;
    padding: 40px;
}

.intrebare-formular .voyo-element-1 {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0 auto;
}

.voyo-element-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    margin: 0 auto;
}

.voyo-element-2 img {
    width:100%;
    max-width: 400px;
    display: block;
}

.intrebare-form {
    position: relative;
    display: block;
    margin: 0 auto;
}

.intrebare-form h2.intrebare-redbull {
    font-family: var(--ff-rb);
    font-weight: 800;
    font-size: 20px;
    color: #ffffff;
    max-width: 450px;
    text-align: center;
    margin: 0 auto;
    padding: 40px;
}

.intrebare-form img {
    width: 100%;
    max-width: 700px;
    display: block;
    margin: 0 auto;
}

.form-title {
    padding: 40px 0 0;
}

/* END GENERAL */

/*  FORM */
.container-formular {
    background-color: transparent;
}

.formular {
    max-width: 600px;
    margin: 0 auto;
    padding-bottom: 5vh;
    /*
    box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    position: relative;
    z-index: 1;
    background: inherit;
    overflow: hidden;
}

.formular:before {
    content: "";
    position: absolute;
    background: inherit;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    box-shadow: inset 0 0 2000px rgba(255, 255, 255, 0.5);
    filter: blur(10px);
    margin: -20px;*/
}
.form-group,
.form-group label,
.form-group label span {
    color: var(--form-text-color);
}
.form-group label {
    margin-bottom: 0.1rem;
}

.row-checkbox {
    margin: 15px auto 10px;
}
.row-checkbox + .row-checkbox {
    margin-top: 1px;
}

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

#text-errors {
    color: var(--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;
}

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

.form-control {
    background-color: rgba(255, 255, 255, 0.17);
    border: 2px solid var(--voyo-red);
    color: var(--white);
	text-transform: none;
    width: 100%;
    height: 50px;
    padding: 4px 10px;
    border-radius: 10px;
    box-sizing: border-box;
    letter-spacing: 1px;
    box-shadow: inset 0px 7px 12px 0px rgba(0, 0, 0, 0.22);
}
input:not(:placeholder-shown) {
    border: 2px solid var(--voyo-red);
    color: var(--white)
}

input:focus {
    outline: 0;
}

.submitButton {
    border: 0;
    border-radius: 0;
    background-color: var(--voyo-red);
    text-transform: var(--text-uppercase);
    text-align: center;
    font-size: var(--h2-size);
    color: var(--white);
    font-weight: var(--ff-weight-700);
    font-family: var(--headings-font);
    padding-left: calc(2 * var(--block-padding));
    padding-right: calc(2 * var(--block-padding));
    border-radius: 40px;
}

.submitButton:hover {
    color: var(--black);
    background-color: var(--redbull-blue);
    border: 2px solid var(--redbull-blue);
}

.form-group label {
    color: var(--white);
}

.form-group label span {
    color: var(--white);
}

.info {
    color: var(--white);
    font-size: calc(var(--h2-size) / 2);
    font-weight: lighter;
    font-family: "Roboto", Helvetica, sans-serif;
}

.reminder-class {
    color: var(--white);
    font-size: calc(var(--h2-size) / 2);
    font-weight: lighter;
    font-family: "Roboto", Helvetica, sans-serif;
    padding: 40px 0;
}

.reminder-class strong {
    color: var(--voyo-red);
}

.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;
}

.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: rgba(255, 255, 255, 0.17);
    border: 2px solid var(--voyo-red);
    box-shadow: inset 0px 7px 12px 0px rgba(0, 0, 0, 0.22);
    border-radius: 10px;
    width: 38px;
    height: 38px;
    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,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyOSIgaGVpZ2h0PSIyOSI+CiAgPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBmaWxsPSIjRkZGIiBkPSJNMTYuMzE0IDE0LjEwNiAyNy45NSAyNS43NDJjLjE3LjIyNi4yNTUuNDgxLjI1NS43NjQgMCAuMjgzLS4wODUuNjU0LS4yNTUuNjhsLS43NjUuNzY0Yy0uMDM1LjE3LS4zOTYuMjU1LS42NzkuMjU1LS4yODMgMC0uNTM4LS4wODUtLjc2NS0uMjU1TDE0LjEwNiAxNi4yMyAyLjQ3MSAyNy45NWExLjI0IDEuMjQgMCAwIDEtLjc2NC4yNTVjLS4yODMgMC0uNTEtLjA4NS0uNDM3LS4yNTVsLTEuMDA3LS43NjRjLjY2Ny0uMDI2LjUzNy0uMzk3LjUzNy0uNjggMC0uMjgzLjEzLS41MzgtLjUzNy0uNzY0bDExLjcyLTExLjYzNkwuMjYzIDIuNDcxQy45MyAyLjI0NS44IDEuOTkuOCAxLjcwN2MwLS4yODMuMTMtLjUxLS41MzctLjQzN0wxLjI3LjI2M0MxLjE5Ny45MyAxLjQyNC44IDEuNzA3LjhjLjI4MyAwIC41MzguMTMuNzY0LS41MzdsMTEuNjM1IDExLjYzNUwyNS43NDEuMjYzYy4yMjcuNjY3LjQ4Mi41MzcuNzY1LjUzNy4yODMgMCAuNjQ0LjEzLjY3OS0uNTM3bC43NjUgMS4wMDdjLjE3LS4wNzMuMjU1LjE1NC4yNTUuNDM3IDAgLjI4My0uMDg1LjUzOC0uMjU1Ljc2NEwxNi4zMTQgMTQuMTA2WiIvPgo8L3N2Zz4K");
    background-color: var(--color-30rule);
    border: 2px solid var(--color-60rule);
}

.text-success {
    color: #6722ff;
}

/* END FORM */

/* MODAL */
.modal {
    padding: 0 !important;
    margin: 0;
}
.modal-open {
    padding: 0 !important;
    margin: 0 !important;
}
.modal-dialog {
    max-width: 800px;
    top: 50%;
    left: 0;
    position: relative;
    width: auto;
    pointer-events: none;
    transform: translate(0%, -50%) !important;
}
.modal-header {
    border-bottom: 0px;
}
.modal-body {
    font-size: var(--h1-size);
    color: var(--color-60rule);
}
.text-success {
    color: var(--form-text-color);
}
.check-close {
    width: 30px;
}
.check-close svg {
    display: inline-block;
    width: 30px;
    aspect-ratio: 1;
}
.modal-header .close {
    padding: 1rem 0rem;
    margin: -1rem 0.5rem -1rem auto;
}

.modal-content {
    background-color: rgba(30, 30, 30, 0.97);
    border: 2px solid #6722ff;
}

.alerts .text-success {
    font-size: 18px !important;
    text-align: left !important;
    color: white !important;
    line-height: 1.6 !important;
}

/* FOOTER REDBULL */
.footer-redbull {
    background-image: url("../img/bg-footer.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 80px 0;
}

.footer-redbull h3 {
    color: var(--white);
    font-size: 25px;
    font-family: var(--ff-rb);
    font-weight: 800;
    text-transform: uppercase;
    margin: 20px;
    display: inline-block;
    padding: 10px;
}

.redbull-location {
    background: rgba(2, 31, 71, .5);
    display: inline-block;
    margin: 0 auto;
}

.footer-redbull .logo-square {
    width:100%;
    max-width: 150px;
    display: inline-block;
    margin: 20px auto;
}

.logo-voyo-footer {
    max-width: 120px;
    display: inline-block;
    margin: 20px 10px;
    padding: 10px;
}
.logo-redbull-footer {
    max-width: 120px;
    display: inline-block;
    margin: 20px 10px;
    padding: 10px;
}

.footer-redbull .redbull-location a {
    color: var(--redbull-gold);
}

.footer-redbull .redbull-location span {
    color: var(--white);
}

#tapad_url {
    display: none;
}

/* END MODAL */
@media screen and (max-width: 1024px) {}

@media screen and (max-width: 810px) {
    .hero-title {
        font-size: 1.4rem;
    }

    .voyo-element-1 {
        width: 22%;
    }
    .voyo-element-2 {
        width: 35%;
    }
}

@media screen and (max-width: 560px) {
    section {
        background-color: transparent;
    }

    .promo {
        padding-top: 0;
        background-image: url("../img/bg-hero-m.png");
        background-position: bottom;
        background-repeat: no-repeat;
        background-size: contain;
        height: 112vh;
    }
    .first-screen {
        align-items: baseline;
    }

    .hero-title {
        font-size: 1rem;
    }
    .headline-redbull {
        font-size: 16px;
    }
    .voyo-element-1 {
        width: 12%;
    }
    .voyo-element-2 {
        width: 25%;
    }
    .logo-voyo div {
        max-width: 100px;
        padding: 20px 0 0 0;
    }
    .logo-redbull img {
        max-width: 150px;
    }
    .hero-paragraph {
        margin-bottom: 0;
    }
    .img-battle-redbull {
        max-width: 240px;
    }
}
