
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import 'footer.css'; 

@font-face { 
    font-display: swap;
    font-family: "CervoNeueRegular";
    src: url("../webfont/CervoNeue-RegularNeue.woff") format("woff");
    src: url("../webfont/CervoNeue-RegularNeue.woff2") format("woff2");
}
@font-face {
    font-display: swap;
    font-family: "CervoNeueSemibold";
    src: url("../webfont/CervoNeue-SemiBoldNeue.woff") format("woff");
    src: url("../webfont/CervoNeue-SemiBoldNeue.woff2") format("woff2");
}
@font-face {
    font-display: swap;
    font-family: "CervoNeueBlack";
    src: url("../webfont/CervoNeue-BlackNeue.woff") format("woff");
    src: url("../webfont/CervoNeue-BlackNeue.woff2") format("woff2");
}
@font-face {
    font-display: swap;
    font-family: "EurostyleBlack";
    src: url("../webfont/EurostileExtended-Black.woff") format("woff");
    src: url("../webfont/EurostileExtended-Black.woff2") format("woff2");
}
@font-face {
    font-display: swap;
    font-family: "EurostyleRoman";
    src: url("../webfont/EurostileExtended-Roman.woff") format("woff");
    src: url("../webfont/EurostileExtended-Roman.woff2") format("woff2");
}
@font-face {
    font-display: swap;
    font-family: "EurostyleNext";
    src: url("../webfont/EurostileNextLTCom-BoldExt.woff") format("woff");
    src: url("../webfont/EurostileNextLTCom-BoldExt.woff2") format("woff2");
}
@font-face {
    font-display: swap;
    font-family: "GothamProBold";
    src: url("../webfont/Gotham-Bold-RO.woff") format("woff");
    src: url("../webfont/Gotham-Bold-RO.woff2") format("woff2");
}
@font-face {
    font-display: swap;
    font-family: "GothamBook";
    src: url("../webfont/Gotham-Book-Rom.woff") format("woff");
    src: url("../webfont/Gotham-Book-Rom.woff2") format("woff2");
}

:root {
    --brand-color: #FF6720; /* trendyol */
}


body {
    background: #000;
    min-height: 100vh;
}
.nav-link:focus {
    color: #fff;
}
.nav-link:hover {
    text-decoration: underline;
}
.form-control::placeholder {
    font-family: "GothamProBold", sans-serif;
    opacity: 1;
}
.form-control:-ms-input-placeholder {
    font-family: "GothamProBold", sans-serif;
}
.form-control::-ms-input-placeholder {
    font-family: "GothamProBold", sans-serif;
}
input[type="checkbox"] {
    -webkit-appearance: none;
    appearance: none;
    background-color: #fff;
    margin: 0;
}
.form-check {
    font-size: 1.1rem;
    font-weight: bold;
    line-height: 1.2;
    display: grid;
    grid-template-columns: 1em auto;
    gap: 0.5em;
}

.form-check a {
    color: var(--brand-color);
    text-decoration: none;
}
.form-check a:hover {
    text-decoration: underline;
}
input[type="checkbox"] {
    appearance: none;
    background-color: #231f20;
    margin: 0;
    font: inherit;
    color: #FFFFFF;
    width: 1.15em;
    height: 1.15em;
    border-radius: 0;
    transform: translateY(-0.075em);
    display: grid;
    place-content: center;
    border-radius: 50%;
}
.form-check + .form-check {
    margin-top: 1em;
}
input[type="checkbox"]::before {
    content: "";
    width: 12px;
    height: 12px;
    transform: scale(0);
    display: block;
    background-color: var(--brand-color);
    border-radius: 50%;
    transition: 120ms transform ease-in-out;
}
input[type="checkbox"]:checked::before {
    transform: scale(1);
}
.form-check {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    white-space: nowrap;
    min-height: 1.1rem;
    padding-left: 0;
    margin-bottom: 0;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type="number"] {
    -moz-appearance: textfield;
}
.navbar-brand img {
    max-width: 150px;
    height: auto;
    margin-left: 100px;
    margin-top: 20px;
}
.nav-wrapper {
    display: flex;
    justify-content: end;
}
.container-hero {
    text-align: right;
}
.dond-hero_h1 {
    font-family: "CervoNeueBlack", sans-serif;
    font-size: 100px;
    text-transform: uppercase;
    padding-top: 120px;
    line-height: 0.9;
    color: #000;
    text-shadow: 1px 1px 3px #fff;
}
.dond-hero_h2 {
    font-family: "CervoNeueSemibold", sans-serif;
    font-size: 24px;
    margin-top: 40px;
    color: #000;
    text-shadow: 1px 1px 3px #fff;
}
.btn-dond_hero {
    font-family: "CervoNeueSemibold", sans-serif;
    margin-top: 70px;
    position: relative;
    font-size: 35px;
    background: -webkit-linear-gradient(#ffec70, #cd8217);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 20px 100px;
    border: solid 5px #ffc555;
    border-radius: 15px;
    outline: solid 5px black;
}
.btn-dond_hero:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: -1;
}
.btn-dond_hero:hover {
    background: gold;
    -webkit-text-fill-color: #000;
    border: solid 5px #000;
    outline: solid 5px gold;
}
.descriere-section {
    min-height: 800px;
    background: rgb(205, 130, 23);
    background: linear-gradient(
        0deg,
        rgba(205, 130, 23, 1) 0%,
        rgba(245, 214, 94, 1) 62%,
        rgba(255, 236, 112, 1) 100%
    );
}
.descriere-h2 {
    font-family: "CervoNeueBlack", sans-serif;
    font-size: 5vw;
    padding: 50px 0;
}
.descriere-section h3 {
    padding: 0 50px;
    font-family: "CervoNeueSemibold", sans-serif;
    letter-spacing: -1px;
    font-size: 30px;
}
.game-section {
    display: none;
    padding-bottom: 50px;
    position: relative;
    overflow: hidden;
}
.game-header-text {
    display: flex;
    justify-content: center;
    padding-top: 40px;
}
.game-wrapper {
    display: grid;
    grid-template-columns: 15% auto 15%;
    grid-template-rows: 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    align-content: center;
    justify-items: center;
    align-items: center;
    justify-content: space-evenly;
}
.form-section {
    padding: 20px 20px 50px 20px;
    background: black;
    border-radius: 20px;
    width: 100%;
}
.form-title {
    text-align: center;
    padding: 30px;
    color: #fff;
    font-weight: 800;
    font-size: 40px;
    letter-spacing: 5px;
    font-family: "GothamProBold", sans-serif;
}
.form-wrapper {
    display: none;
    padding: 40px 10px 20px 10px;
}
.left-col-item {
    font-family: "EurostyleBlack", sans-serif;
    padding: 0;
    margin-bottom: 8px;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    border-top: 10px solid #d41411;
    border-right: 10px solid #680e0c;
    border-left: 10px solid #a50c0f;
    border-bottom: 10px solid #d41411;
    background: rgb(167, 0, 0);
    background: -webkit-linear-gradient(
        bottom,
        rgba(167, 0, 0, 1) 0%,
        rgba(245, 0, 0, 1) 100%
    );
    background: -moz-linear-gradient(
        bottom,
        rgba(167, 0, 0, 1) 0%,
        rgba(245, 0, 0, 1) 100%
    );
    background: -o-linear-gradient(
        bottom,
        rgba(167, 0, 0, 1) 0%,
        rgba(245, 0, 0, 1) 100%
    );
    background: linear-gradient(
        to top,
        rgba(167, 0, 0, 1) 0%,
        rgba(245, 0, 0, 1) 100%
    );
}
.right-col-item {
    font-family: "EurostyleBlack", sans-serif;
    padding: 0;
    margin-bottom: 8px;
    color: #000;
    text-transform: uppercase;
    text-align: center;
    border-top: 10px solid #b08526;
    border-right: 10px solid #7d411a;
    border-left: 10px solid #9a5621;
    border-bottom: 10px solid #b08526;
    background: rgb(189, 112, 42);
    background: linear-gradient(
        0deg,
        rgb(198 110 29) -10%,
        rgba(255, 233, 21, 1) 70%
    );
    background: -webkit-linear-gradient(
        bottom,
        rgb(198 110 29) -10%,
        rgba(255, 233, 21, 1) 70%
    );
    background: -moz-linear-gradient(
        bottom,
        rgb(198 110 29) -10%,
        rgba(255, 233, 21, 1) 70%
    );
    background: -o-linear-gradient(
        bottom,
        rgb(198 110 29) -10%,
        rgba(255, 233, 21, 1) 70%
    );
}
.boxes-wrapper {
    position: relative;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(4, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
}
.boxBonus-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .5rem;
    margin-top: 1.5rem;
}
.box,
.boxBonus {
    text-align: center;
    position: relative;
    margin-right: 7.5px;
    margin-left: 7.5px;
    margin-bottom: 40px;
    pointer-events: none;
}
.boxBonus {
    margin-bottom: 0;
}
.box span,
.boxBonus span {
    position: absolute;
    color: #fff;
    text-shadow: 2px 1px #000;
    left: 0;
    right: 0;
    bottom: 0;
    padding-top: 30px;
    padding-right: 25px;
    margin: auto;
    transform: skew(356deg, 3deg);
    font-size: 30px;
    font-family: "EurostyleBlack", sans-serif;
    width: 100%;
    height: 100%;
    pointer-events: all;
    cursor: pointer;
}
.boxBonus span {
    padding-top: 36px;
    font-size: 24px;
}
.boxModal span,
.boxBonusModal span {
    position: absolute;
    color: #fff;
    text-shadow: 2px 1px #000;
    left: 0;
    right: 0;
    bottom: 0;
    padding-top: 30px;
    padding-right: 25px;
    margin: auto;
    transform: skew(356deg, 3deg);
    font-size: 30px;
    font-family: "EurostyleBlack", sans-serif;
    width: 100%;
    height: 100%;
}
.boxBonusModal span  {
    padding-top: 80px;
    font-size: 22px;
}
.bonus-score {
    margin-bottom: 10px;
}
.choosenBox {
    text-align: center;
    position: relative;
    margin-right: 7.5px;
    margin-left: 7.5px;
    margin-bottom: 40px;
    cursor: none;
    pointer-events: none;
}
.choosenBox span {
    position: absolute;
    color: #fff;
    text-shadow: 2px 1px #000;
    left: 0;
    right: 30px;
    bottom: 20px;
    margin: auto;
    transform: skew(356deg, 3deg);
    font-size: 30px;
    font-family: "EurostyleBlack", sans-serif;
    cursor: none;
    pointer-events: none;
}
.game-col-3 {
    width: 100%;
}
.game-col-1 {
    width: 100%;
}
.game-case-text {
    text-align: center;
    color: gold;
    padding: 30px;
    background: #000;
    border: solid 5px gold;
    border-radius: 15px;
    margin: 0 auto;
    margin-bottom: 40px;
    min-height: 170px;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
}
.game-case-text.game-case-form {
    color: #fff;
    border: solid 5px var(--brand-color);
}
.game-section .game-container {
    padding: 40px;
    background-color: #404040ab;
    border-radius: 35px;
    position: relative;
}
.valueFound {
    opacity: 0.25;
}
.modal {
    display: none;
    position: fixed;
    z-index: 3;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.45);
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 10px;
}
body.modal-open {
    height: 100vh;
    overflow-y: hidden;
}
.modal-content {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    max-height: 90vh;
    max-width: 60vw;
    background-color: #000;
    color: gold;
    margin: auto;
    width: 70%;
    padding: 20px 20px 40px 20px;
    border: solid 5px gold;
    border-radius: 20px;
    vertical-align: middle;
    align-self: center;
    align-content: center;
    display: flex;
    justify-content: space-evenly;
    align-items: stretch;
}
.modal-content img {
    max-width: 250px;
    margin: 0 auto;
    padding-bottom: 30px;
}
#selectedCaseModal .modal-content {
    max-height: 30vh;
    display: flex;
    justify-content: space-around;
    text-align: center;
    font-size: 30px;
    font-weight: 800;
    align-content: center;
    flex-wrap: nowrap;
    flex-direction: row;
}
.bonusRound {
    background-image: url("https://assets.protv.ro/assets/campanii/batem-palma/text-bg.png");
    background-repeat: repeat;
    background-position: center;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    font-size: 32px;
}
.bonusRound-box {
    font-weight: 700;
    font-size: 15px;
}
#gameOverBonusRoundResult {
    margin-bottom: 10px;
}
.gameOverBonus {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 15px;
}
#offerValue {
    border: solid 5px gold;
    text-align: center;
    padding: 10px 40px;
    font-size: 40px;
    font-weight: 800;
    border-radius: 20px;
    max-width: 55%;
    margin: 20px auto;
}
#offerValue.offer-value-bank {
    max-width: 80%;
}
#initialChosenBoxValue {
    border: solid 5px gold;
    text-align: center;
    padding: 5px 30px;
    font-size: 20px;
    font-weight: 800;
    border-radius: 10px;
    max-width: 55%;
    margin: 10px auto;
}
#gameOverOfferValueOther {
    border: solid 5px gold;
    text-align: center;
    font-weight: 800;
    margin: 0 auto;
    margin-bottom: 30px;
    margin-top: 20px;
    font-size: 20px;
    max-width: 30%;
    padding: 10px;
    border-radius: 15px;
}
#gameOverOfferValueOpened {
    border: solid 5px gold;
    text-align: center;
    padding: 10px 40px;
    font-size: 40px;
    font-weight: 800;
    border-radius: 20px;
    max-width: 55%;
    margin: 0 auto;
    margin-bottom: 30px;
    margin-top: 20px;
}
.dealBtn {
    font-family: "EurostyleBlack", sans-serif;
    padding: 5px 50px;
    color: #000;
    text-transform: uppercase;
    text-align: center;
    border-top: 10px solid #23ba0c;
    border-right: 10px solid #11680c;
    border-left: 10px solid #0ca50f;
    border-bottom: 10px solid #23ba0c;
    background: rgb(72, 189, 42);
    background: linear-gradient(
        0deg,
        rgba(72, 189, 42, 1) 0%,
        rgba(37, 255, 21, 1) 100%
    );
    background: -moz-linear-gradient(
        bottom,
        rgba(72, 189, 42, 1) 0%,
        rgba(37, 255, 21, 1) 100%
    );
    background: -o-linear-gradient(
        bottom,
        rgba(72, 189, 42, 1) 0%,
        rgba(37, 255, 21, 1) 100%
    );
    background: linear-gradient(
        to top,
        rgba(72, 189, 42, 1) 0%,
        rgba(37, 255, 21, 1) 100%
    );
}
.noDealBtn {
    font-family: "EurostyleBlack", sans-serif;
    padding: 5px 50px;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    border-top: 10px solid #d41411;
    border-right: 10px solid #680e0c;
    border-left: 10px solid #a50c0f;
    border-bottom: 10px solid #d41411;
    background: rgb(167, 0, 0);
    background: -webkit-linear-gradient(
        bottom,
        rgba(167, 0, 0, 1) 0%,
        rgba(245, 0, 0, 1) 100%
    );
    background: -moz-linear-gradient(
        bottom,
        rgba(167, 0, 0, 1) 0%,
        rgba(245, 0, 0, 1) 100%
    );
    background: -o-linear-gradient(
        bottom,
        rgba(167, 0, 0, 1) 0%,
        rgba(245, 0, 0, 1) 100%
    );
    background: linear-gradient(
        to top,
        rgba(167, 0, 0, 1) 0%,
        rgba(245, 0, 0, 1) 100%
    );
}
.dealBtn:hover,
.noDealBtn:hover {
    color: #000;
    border-top: 10px solid #b08526;
    border-right: 10px solid #7d411a;
    border-left: 10px solid #9a5621;
    border-bottom: 10px solid #b08526;
    background: rgb(189, 112, 42);
    background: linear-gradient(
        0deg,
        rgb(198 110 29) -10%,
        rgba(255, 233, 21, 1) 70%
    );
    background: -webkit-linear-gradient(
        bottom,
        rgb(198 110 29) -10%,
        rgba(255, 233, 21, 1) 70%
    );
    background: -moz-linear-gradient(
        bottom,
        rgb(198 110 29) -10%,
        rgba(255, 233, 21, 1) 70%
    );
    background: -o-linear-gradient(
        bottom,
        rgb(198 110 29) -10%,
        rgba(255, 233, 21, 1) 70%
    );
}
.modalHeaderWrapper {
    flex-direction: column;
    justify-content: center;
    text-align: center;
}
.previousOffersWidth {
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 20px;
}
#selectedCase {
    pointer-events: none;
}
.money-value {
    text-transform: uppercase;
}
.play-btn-dond {
    font-family: "CervoNeueSemibold", sans-serif;
    position: relative;
    font-size: 35px;
    background: #000;
    color: gold;
    padding: 20px 100px;
    border: solid 5px gold;
    border-radius: 15px;
    outline: solid 5px #000;
    z-index: 2;
    box-shadow: 0 0 0 0 rgba(255, 177, 66, 1);
    animation: pulse-yellow 2s infinite;
}
.play-btn-dond:hover {
    background: gold;
    color: #000;
    border: solid 5px #000;
    outline: solid 5px gold;
}
.form-btn-dond {
    font-family: "CervoNeueSemibold", sans-serif;
    position: relative;
    font-size: 35px;
    padding: 10px 40px;
    max-width: 60%;
    margin: 0 auto;
    border: solid 5px gold;
    border-radius: 15px;
    z-index: 2;
    box-shadow: 0 0 0 0 rgba(255, 177, 66, 1);
    background: gold;
    color: #000;
    border: solid 5px #000;
    outline: solid 5px gold;
    margin-top: 30px;
}
.form-btn-dond:hover {
    background: #000;
    color: gold;
    border: solid 5px gold;
    outline: solid 5px #000;
}
.btn-form-signup {
    font-family: 'GothamBook', sans-serif;
    color: #fff;
    border: solid 5px #fff;
    box-shadow: 0 0 0 0 var(--brand-color);
    background: var(--brand-color);
    outline: solid 5px var(--brand-color);
}
.btn-form-signup:hover {
    background-color: #fff;
    color: var(--brand-color);
    border: solid 5px var(--brand-color);
    outline: solid 5px #fff;
}
.btn-form-signup:focus {
    outline: solid 5px var(--brand-color) !important;
}
.btn-form-signup:active {
    outline: solid 5px #fff !important;
}
#finalOfferBtns {
    display: none;
}
@keyframes pulse-yellow {
    0% {
        transform: scale(0.97);
        box-shadow: 0 0 0 0 rgba(255, 177, 66, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 30px rgba(255, 177, 66, 0);
    }

    100% {
        transform: scale(0.97);
        box-shadow: 0 0 0 0 rgba(255, 177, 66, 0);
    }
}
.game-overlay {
    background: #000;
    width: 100vw;
    height: 100%;
    position: absolute;
    z-index: 1;
    opacity: 0.8;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.previousOffers {
    margin: 0 auto;
    text-align: left;
    padding-bottom: 30px;
}
.previousOffersTitle {
    display: none;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 15px;
}
#initialChosenBoxValue {
    text-transform: uppercase;
}
.gameOverPreviousOffersTitle {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 15px;
}
#previousOffers {
    display: none;
}
#previousOffers span {
    padding: 0 2px;
}
#selectedBoxModal .modal-content {
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    align-self: center;
    align-content: center;
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: 50vh;
    max-width: 40vw;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
#selectedBoxModal .modal-content img {
    padding: 0;
}
#selectedBoxModal .modal-content .boxModal {
    pointer-events: none;
}
#selectedBoxModal .boxModal span {
    padding: 75px 25px 20px 5px;
    text-align: center;
    font-family: EurostyleBlack;
}
#selectedBoxValue {
    padding-bottom: 30px;
}
.buttonWrapper {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    align-content: center;
    flex-wrap: nowrap;
}
.bankOfferAccepted {
    font-size: 30px;
    font-weight: 600;
}
.linkStartOver {
    font-size: 10px;
    text-decoration: none;
    color: gold;
    font-weight: bold;
    margin: 5px;
    cursor: pointer;
}
.form-check {
    color: #fff;
}
.dond-form {
    max-width: 80%;
    text-align: left;
    margin: 0 auto;
}
.dond-form .form-control {
    border: solid 3px var(--brand-color);
    font-family: "GothamProBold", sans-serif;
}
.message-fail {
    border: solid 5px;
    color: #fff;
    background: #bb1200;
    font-size: 20px;
    justify-content: center;
}
.message-fail h2 {
    font-size: 34px;
    margin: 0;
}
.game-tutorial {
    font-family: "CervoNeueSemibold", sans-serif;
    color: gold;
    text-align: center;
    z-index: 2;
}
.bankOfferQuestion {
    text-align: center;
    font-size: 30px;
    font-family: "CervoNeueSemibold", sans-serif;
}
@media (min-width: 1100px) and (max-width: 1600px) {
    .bankOfferQuestion {
        font-size: 20px;
    }
}
#pleaserotate-graphic {
    fill: #fff;
}

#pleaserotate-backdrop {
    color: #fff;
    background-color: #000;
}
.disclaimer {
    font-size: 12px;
    color: #FFF;
}
.game-details-section,
.winners-section {
    background-position: center center;
    background-size: cover;
    min-height: calc(100vh - 262px);
    padding-top: 100px;
    padding-bottom: 100px;
}
.game-details-section {
    background-image: url("https://assets.protv.ro/assets/campanii/batem-palma-trendyol/game_bg.jpg");
}
.game-details-section .container {
    color: gold;
    font-family: "EurostyleBlack";
    text-shadow: 2px 2px black;
    background: #000000d1;
    border-radius: 30px;
    padding: 30px;
}
.game-details-section h1 {
    font-size: 40px;
}
.game-details-section h4 {
    font-size: 20px;
}
.game-details-section img,
.winners-section img {
    max-width: 330px;
}
@media screen and (max-width: 1200px) {
    .play-btn-dond {
        position: fixed;
        top: 0;
        bottom: 0;
        right: 0;
        left: 0;
        max-height: 100px;
        max-width: 60%;
        margin: auto;
    }
    .game-section .container,
    .header-section .container {
        padding: 20px;
        max-width: 95%;
    }
    .money-value {
        font-size: 12px;
    }
    .box span {
        font-size: 24px;
        padding: 25px 20px 10px 0;
        margin: 0 auto;
        width: 100%;
    }
}
@media screen and (max-width: 1024px) {
    .modal {
        position: absolute;
    }
    .left-col-item {
        border-top: 5px solid #d41411;
        border-right: 5px solid #680e0c;
        border-left: 5px solid #a50c0f;
        border-bottom: 5px solid #d41411;
        font-size: 12px;
    }
    .right-col-item {
        border-top: 5px solid #b08526;
        border-right: 5px solid #7d411a;
        border-left: 5px solid #9a5621;
        border-bottom: 5px solid #b08526;
        font-size: 12px;
    }
}
@media screen and (max-width: 992px) {
    .box span {
        font-size: 14px;
        padding: 20px 15px 10px 0;
        margin: 0 auto;
        width: 100%;
    }
    #ot-sdk-btn {
        opacity: 0.25 !important;
    }
    .money-value {
        font-size: 8px;
    }
    .left-col-item,
    .right-col-item {
        margin-bottom: 5px;
    }
    .offcanvas-title {
        font-size: 6vw;
    }
    .navbar-brand img {
        margin-left: 0;
    }
    .nav-wrapper {
        justify-content: space-between;
        width: 100%;
    }
    .descriere-h2 {
        font-size: 10vw;
    }
    .boxes-wrapper {
        display: grid;
        grid-template-columns: repeat(6, 2fr);
        grid-template-rows: repeat(3, auto);
        grid-column-gap: 30px;
        grid-row-gap: 20px;
        align-content: center;
        justify-content: center;
        align-items: center;
        justify-items: center;
        vertical-align: middle;
        margin: auto;
    }
    .game-wrapper {
        position: relative;
    }
    .box span {
        font-size: 20px;
        padding: 20px 15px 10px 0;
        margin: 0 auto;
        width: 100%;
    }
    .game-case-text {
        margin-bottom: 10px;
        padding: 10px;
        font-size: 15px;
        min-height: 66px;
    }
    .box {
        text-align: center;
        position: relative;
        margin-right: 0px;
        margin-left: 0px;
        margin-bottom: 0px;
        pointer-events: none;
    }
    .game-header-text {
        max-width: 50%;
        margin: 0 auto;
        padding: 10px;
        height: auto;
    }
    .modal-content {
        height: auto;
        max-width: 100vw;
        max-height: 100vh;
        width: 100%;
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: #000;
        color: gold;
        margin: auto;
        padding: 20px 20px 20px 20px;
        border: solid 5px gold;
        border-radius: 20px;
        vertical-align: middle;
        align-self: center;
        align-content: center;
        display: flex;
        justify-content: space-between;
        align-items: stretch;
    }
    .form-btn-dond {    
        padding: 5px 20px;
        max-width: 80%;
        margin: 5px auto;
    }
    #offerValue {
        font-size: 15px;
    }
    #selectedCaseModal .modal-content {
        max-height: 34vh;
    }
    .dond-form {
        max-width: 100%;
    }
    #gameOverOfferValueOther,
    #gameOverOfferValueOpened {
        max-width: 40%;
        font-size: 20px;
        padding: 5px 30px;
        margin-bottom: 5px;
        margin-top: 5px;
    }
    #selectedBoxModal .boxModal span {
        font-size: 30px;
    }
    #selectedBoxModal .modal-content {
        max-width: 100%;
        max-height: 100%;
    }
    .left-col-item {
        border-top: 4px solid #d41411;
        border-right: 4px solid #680e0c;
        border-left: 4px solid #a50c0f;
        border-bottom: 4px solid #d41411;
        font-size: 8px;
    }
    .right-col-item {
        border-top: 4px solid #b08526;
        border-right: 4px solid #7d411a;
        border-left: 4px solid #9a5621;
        border-bottom: 4px solid #b08526;
        font-size: 8px;
    }
    .game-header-text img {
        margin-bottom: 0 !important;
    }
    .modal-content img {
        max-width: 100px;
        padding: 0;
    }
    .boxBonusModal img {
        max-width: 70px;
    }
    .boxBonusModal span {
        padding-top: 60px;
        font-size: 12px;
    }
    #offerValue {
        padding: 4px 20px;
        border-radius: 12px;
    }
    .previousOffers {
        padding-bottom: 0;
        font-size: 10px; 
        justify-content: space-between;
        gap: 10px;
    }
    #offerValue {
        margin-bottom: 0;
    }
    .bankOfferQuestion {
        text-align: center;
        font-size: 24px;
        margin-bottom: 0;
        line-height: 1;
    }
    .noDealBtn {
        padding: 5px 25px;
        font-size: 12px;
        line-height: 12px;
        border-top: 5px solid #d41411;
        border-right: 5px solid #680e0c;
        border-left: 5px solid #a50c0f;
        border-bottom: 5px solid #d41411;
    }
    .dealBtn {
        padding: 5px 25px;
        font-size: 12px;
        line-height: 12px;
        border-top: 5px solid #23ba0c;
        border-right: 5px solid #11680c;
        border-left: 5px solid #0ca50f;
        border-bottom: 5px solid #23ba0c;
    }
}
@media screen and (max-width: 768px) {
    .box span {
        font-size: 16px;
        padding: 20px 15px 10px 0;
        margin: 0 auto;
        width: 100%;
    }
    .boxes-wrapper {
        grid-column-gap: 20px;
        grid-row-gap: 20px;
    }
    .left-col-item {
        border-top: 2px solid #d41411;
        border-right: 2px solid #680e0c;
        border-left: 2px solid #a50c0f;
        border-bottom: 2px solid #d41411;
        font-size: 8px;
    }
    .right-col-item {
        border-top: 2px solid #b08526;
        border-right: 2px solid #7d411a;
        border-left: 2px solid #9a5621;
        border-bottom: 2px solid #b08526;
        font-size: 8px;
    }
}
@media screen and (max-width: 480px) {
    #previousOffersTitle,
    #previousOffers {
        display: none;
    }
    .offcanvas-title {
        font-size: 8vw;
    }
    .dond-hero_h1 {
        font-size: 15vw;
    }
    .dond-hero_h2 {
        font-size: 7vw;
    }
    .boxModal span {
        padding-top: 22px;
        padding-right: 20px;
        font-size: 24px;
    }
    .dealBtn {
        padding: 5px 25px;
    }
    .noDealBtn {
        padding: 5px 25px;
    }
    #offerValue {
        padding: 10px 10px;
        font-size: 20px;
        max-width: 100%;
        margin-bottom: 0;
    }
    .modal-content img {
        max-width: 150px;
        margin: 0 auto;
        padding-bottom: 10px;
    }
    .box span {
        font-size: 12px;
        padding: 11px 15px 10px 0;
        margin: 0 auto;
        width: 100%;
    }
    .boxes-wrapper {
        grid-column-gap: 10px;
        grid-row-gap: 20px;
    }
    .money-value {
        font-size: 6.5px;
    }
}
@media screen and (max-width: 320px) {
    .btn-dond_hero {
        font-size: 30px;
        padding: 12px 60px;
    }
    .dond-hero_h1 {
        margin-top: 20px;
    }
    .dond-hero_h2 {
        margin-top: 20px;
    }
    .btn-dond_hero {
        margin-top: 5px;
    }
    .box span {
        padding-top: 14px;
        padding-right: 17px;
        font-size: 20px;
    }
    .boxModal span {
        padding-top: 14px;
        padding-right: 17px;
        font-size: 20px;
    }
}

/*DEAL NO DEAL X ARIEL */
.bg-wrapper {
    background: url("https://assets.protv.ro/assets/campanii/batem-palma-trendyol/game_bg.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
}
.navigation-deal-ariel .navbar-nav {
    margin-left: auto;
}
.navigation-deal-ariel .nav-item a {
    text-decoration: none;
    color: black;
    background: linear-gradient(
        0deg,
        rgb(198 110 29) -10%,
        rgba(255, 233, 21, 1) 70%
    );
    background: -webkit-linear-gradient(
        bottom,
        rgb(198 110 29) -10%,
        rgba(255, 233, 21, 1) 70%
    );
    background: -moz-linear-gradient(
        bottom,
        rgb(198 110 29) -10%,
        rgba(255, 233, 21, 1) 70%
    );
    background: -o-linear-gradient(
        bottom,
        rgb(198 110 29) -10%,
        rgba(255, 233, 21, 1) 70%
    );
    border-top: 10px solid #b08526;
    border-right: 10px solid #7d411a;
    border-left: 10px solid #9a5621;
    border-bottom: 10px solid #b08526;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 10px;
    font-family: "EurostyleNext", sans-serif;  
}
.navigation-deal-ariel .nav-item a:hover {
    border-top: 10px solid #d39f2e;
    border-right: 10px solid #a25522;
    border-left: 10px solid #bc6828;
    border-bottom: 10px solid #d29e2e;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.header-section .text-wrapper,
.header-section .logo-img {
    flex: 1;
}
.header-section .text-wrapper,
.clue-section .text-wrapper {
    color: #FFD700;
    font-family: 'GothamProBold', sans-serif;
    font-size: 2rem;
    line-height: 3rem;
    background-color: #000;
    border: 5px solid #FFD700;
    border-radius: 15px;
}
.header-section .text-wrapper img {
    max-width: 350px;
}
.header-section .logo-img {
    max-width: 450px;
    height: auto;
    object-fit: contain;
}
.clue-section {
    padding: 4rem 0 6rem;
}
.clue-section .text-wrapper {
    font-size: 1.75rem;
    line-height: 1.75rem;
    max-width: 50%;
}
.clue-section input {
    max-width: 500px;
    height: 60px;
    margin-top: 60px;
    border: 3px solid #FFD700;
    border-radius: 6px;
    background-color: #fff;
    font-size: 1.5rem;
}
.clue-section .form-btn-dond-clue {
    font-family: "CervoNeueSemibold", sans-serif;
    position: relative;
    font-size: 1.5rem;
    padding: 10px 30px;
    max-width: 60%;
    margin: 0 auto;
    border: solid 5px gold;
    border-radius: 15px;
    z-index: 2;
    box-shadow: 0 0 0 0 rgba(255, 177, 66, 1);
    background: gold;
    color: #000;
    border: solid 5px #000;
    outline: solid 5px gold;
}
.form-btn-dond-clue:hover {
    background: #000;
    color: gold;
    border: solid 5px gold;
    outline: solid 5px #000;
}
.form-btn-dond-clue:focus {
    outline: solid 5px gold !important;
} 
.form-btn-dond-clue:active {
    outline: solid 5px #000 !important;
}
.prizes-section h2 {
    font-family: 'GothamProBold', sans-serif;
    color: #fff;
    text-transform: uppercase;
}
.prizes-section h3 {
    color: #E02628;
    font-size: 2rem;
    font-family: 'GothamBook', sans-serif;
}
.prizes-section p {
    font-size: 1.75rem;
    line-height: 2rem;
    font-family: 'GothamProBold', sans-serif;
    color: #fff;
}
.prizes-section .prize-img {
    max-width: 900px;
}
.prizes-section .child-safety-img {
    max-width: 550px;
}
.prizes-section span {
    font-size: 0.75rem;
    font-weight: 300;
    color: #fff;
}
.prizes-counter {
    top: 0;
    left: -50px;
    width: 160px;
    height: 160px;
    background-color: #E02628;
    color: #fff;
    border-radius: 50%;
    font-size: 80px;
    font-family: 'GothamProBold', sans-serif;
}
#dealOrNoDealModal img {
    max-width: 200px;
}
.winners-section {
    background: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),url("https://assets.protv.ro/assets/campanii/batem-palma-trendyol/game_bg.jpg") 50% 20%;
}
.winners-section .container {
    color: #fff;
    font-family: 'GothamProBold', sans-serif;
}
.winners-section h1 {
    font-size: 40px;
    padding-top: 30px;
}
.winners-section h4 {
    text-decoration: underline;
}
@media (max-width: 1400px) {
    #dealOrNoDealModal img {
        max-width: 150px;
    }
}
@media (max-width: 992px) {
    .navigation-deal-ariel .nav-item a {
      max-width: 130px;
      font-size: 10px;
    }
    .header-section .text-wrapper {
        font-size: 1rem;
        line-height: 1.5rem;
    }
    .header-section .text-wrapper img {
        max-width: 165px;
    }
    .header-section .logo-img {
        max-width: 200px;
    }
    .clue-section {
        padding: 2rem 0 6rem;
    } 
    .clue-section .text-wrapper {
        font-size: 1rem;
        line-height: 1.5rem;
        max-width: 80%;
    }
    .clue-section input {
        margin-top: 24px;
        max-width: 60%;
        height: 50px;
        font-size: 1rem;
    }
    .prizes-section .prize-img {
        max-width: 500px;
    }
    .prizes-counter {
        top: 20px;
        left: -10px;
        width: 80px;
        height: 80px;
        font-size: 40px;
    }
    .prizes-section h3 {
        font-size: 1rem;
    }
    .prizes-section h2 {
        font-size: 1.25rem;
        line-height: 1.5rem;
    }
    .prizes-section p {
        font-size: 1rem;
        line-height: 1.5rem;
    }
    .prizes-section .child-safety-img {
        max-width: 280px;
    }
    .game-details-section, 
    .winners-section {
        padding-top: 0;
    }
    .game-details-section img, 
    .winners-section img {
        max-width: 190px;
    }
}

/* MODAL FORM SUCCESS
*/
.modal-form {
    padding: 0 !important;
    margin: 0;
}
.modal-form .modal-dialog {
    top: 50%;
    max-width: 50vw;
}
.modal-form button {
    font-size: 1.5rem;
    background-color: transparent;
    color: #fff;
    outline: none;
    border: none;
}
.modal-form .modal-open {
    padding: 0 !important;
    margin: 0 !important;
}
.modal-form .modal-header {
    position: absolute;
    right: 0px;
    top: -8px;
    border-bottom: none;
    z-index: 2;
}
.modal-form .modal-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    font-family: 'GothamBook', sans-serif;
}
.modal-form .modal-body span {
    font-family: 'GothamProBold', sans-serif;
}
.modal-form .modal-content {
    color: #fff;
    border: solid 5px var(--brand-color);
    padding: 30px;
    max-width: 50vw;
}
.modal-backdrop {
    z-index: -1;
}
.campaign-not-available-text {
    font-family: 'GothamProBold', sans-serif;;
}
@media (max-width: 1700px) {
    .modal-form .modal-body {
        font-size: 1.5rem;
    }
}