/*
    Copyright PRO TV S.A. All rights reserved.
    Contact: @protv.ro
*/
@charset "utf-8";

/*
        INCLUDES
*/
@import "reset.css";
@import "bootstrap.min.css";
@import "animate.css";
@import "fontawesome-all.min.css";
@import "dropzone.min.css";
@import "font-face.css";
@import "footer.css";

/* FONTS */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&display=swap');

/* GENERAL */
:root {
  --background-color: #423D39;
  --main-font: 'Haffer', "Montserrat", Helvetica, sans-serif;
  --main-font-size: 18px;
  --header-font: 'MD Nichrome Trial Dark', "Montserrat", Helvetica, sans-serif;
  --block-margin: 20px;
  --block-padding: 40px;

  /* Colors: */
  --betano-dark: #0F0F23;
  --betano-pink: #FF0078;
  --betano-orange: #FF3C00;
  --betano-egg-white: #FAF5F0;
  --slate-grey: #25282B;
  --space-grey: #ccc;
  --white: #ffffff;
  --black: #000000;

  /* Fonts */
  --h1-title: 1.6rem;
  --h2-section-title: 3.4rem;
  --h3-title: 1.9rem;
  --p-rule: 1.2rem;
}

::placeholder {
    color: rgba(var(--white), 1) !important;
}

:-ms-input-placeholder {
    color: rgba(var(--white), 1) !important;
}

::-ms-input-placeholder {
    color: rgba(var(--white), 1) !important;
}

/* General Styles */
body::-webkit-scrollbar {
    width: 0px;
  }

  body::-webkit-scrollbar-track {
    background: var(--slate-grey);
  }

  body::-webkit-scrollbar-thumb {
    background-color: var(--casapariurilor-red);
    border-radius: 6px;
    border: 3px solid var(--casapariurilor-red);
  }

/* GENERAL */

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

*:focus {
  outline: none !important;
  transition: all .2s ease-in;
}

html,
body {
  height: 100%;
  width: 100%;
  position: relative;
  height: -webkit-fill-available;
  -webkit-overflow-scrolling: touch;
  overflow-x: hidden !important;
  overflow-y: auto;
  margin: 0;
  padding: 0;;
}

body {
  background: var(--rockstar-black);
  font-family: 'Haffer';
  font-size: 1rem;
  font-weight: normal;
  color: var(--slate-grey);
}

a {
  color: var(--casapariurilor-red);
}
a:hover,
a:focus {
  color: var(--slate-grey);
}

main {
    width: 100%;
    min-height: 500px;
    position: relative;
    padding: 0;
    margin: 0;
}

.container {
    max-width: 1000px;
}


/*Navigation styles */
.casapariurilor-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.casapariurilor-nav .nav-item a {
  font-family: 'Haffer';
  font-weight: 500;
  text-transform: uppercase;
  font-size: 1rem;
  color: var(--slate-grey);
  padding: 9px 20px;
}

.hero .nav-item a {
    font-family: 'Haffer';
    font-weight: 500;
    text-transform: uppercase;
    font-size: 1rem;
}

.casapariurilor-nav .navbar-nav > li > a::after {
  content:'';
  display: block;
  width:0;
  height: 3px;
  background: var(--casapariurilor-red);
  transition: width .3s;
}

.casapariurilor-nav .navbar-nav > li > a:hover::after {
  width:100%;
  background: var(--casapariurilor-red);
  font-weight: 500;
}

.casapariurilor-nav .navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
  color: var(--casapariurilor-red)
}

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

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

.navbar-toggler {
  /* background-color: var(--slate-grey); */
  border: none;
  outline: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.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(--casapariurilor-red);
}

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

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

.navbar-collapse {
  justify-content: center;
}

.navbar-brand {
  position: relative;
  display:block;
  margin: 0 auto;
}

.nav-vdf-section {
    width: 100%;
    background-color: var(--white);
    display: block;
    margin: 0 auto;
}

.casapariurilor-nav .logo-vdf-business {
    width: 100%;
    max-width: 130px;
    display: block;
}

.casapariurilor-nav .logos-protv {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
}

.casapariurilor-nav .logos-protv .logo-imperiulleilor {
    width: 100%;
    max-width: 200px;
    display: block;
    margin-right: 15px;
}

.casapariurilor-nav .logos-protv .logo-protv {
    width: 100%;
    max-width: 100px;
    display: block;
}

/* HERO SECTION */

.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    background-image: url('../img/header-hero.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    flex-direction: column;
}

.hero h1 {
    font-family: 'MD Nichrome Trial Dark';
    font-weight: 500;
    font-size: 2.625rem;
    padding-bottom: 40px;
    color: white;
}

.main-logos {
    padding: 40px;
}
.hero .main-logos .logo-sdpf {
    max-width: 190px;
    margin-right: 20px;
}
.hero .main-logos .logo-cp {
    margin-left: 20px;
    max-width: 250px;
}

.hero .navbar {
    margin: 0 auto;
}

.hero .navbar-nav {
    display: flex;
    flex-direction: row;
    width: 100%;
    margin: 0 auto;
    grid-gap: 20px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 5px;
}

.hero .navbar-nav .nav-link {
    color: var(--white);
    text-transform: uppercase;
    font-weight: bold;
}

.hero .navbar-nav .nav-link.active,
.hero .navbar-nav .nav-link:hover,
.hero .navbar-nav .nav-link:focus {
    color: var(--white);
    text-decoration: underline;
    text-underline-offset: 10px;
}

@media(max-width: 500px) {
    .hero {
        background-image: url('../img/img-hero-m.webp');
    }
    .hero h1 {
        font-size: 1.7rem;
        padding: 1rem;
    }
    .main-logos {
        padding: 1rem;
        display: flex;
        flex-direction: column;
        grid-gap: 20px;
        justify-content: center;
        align-items: center;
    }
    .hero .main-logos .logo-sdpf {
        max-width: 200px;
        margin: 0 auto;
    }
    .hero .main-logos .logo-cp {
        max-width: 200px;
        margin: 0 auto;
    }
}

/* SUBHERO SECTION */

.subhero {
    height: 340px;
}
.subhero-h2 {
    font-family: 'ITC Serif Gothic Std';
    font-size: 24px;
    text-align: center;
    height: 140px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.subhero .premii {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
    background-image: url('../img/bg-cp.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.subhero .container-premii img {
    max-width: 200px;
}
.subhero .container-premii {
    width: 1000px;
    padding: 0px 15px;
    max-width: 1000px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media(max-width: 500px) {
    .subhero {
        height: 100%;
    }
    .subhero .premii {
        background-image: url('../img/bg-cp-m.webp');
        margin: 25px auto;
    }
    .subhero-h2 {
        margin-top: 20px;
        font-size: 18px;
    }
    .subhero-h2 {
        height: 90px;
    }
    .subhero .premii {
        height: 300px;
    }
    .subhero .container-premii {
        flex-direction: column;
    }
    .subhero .container-premii img {
        padding: 10px;
    }
}

/* VIDEO VOTING SECTION */
.video-voting {
    padding: 40px 0;
    background-color: var(--betano-dark);
}
.video-voting h2 {
    font-family: 'Haffer';
    font-weight: normal;
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 0;
    color: var(--white);
}
@media(max-width: 500px) {
    .video-voting h2 {
        font-size: 1.5rem;
    }
}

.carousel-concurs {
    background-color: var(--betano-dark);
    padding-bottom: 40px;
}


/* casapariurilor Section */
.casapariurilor-explained {
    display: block;
    margin: 0 auto;
    background-color: rgb(230,0,0);
    background-image: var(--casapariurilor-gradient);
    padding: 40px 0;
}

.casapariurilor-explained h1 {
    font-family: 'ITC Serif Gothic Std';
    font-size: 2rem;
    font-weight: 700;
    text-transform: none;
    color: var(--white);
    opacity: 1;
    margin-bottom: 30px;
    margin-top: 0px;
}

.casapariurilor-explained h2 {
    font-family: 'ITC Serif Gothic Std';
    font-size: 1.375rem;
    font-weight: 400;
    text-transform: none;
    color: var(--white);
    opacity: 1;
}

.casapariurilor-explained h2:first-of-type {
    margin-bottom: 30px;
}

.casapariurilor-explained h2 strong {
    font-family: 'ITC Serif Gothic Std';
    font-weight: 700;
}

/* Contest Section */
.casapariurilor-contest {
    display: block;
    margin: 0 auto;
    background-color: var(--slate-grey);
    padding: 40px 0;
}

.casapariurilor-contest h3 {
    font-family: 'ITC Serif Gothic Std';
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: none;
    color: var(--white);
    opacity: 1;
}

.vdf-panel-explained {
    width: 100%;
    max-width: 500px;
    background-color: var(--white);
    border-radius: 6px;
    padding: 30px;
    margin: 0 auto;
    text-align: left;
    margin-top: 20px;
}

.vdf-panel-explained ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.vdf-panel-explained ul li {
    font-family: 'ITC Serif Gothic Std';
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--slate-grey);
}

.vdf-panel-explained ul li strong {
    font-family: 'ITC Serif Gothic Std';
    font-weight: 700;
}

.vdf-panel-explained ul li::before {
    content: "\2022";
    color: var(--casapariurilor-aubergine);
    font-weight: bold;
    display: inline-block;
    width: 25px;
    height:25px;
    margin-left: -.5em; /* Also needed for space (tweak if needed) */
}

.carousel-casapariurilor {
    display: block;
    margin: 0 auto;
    background-color: var(--slate-grey);
    padding-bottom: 40px;
}

.carousel-business {
    margin: 0 auto;
    display: block;
    width: 100%;
    max-width: 1000px;
    position: relative;
}
/* .casapariurilor-item {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px 10px;
}*/

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
    background-color: var(--white)!important;
    padding: 10px;
    width: 50px;
    height: 50px;
    color: var(--betano-pink)!important;
    font-size: 20px!important;
}

.owl-carousel .owl-nav button.owl-next:hover,
.owl-carousel .owl-nav button.owl-prev:hover,
.owl-carousel button.owl-dot:hover {
    background-color: var(--betano-pink)!important;
    color:var(--white)!important;
}

/* .owl-theme .owl-nav {
    position: absolute;
    left:50%;
    top: 50%;
} */


/* Select concurent */
.blue-ring {
    /* border: solid 2px var(--white); */
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16/9;
    margin: 5px auto;
}

.red-ring {
    border: solid 3px var(--darker-blue);
    overflow: hidden;
}

.white-ring {
    border: solid 5px var(--light-blue);
    overflow: hidden;
}

#selectConcurent {
    text-align: center;
}

.item {
    display: block;
    width: 100%;
}

.item .custom-radio {
    text-align: center;
    text-transform: uppercase;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

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

.item .custom-control-description .casapariurilor-item-description h4 {
    font-family: 'Haffer';
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 1.3;
    text-align: center;
    color: var(--white);
    margin-top: 20px;
    margin-bottom: 20px;
}

.item .custom-control-description .casapariurilor-item-description h4 span {
    font-family: 'Haffer';
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.3;
    text-align: center;
    color: var(--white);
    text-transform: none;
}

.item .custom-control-description .casapariurilor-item-description h4 div {
    height: 26px;
}

.item .custom-control-description .casapariurilor-item-description p {
    font-family: 'ITC Serif Gothic Std';
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.3;
    text-align: center;
    color: var(--white);
}

.item .custom-control-description .casapariurilor-item-description .casapariurilor-voting {
    background-color: var(--betano-pink);
    color: var(--white);
    border-radius: 50px;
    text-transform: uppercase;
    font-size: 1.125rem;
    font-family: 'Haffer';
    font-weight: 600;
    outline: 0;
    box-shadow: none;
    border: none;
    padding: 10px 15px;
    margin: 0 auto;
    width: 100%;
    max-width: 150px;
    height: auto;
    text-align: center;
    align-self: center;
}

/* .item .custom-control-description .casapariurilor-item-description .casapariurilor-voting:hover {
    background-image: var(--casapariurilor-gradient);
} */

.item .selected {
    background-color: green!important;
}

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

.blue-ring iframe {
    width: 100%;
    aspect-ratio: 16/9;
}


/* Form Section */
.formular-vot {
    background-color: var(--betano-egg-white);
}
.formular {
    padding: 40px 0;
    display: block;
    margin: 0 auto;
    position: relative;
}

.formular h3 {
    font-family: 'MD Nichrome Trial Dark';
    font-size: 2.5rem;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--slate-grey);
    opacity: 1;
}

.dropzone {
    margin: 30px;
    background: rgba(var(--grey), 1);
    border: 1px solid rgba(var(--black), 0.02) !important;
}

.dropzone .dz-preview .dz-image {
    border-radius: 0 !important;
}

.dropzone .dz-preview.dz-image-preview {
    background: rgba(var(--grey), 1);
}

.dropzone.dz-started .dz-message {
    display: block;
}

.dropzone .dz-preview .dz-error-message {
    top: 30px;
}

.dropzone .dz-preview .dz-image img {
    margin: 0 auto;
}

.dropzone .dz-caption {
    font-size: .8rem;
    color: rgb(var(--subtitle-text-color));
    text-align: center;
}

.dropzone .dropzone_caption {
    width: 120px;
}

.dropzone .dz-preview .dz-success-mark,
.dropzone .dz-preview .dz-error-mark {
    top: 35%;
}

.btn-incarca {
    border-radius: 8px;
    background: rgba(var(--third-color), 1);
    color: rgba(var(--white), 1);
    text-transform: uppercase;
    width: 100%;
    max-width: 570px;
    height: 56px;
    padding: 15px;
}

.custom-control-description {
    font-size: 1rem;
    text-align: left;
    font-family: 'Haffer';
    font-weight: 500;
}

.custom-control-description a {
    color: var(--betano-pink);
    font-family: 'Haffer';
    font-weight: 600;
}

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

#results {
    color: #198754;
}

#error {
    color: #dc3545;
    padding: 15px 0;
    font-size: 20px;
    max-width: 60%;
    margin: 10px auto;
}

.info, .casapariurilor-premii p {
    font-family: 'Haffer';
    font-size: .9rem;
    font-weight: normal;
    color: var(--slate-grey);
    padding:15px 0;
}

.form-control {
    background: var(--white);
    color: var(--betano-dark);
    border-radius: 5px;
    border: 2px solid var(--betano-orange);
}

.form-control:focus {
    background: var(--betano-dark);
    color: var(--white);
    border: 2px solid var(--betano-pink);
    box-shadow: 0 0 0 .2rem rgba(100, 0, 47, .25);
}


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

.custom-controls-stacked .custom-control+.custom-control {
    margin-left: 0;
}

.custom-controls-stacked .custom-control {
    margin-bottom: .25rem;
}

label {
    font-family: 'Haffer';
    display: block;
    font-weight: 500;
    font-size: 1rem;
    color: var(--betano-dark);
    text-align: left;
}

label strong {
    font-weight: 700;
    color: var(--betano-pink);
}

label h4 {
    margin: 20px 0;
}

.custom-control {
    position: relative;
    display: block;
    min-height: 2rem;
    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 var(--space-grey);
}

.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;
    border: 1px solid var(--space-grey);
    border-radius: 3px;
    width: 28px;
    height: 28px;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: var(--white);
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: 70% 75%;
    background-size: 70% 75%;
}

.custom-radio .custom-control-input:checked~.custom-control-indicator {
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9Jy00IC00IDggOCc+PGNpcmNsZSByPSczJyBmaWxsPScjZmZmJy8+PC9zdmc+');
    background-color:var(--betano-orange);
    border: 1px solid var(--space-grey);
}

.custom-radio .custom-control-input:checked~.custom-control-indicator {
    color: var(--black);
    background-color:var(--betano-orange);
    border: 1px solid var(--space-grey);
}

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

.custom-checkbox .custom-control-input:checked~.custom-control-indicator {
    color: var(--betano-orange);
    background-color:var(--betano-orange);
    border: 1px solid var(--betano-orange);
}

.form-control {
    min-width: 100%;
}

.submitButton {
    font-family: 'Haffer';
    font-size: 1.325rem;
    font-weight: 600;
    color: var(--white);
    background-color: var(--betano-pink);
    padding-left: 25px;
    padding-right: 25px;
    border-radius: 30px;
    width: 100%;
    max-width: 440px;
    height: 56px;
    text-transform: uppercase;
}

.submitButton:hover {
    color: var(--white);
    background-color: var(--betano-orange)
}

.start-campaign {
    font-family: 'Haffer';
    font-size: 1.8rem;
    font-weight: 600;
    text-transform: none;
    color: var(--betano-dark);
    opacity: 1;
    padding: 50px 0 0;
}

.start-campaign a {
    color: var(--betano-pink);
}

@media(max-width: 500px) {
    .start-campaign {
        font-size: 1.2rem;
    }
}

/* PREMII */

section#premii {
    background-color: var(--betano-orange);
    padding: 40px 0;
}
section#premii h3 {
    font-family: 'MD Nichrome Trial Dark';
    font-weight: 500;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--white);
}
section#premii img {
    /* max-width: 200px; */
}

.premii-body h4 {
    font-family: 'Haffer';
    font-weight: 500;
    font-size: 1.25rem;
    text-align: center;
    margin: 0 auto;
}

.premii-body p {
    font-family: 'Haffer';
    font-weight: normal;
    font-size: 1rem;
    text-align: center;
    margin: 0 auto;
}

.info-premii {
    font-family: 'Haffer';
    font-weight: normal;
    font-size: .9rem;
    margin: 0 auto;
    padding-top: 20px;
    color: var(--white);
}

/* Castigatori section */
.castigatori {
    display: block;
    margin: 0 auto;
    position: relative;
    background: var(--casapariurilor-gradient);
    padding: 40px 0;
}

.castigatori h1 {
    font-family: 'ITC Serif Gothic Std';
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--slate-grey);
    padding-bottom: 30px;
    opacity: 1;
}

.castigatori .castigatori__bg {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.castigatori h2 {
    font-family: 'ITC Serif Gothic Std';
    font-size: 1.375rem;
    font-weight: 400;
    color: var(--slate-grey);
    opacity: 1;
    border-bottom: 1px solid var(--space-grey);
    padding: 6px;
}

/* Interviuri antreprenori section */

.interviuri-antreprenori {
    display: block;
    margin: 0 auto;
    background-color: var(--slate-grey);
    padding: 40px 0;
}

.interviuri-antreprenori h3 {
    font-family: 'ITC Serif Gothic Std';
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    padding-bottom: 40px;
    opacity: 1;
}

.interviuri-antreprenori iframe {
    width: 100%;
    max-width: 435px;
    height: auto;
    aspect-ratio: 16/9;
}

.interviuri-antreprenori h4 {
    font-family: 'ITC Serif Gothic Std';
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 1.3;
    text-align: center;
    color: var(--white);
    margin-top: 20px;
}

.premii-body {
    background-color: var(--white);
    border-radius: 10px;
    padding: 1rem;
    height: 100%;
    max-height: 470px;
}

@media screen and (max-width: 768px) {
    .navbar-toggler {
        margin: 0 auto;
    }

    .navbar-collapse {
        background-color: rgba(230, 0, 0, 0.7);
        padding-top: 2rem;
        padding-bottom: 2rem;
        top: 54px;
        position: fixed;
        left: 15px;
        width: calc( 100% - 30px);
        font-weight: bold;
        text-align: center;
        z-index: 50;
    }

    .navbar-toggler-icon {
        background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAcAAAAIABAMAAADnC6FpAAAAJ1BMVEX////mAADmAADmAADmAADmAADmAADmAADmAADmAADmAADmAADmAADE2ORCAAAADHRSTlMAEDBAUGCAoLDA0PDnWYbmAAADHklEQVR42u3dvWpUURSG4RONoCFFGhG0sbexUoQUXoJeg20asU1hLVMI3kCms5hGa4tAIA7jvigz8Xf8SZ83z3MHH8zsc87aa+81TQAAAAAAAAAAAAAAAABA2qM3I+D9i//Euz0bEcvn/8r3eIS8+jvfk5Hy7s98d0bMy818259qAb883Qh4OHI+/57v7gia/8p3bVEMuLr/M+CDkfTxR76tRTPgau97wJ0RNe8uoRsL6fbI+vYsvNcN+KH9C/3+G70+wh6eBbxVDvj2LOB+OeBJ+y94/ifcGml70412wGfTzXbA19NuO+BxexFdL6MH7YCn06wdcDkt2gFX04gTUEABBRRQwIsC5h/0+Ve1/Mt2/nMp/8GbL1nki075smG+8Nsv3ec3X/LbZ/kN0P4Wdr4JId9G0mzFWzu6Kq1c+Wa8fjtlviG239Lcb0rPHyvoHwzpH+3pH87qH68DAAAAAAAAAAAAAAAAAAAAAAAAAAAus/gFqvUrcOuXGNevoa5fJJ6/Cr5+mX99HEN+oEZ9JEp+qM3OiJp3l9CNhTQ/Giw/3O2wG/D8N5ofsJgfkblfDngy9cfU5gcN50dF54d977YDHrcX0fUyetAOeDrN2gGX06IdcDWNOAEFFFBAAQW8KGD+QZ9/Vcu/bOc/l/IfvPmSRb7olC8b5gu//dJ9fvMlv32W3wDtb2HnmxDybSTNVry1o6vSypVvxuu3U+YbYvstzf2m9Pyxgv7BkP7Rnv7hrP7xOgAAAAAAAAAAAAAAAAAAAAAAAAAA4DKLX6BavwK3folx/Rrq+kXi+avg65f518cx5Adq1Eei5Ifa7IyoeXcJ3VhI86PB8sPdDrsBz3+j+QGL+RGZ++WAJ1N/TG1+0HB+VHR+2PduO+BxexFdL6MH7YCn06wdcDkt2gFX04gTUEABBRRQwIsC5h/0+Ve1/Mt2/nMp/8GbL1nki075smG+8Nsv3ec3X/LbZ/kN0P4Wdr4JId9G0mzFWzu6Kq1c+Wa8fjtlviG239Lcb0rPHyvoHwzpH+3pH87qH68DAAAAAAAAAAAAAAAAACK+AphZ81WYueY3AAAAAElFTkSuQmCC);
    }

  }

  @media screen and (max-width: 560px) {
    .navbar-toggler {
        margin-left: 0;
    }

    .navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
      color: var(--white);
      font-weight: bold;
    }

    .casapariurilor-nav .nav-item a,
    .casapariurilor-nav .nav-item a.active {
        color: var(--white)!important;
    }

    .navbar-brand img {
      max-width: 100px;
    }

    .logo-protv-link img {
      max-width: 90px;
    }

    .logo-imperiulleilor-link {
        display: none;
    }

    .casapariurilor-nav .navbar-brand {
        margin-left: 0;
    }

    .item .custom-radio {
        margin-right: 0;
    }

    #premii .col-12 {
        margin-bottom: 20px;
    }

    /* .burger {
      margin-left: -30px;
    } */
  }

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