:root {
    --background-color: #232323;
}
document, body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background-color: var(--background-color);
}
* {
    box-sizing: border-box;
}
body {
    min-height: 100vh;
    overflow-y: hidden;
}
.logo {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 50px;
}
.logo img {
    width: 100%;
}
.inner-container {
    width: 50%;
    margin: 0 auto;
    background-color: #f5f5f5;
    /* padding: 50px; */
    background-color: #232323;
}
.inner-container h1 {
    font-size: 22px;
    width: 100%;
    text-transform: uppercase;
    margin: 10px auto 10px;
    line-height: 1.3;
    padding-left: 15px;
}
.inner-container hr {
    margin: 10px 0;
}
.inner-container h2 {
    margin-top: 10px;
    margin-bottom: 10px;
}
.inner-container h2.subheading {
    margin: 4px 0 0;
    
    font-size: 22px;
    text-transform: uppercase;
}
/* mobile media query */
@media screen and (max-width: 768px) {
    .inner-container {
        width: 100%;
        /* padding: 10px; */
    }
    .notice {
        font-size: 18px;
        line-height: 24px;
    }
}
.inner-container h1 {
    text-align: center;
    color: #f5f5f5;
}
h2 {
    width: 100%;
    text-align: center;
    color: #f5f5f5;
}
hr {
    width: 100%;
    margin: 20px 0;
}
.notice {
    
    height: 100px;
    border: 5px solid #1c629e;
    border-radius: 25px;
    margin-bottom: 20px;
    transition: all 0.3s ease-in-out;
    background-color: #f5f5f5;
    line-height: 45px;
    padding-left: 20px;
    font-size: 23px;
    font-weight: bold;
    text-align: center;

    display: none;
    position: absolute;
    top: 20px;
    width: 80%;
    left: 10%;
}

.player-flex {
    display: flex;
    flex-direction: row;
    max-width: 800px;
    flex-wrap: wrap;
    padding: 10px;
    margin: 0 auto;
}
.player-flex-grow {
    flex-grow: 1;
}

@media screen and (max-width: 768px) {

    .notice {
        font-size: 18px;
        line-height: 21px;
        padding: 10px;
        height: 112px;
    }

    .player-flex {
        max-width: 100vw;
    }
}

/* START Two Player Specific Styles */
.player-flex.two-player .four-player {
    display: none;
}

/* END Two Player Specific Styles */

/* START Four Player Specific Styles */

.player-flex.four-player .player-flex-grow {
    display: none;
}

/* END Four Player Specific Styles */

.player-wrap {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    position: relative;
    border: 5px solid #1c629e;
    border-radius: 50%;
    background-color: #f5f5f5;
    transition: border-width 0.8s ease-in-out infinite;
}

.player-wrap.inactive:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url(../SVG/x-symbol.svg);
    background-size: 80% 80%;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.5;
}

.player-hand {
    width: 87.5px;
    margin-top: calc(50%/2);
    margin-left: calc(50%/2);
}

.playing .player-wrap.bob {
    /* border-width: 10px; */
}

.playing .player-hand.bobs-hand {
    margin-left: calc(25%/2);
}

.playing .player-hand.players-hand {
    margin-left: calc(75%/2);
}


.playing .player-hand.bobs-hand, .playing .player-hand.players-hand {
    animation: rotate 0.5s ease-in-out infinite;
    top: 50%;
    left: 50%;
    transform-origin: center 60px;
    
}
.playing .player-hand.players-hand {
    animation: rotate-player 0.5s ease-in-out infinite;

    
}

.players-hand {
    transform: scaleX(-1);
}
.players-hand.rock .symbol {
    top: 47px;
}
.players-hand.paper .symbol {
    top: 47px;
}
.players-hand.scissors .symbol {
    top: 47px;
}
.players-hand.jack .symbol {
    top: 47px;
}
.players-hand.labrador .symbol {
    top: 47px;
}

.win-zone-container {
    /* margin-top: -30px; */
    border: 1px solid white;
    border-radius: 10px;
    padding: 10px;
    position: relative;
    z-index: 4;
    background-color: var(--background-color);
}
.win-zone-container hr {
    margin: 5px;
    
}

.winner, .win-reason {
    color: #fff;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    height: 20px;
    margin-bottom: 2px;
}

.winner {
    
}

.player_points {
    color: #6ebd48;
}
.bob_points {
    color: #ff3e49;
}

.win-reason {
    height: 50px;
    line-height: 25px;
    
}


.outer-player-wrap {
    position: relative;
}

.outer-player-wrap div.point {
    position: absolute;
    
    bottom: -32px;
    left: calc(50% - 25px);
    width: 45px;
    height: 10px;
    line-height: 10px;
    text-align: center;
    font-size: 35px;
    font-weight: bold;
    color: #6ebd48; 
    border-radius: 50%;
    z-index: 2;
    
}

.outer-player-wrap div.point.show {
    animation: 5s pointscroll;
}
.outer-player-wrap div.point.show_quick {
    animation: 1s pointscroll;
}

.outer-player-wrap.bob div.point {
    color: #ff3e49;
}

@keyframes pointscroll {
    0% {
        bottom: -32px;
        transform: scale(1);
    }
    30% {
        transform: scale(2);
        left: calc(50% - 25px); 
        bottom: calc(50% - 25px);
    }
    100% {
        transform: scale(1);
        left: 0;
        bottom: calc(100% - 72px);
    }

}

.score {
    width: 50px;
    height: 50px;
    line-height: 36px;
    font-size: 25px;
    font-weight: bold;
    text-align: center;
    margin: 20px auto 0;
    border: 4px solid #1c629e;
    border-radius: 50%;
    padding: 5px;
    background-color: #f5f5f5;
    position: absolute;
    top: 19px;
    left: 0;
}

@media screen and (max-width: 768px), screen and (max-height: 850px) {

    .playing .player-hand.bobs-hand, .playing .player-hand.players-hand {
       /* transform-origin: center 26px; */
    }

    .outer-player-wrap div.point {
        font-size: 22px;
        line-height: 25px;
        left: calc(50% - 25px);
    }

    @keyframes pointscroll {
        0% {
            bottom: -32px;
            transform: scale(1);
        }
        50% {
            transform: scale(2);
            left: calc(50% - 25px); 
            bottom: calc(50% - 10px);
        }
        100% {
            transform: scale(1);
            left: -15px;
            bottom: calc(100% - 45px);
        }
    
    }
    .score {
        width: 40px;
        height: 40px;
        line-height: 25px;
        font-size: 22px;
        top: 7px;
        left: -12px;
    }

    .outer-player-wrap {
        max-width: 48%;
    }
    .outer-player-wrap h2 {
        margin: 0 0 10px;
    }
    .player-flex {
        padding: 10px 50px;
    }
    .player-wrap {
        width: 100px;
        height: 100px;
        /* transform: scale(0.7); */
        /* margin: -20px 0 0 -13px; */
    }
    .player-hand {
        width: 50px;
    }

    .win-zone-container {
        /* margin-top: -30px; */
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
        
    }
    100% {
        transform: rotate(30deg);
     
    }
}
@keyframes rotate-player {
    0% {
        transform: rotate(360deg) scaleX(-1);
        
    }
    100% {
        transform: rotate(330deg) scaleX(-1);
     
    }
}

.symbols {
    display: flex;
    justify-content: space-around;
    /* align-items: center; */
    width: 100%;
    height: 180px;
    gap: 20px;
    flex-wrap: nowrap;
    padding: 0 15px;
}

.playing .symbols .symbol-border {
    cursor: not-allowed;
    pointer-events: none;
    border-color: #52616e;
    opacity: 0.5;
}



.playing-svg {
    display: none;
}

.symbol-border {
    width: 120px;
    height: 120px;
    border: 5px solid #1c629e;
    border-radius: 50%;
    text-align: center;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    background-color: #f5f5f5;
}
.symbol {
    /* display: inline-block; */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
@media (hover) {
    .symbol-border:hover {
        border-color: #113c62;
        border-width: 10px;
        margin: -5px;
        width: 130px;
        height: 130px;
        
    }
    .symbol-border:hover .symbol .cls-1 {
        fill: #113c62;
    }
}
.symbol.scissors {
    width: 100px;
    padding-top: 8px;
}
.symbol.paper {
    width: 90px;
    
}
.symbol.rock {
    width: 87.5px;
}
.symbol.labrador {
    width: 79px;
    padding-top: 6%;
}
.player-symbol-choice .symbol.labrador {
    transform: scaleX(-1);
    top: 20px;
    left: 12px;
}
.player-symbol-choice .symbol.paper {
    transform: rotate(274deg);
    top: 20px;
    left: 6px;
}
.player-symbol-choice .symbol.scissors {
    transform: rotate(274deg);
    top: 20px;
    left: 3px;
}
.player-symbol-choice .symbol.rock {
    transform: rotate(274deg);
    top: 23px;
    left: 12px;
}
.symbol.jack {
    width: 73px;
}

.cls-1 {
    fill: #1c629e;
    stroke-width: 0px;
  }



.player-symbol-choice h3 {
    text-align: center;
    color: #f5f5f5;
}

@media screen and (max-width: 768px), screen and (max-height: 850px)  {
    .symbols {
        max-width: 100%;
        z-index: 2;
        height: 120px;
    }
    .symbols3 {
        z-index: 1;
        height: 80px;
        /* margin-top: -20px; */
    }
    .player-symbol-choice {
        
        max-width: 33%;
    }
    .player-symbol-choice .symbol-border {
        /* transform: scale(0.5); */
        width: 80px;
        height: 80px;
    }
    .player-symbol-choice h3 {
        font-size: 16px;
        /* margin: -18px 0 0 0; */
        
    }
    .symbol-border {
        /* margin-left: -33px; */
        margin: 0 auto;
    }

    .player-symbol-choice .symbol.labrador {
        width: 46px;
        top: 13px;
        left: 10px;
    }
    .players-hand.labrador .symbol,
    .players-hand.jack .symbol,
    .players-hand.rock .symbol,
    .players-hand.paper .symbol,
    .players-hand.scissors .symbol {
        top: 26px;
    }
    .player-symbol-choice .symbol.rock {
        top: 15px;
        left: 8px;
    }
    .player-symbol-choice .symbol.paper {
        top: 12px;
        left: 4px;
    }
    .player-symbol-choice .symbol.scissors {
        top: 11px;
        left: 1px;
    }
    .symbol.labrador {
        width: 50px;
    }
    .symbol.jack {
        width: 43px;
    }
    .symbol.rock {
        width: 55px;
    }
    .symbol.paper {
        width: 60px;
    }
    .symbol.scissors {
        width: 65px;
    }

}

@media screen and (max-height: 650px) {
    .symbols {
        height: 110px;
    }
    .symbols3 {
        height: 80px;
    }
    .player-symbol-choice h3 {
        margin-block-start: 0.5rem;
        margin-block-end: 0.5rem;
    }
}



.num-players {
    position: absolute;
    top: -10px;
    right: -10px;
    text-align: center;
    line-height: 50px;
    width: 50px;
    height: 50px;
    color: #FFF;
    background-color: #1c629e;
    border-radius: 50%;
    cursor: pointer;
    display: none;
}

.wizard {
    padding-left: 20px;
    padding-right: 20px;
}
.wizard .win-reason {
    font-size: 25px;
    margin-bottom: 20px;
    line-height: 1.2;
}
.wizard .winner {
    display: none;
}
/*
.wizard .win-reason::after {
    
    display: block;
    position: absolute;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f063";
    font-size: 60px;
    text-align: center;
    width: calc(100% - 40px);
    bottom: -8px;
}
*/
/*
.wizard {
    background-color: #000000;
    color: #ffffff;
    max-width: 400px;
    width: 400px;
    position: absolute;
    left: calc(50% - 200px);
    top: 25px;
    border: 1px solid gray;
    border-radius: 10px;
    padding: 10px;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    overflow: hidden;
    z-index: 10;
}
.wizard.bottom {
    top: unset;
    bottom: 25px;
}
.wizard.bottom section {
    min-height: unset;
}
.wizard section {
    display: none;
    min-height: 450px;
}
.wizard section p {
    text-align: center;
}
.wizard section.active {
    display: block;
}
.wizard section.klaviyo .buttons {
    margin-top: 0;
}
.wizard section h2, .wizard section h3, .wizard section h4 {
    text-align: center;
}
.wizard .buttons {
    margin: 20px 0 5px;
    
}
.wizard .buttons button {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    padding: 10px 0; 
    border:none;
    cursor: pointer;
}
.wizard button.next {
    float: right;
}

.wizard .game-mode-button-wrapper {
    width: 100%;
    text-align: center;
}

.wizard .game-mode-button-wrapper button {
    width: 200px;
    padding: 20px;
    margin: 0 auto;
    background-color: green;
    color: white;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
}
*/

.hide {
    display: none;
}

.image-wrapper {
    width: 100%;
    text-align: center;
}
.rps-container {
    width: 100%;
    text-align: center;
}

/*
@media screen and (max-width: 768px) {
    .wizard {
        max-width: 90%;
        width: 90%;
        left: 5%;
        top: 25px;
    } 
}
*/

.sticky-footer {

    height: 50px;
    position: sticky;
    width: 100vw;
    top: calc(100dvh - 50px);
    /* background-color: grey; */
    cursor: pointer;
    background-color: #1c629e;
    
    padding-left: 10px;
}

.sticky-footer .help span,
.sticky-footer .help-close span {
    font-size: 22px;
    color: #fff;
    width: 200px;
    text-align: center;
    vertical-align: 2px;
}
.sticky-footer .help i,
.sticky-footer .help-close i {
    width: 50px;
    text-align: center;
    line-height: 50px;
    font-size: 25px;

    color: #fff;
    line-height: 50px;
}
.help-active .sticky-footer {
    top: 0;
    position: absolute;
    z-index: 3;
}
.help-active .help {
    display: none;
    cursor: pointer;
}
.help-close {
    display: none;
    cursor: pointer;
}
.help-active .help-close {
    display: block;
}



.chevron-container {
    text-align: left;
    font-size: 28px;
    color: #000;
    width: 30px;
    text-align: center;
    position: absolute;
    top: 0;
}
.chevron2 {
    margin-top: -20px;
    opacity: 0.6;
}
.chevron3 {
    margin-top: -20px;
    opacity: 0.3;
}

.center {
    text-align: center;
}

.help-container {
    margin-top: 50px;
    min-height: calc(100vh - 50px);
    max-height: calc(100vh - 50px);
    width: 100vw;
    color: #fff;
    /* padding: 10px; */
    position: absolute;
    top: 0;
    z-index: 5;
    display: none;
    background-color: var(--background-color); 
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
}
.help-active .help-container {
    display: block;
}
.help-container section {
    min-height: calc(100vh - 50px);
    max-height: calc(100vh - 50px);
    height: 100vh;
    scroll-snap-align: start;
    padding: 10px;
}
.help-container h2, .help-container h3 {
    margin-top: 0;
    margin-bottom: 5px;
    text-align: center;
    line-height: 1.2;
}
.help-container p {
    line-height: 1.4;
    font-size: 1.1rem;
}
.help-container .help-bob-image {
    margin: 0 auto;
    display: block;
}
.help-container .header-wrapper {
    background-color: #C5151D;
    margin: 0 10px;
    border-radius: 30px;
    padding: 10px;
}
.help-container .klaviyo h4 {
    margin-bottom: 0;
    line-height: 1.4;
    margin-top: 10px;
}

.help-container .scroll-for-more {
    width: 152px;
    height: 20px;
    position: fixed;
    left: 50%;
    bottom: 200px;
    transform: translate(-50%, 0);
    z-index: 1000;
  }

.help-container .scroll-for-more div {
    position: relative;
    width: 152px;
    height: 288px;
    background-size: 100% 100%;
    border-radius: 100px;
    background-size: 225%;
    -webkit-animation: nudgeMouse 5s ease-out infinite;
            animation: nudgeMouse 5s ease-out infinite;
    transform: scale(0.5);
  }
  .help-container .scroll-for-more div:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    background-color: lightgrey;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    -webkit-animation: trackBallSlide 5s linear infinite;
            animation: trackBallSlide 5s linear infinite;
  }
  
  .help-container .scroll-for-more div:before {

    
    content: "";
    background-image: url(../SVG/hand-pointer-regular.svg);
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    
    right: 0;
    bottom: 65px;
    left: 67px;
    width: 130px;
    height: 100px;
    transform: rotate(-47deg);
    -webkit-animation: pointerSlide 5s linear infinite;
    animation: pointerSlide 5s linear infinite;

  }
  
  @keyframes trackBallSlide {
    0% {
      opacity: 1;
      -webkit-transform: scale(1) translateY(100px);
              transform: scale(1) translateY(100px);
    }
    6% {
      opacity: 1;
      -webkit-transform: scale(0.9) translateY(-25px);
              transform: scale(0.9) translateY(-25px);
    }
    14% {
      opacity: 0;
      -webkit-transform: scale(0.4) translateY(-200px);
              transform: scale(0.4) translateY(-200px);
    }
    15%, 19% {
      opacity: 0;
      -webkit-transform: scale(0.4) translateY(100px);
              transform: scale(0.4) translateY(100px);
    }
    28%, 29.99% {
      opacity: 1;
      -webkit-transform: scale(1) translateY(100px);
              transform: scale(1) translateY(100px);
    }
    30% {
      opacity: 1;
      -webkit-transform: scale(1) translateY(100px);
              transform: scale(1) translateY(100px);
    }
    36% {
      opacity: 1;
      -webkit-transform: scale(0.9) translateY(-25px);
              transform: scale(0.9) translateY(-25px);
    }
    44% {
      opacity: 0;
      -webkit-transform: scale(0.4) translateY(-200px);
              transform: scale(0.4) translateY(-200px);
    }
    45%, 49% {
      opacity: 0;
      -webkit-transform: scale(0.4) translateY(100px);
              transform: scale(0.4) translateY(100px);
    }
    58%, 59.99% {
      opacity: 1;
      -webkit-transform: scale(1) translateY(100px);
              transform: scale(1) translateY(100px);
    }
    60% {
      opacity: 1;
      -webkit-transform: scale(1) translateY(100px);
              transform: scale(1) translateY(100px);
    }
    66% {
      opacity: 1;
      -webkit-transform: scale(0.9) translateY(-25px);
              transform: scale(0.9) translateY(-25px);
    }
    74% {
      opacity: 0;
      -webkit-transform: scale(0.4) translateY(-200px);
              transform: scale(0.4) translateY(-200px);
    }
    75%, 79% {
      opacity: 0;
      -webkit-transform: scale(0.4) translateY(100px);
              transform: scale(0.4) translateY(100px);
    }
    88%, 100% {
      opacity: 1;
      -webkit-transform: scale(1) translateY(100px);
              transform: scale(1) translateY(100px);
    }
  }
  @keyframes pointerSlide {
    0% {
      opacity: 1;
      -webkit-transform: translateY(100px);
              transform: translateY(100px);
    }
    6% {
      opacity: 1;
      -webkit-transform: translateY(-25px);
              transform: translateY(-25px);
    }
    14% {
      opacity: 0;
      -webkit-transform: translateY(-200px);
              transform: translateY(-200px);
    }
    15%, 19% {
      opacity: 0;
      -webkit-transform: translateY(100px);
              transform: translateY(100px);
    }
    28%, 29.99% {
      opacity: 1;
      -webkit-transform: translateY(100px);
              transform: translateY(100px);
    }
    30% {
      opacity: 1;
      -webkit-transform: translateY(100px);
              transform: translateY(100px);
    }
    36% {
      opacity: 1;
      -webkit-transform: translateY(-25px);
              transform: translateY(-25px);
    }
    44% {
      opacity: 0;
      -webkit-transform: translateY(-200px);
              transform: translateY(-200px);
    }
    45%, 49% {
      opacity: 0;
      -webkit-transform: translateY(100px);
              transform: translateY(100px);
    }
    58%, 59.99% {
      opacity: 1;
      -webkit-transform: translateY(100px);
              transform: translateY(100px);
    }
    60% {
      opacity: 1;
      -webkit-transform: translateY(100px);
              transform: translateY(100px);
    }
    66% {
      opacity: 1;
      -webkit-transform: translateY(-25px);
              transform: translateY(-25px);
    }
    74% {
      opacity: 0;
      -webkit-transform: translateY(-200px);
              transform: translateY(-200px);
    }
    75%, 79% {
      opacity: 0;
      -webkit-transform: translateY(100px);
              transform: translateY(100px);
    }
    88%, 100% {
      opacity: 1;
      -webkit-transform: translateY(100px);
              transform: translateY(100px);
    }
  }


/*
.help-container .scroll-for-more {
    width: 40px;
    height: 40px;
    position: fixed;
    left: 50%;
    bottom: 40px;
    transform: translate(-50%, 0);
    z-index: 1000;
  }
  .help-container .scroll-for-more::before {
    display: block;
    position: absolute;
    left: 50%;
    top: 0;
    content: "";
    border-radius: 50%;
    width: 20px;
    height: 20px;
    transform: translate(-50%, 40px) scale(0.5, 0.5);
    background: #ccc;
    animation: scrollDown 1.5s linear infinite;
  }
  
  @keyframes scrollDown {
    0% {
      transform: translate(-50%, 40px) scale(0.5, 0.5);
      opacity: 1;
      animation-timing-function: ease-in;
    }
    10% {
      transform: translate(-50%, 20px) scale(0.4, 0.65);
      animation-timing-function: ease-out;
    }
    20% {
      transform: translate(-50%, 0px) scale(0.6, 0.4);
      animation-timing-function: ease;
    }
    30% {
      transform: translate(-50%, 0px) scale(0.5, 0.5);
      animation-timing-function: ease-in;
      opacity: 1;
      filter: blur(0px);
    }
    50% {
      transform: translate(-50%, 0px) scale(0.9, 0.9);
      opacity: 0.4;
      filter: blur(0.5px);
    }
    65% {
      transform: translate(-50%, 20px) scale(1, 1.2);
      filter: blur(1px);
      opacity: 0.3;
    }
    80% {
      transform: translate(-50%, 40px) scale(1.05, 0.95);
      animation-timing-function: ease-out;
      opacity: 0.4;
      filter: blur(0.5px);
    }
    100% {
      transform: translate(-50%, 40px) scale(0.5, 0.5);
      opacity: 1;
      filter: blur(0px);
    }
  }
  */
/*
.help-container .scroll-for-more {
    height: 30px;
    position: sticky;
    bottom: 0;
    text-align: center;
}
.help-container .scroll-for-more i {
    width: 30px;
    text-align: center;
    line-height: 30px;
    font-size: 25px;
    cursor: pointer;
    position: absolute;
    left: calc(50% - 20px);
    animation: chevron-fade 3s linear infinite;
}
.help-container .scroll-for-more i:first-of-type {
    color: red;
    bottom: 5px;
    animation-delay: 1s;
}
.help-container .scroll-for-more i:last-of-type {
    color: green;
    bottom: 15px;
    animation-delay: 2s;
}

@keyframes chevron-fade {
    0% {
        opacity: 0.5;
        
    }
    100% {
        opacity: 1;
     
    }
}
*/

.game-over-modal {
    display: none;
    position: absolute;
    
    z-index: 5;
    width: 336px;
    left: calc(50% - 167px);
    top: 219px;
    height: 148px;
    background-color:#707070de;
    border-radius: 20px;
    transform: rotate(348deg);
    color: #fff;
    font-size: 37px;
    text-align: center;
    line-height: 55px;
}
.game-over-modal .inner {
    width: 100%;
    height: 100%;
    padding: 20px;
    display: none;
    background-image: url('../SVG/border.svg');
    background-repeat: no-repeat;
}
.game-over-modal .inner-lose {
    background-image: url('../SVG/border-lose.svg');

}
.game-over-modal .inner-win,
.game-over-modal .inner-lose {
    display: none;
}
.game-over-modal .inner button {
    display: block;
    margin: 0 auto;
    font-size: 20px;
    padding: 10px 20px;
    font-weight: bold;
    border-radius: 10px;
    border-color: #5f5f5f;
    border-width: 3px;
}