.btn,
.btn2,
.btn3 {
    filter: drop-shadow(0px 4px 5px #0f0f0f);
    user-select: none;
}
.btn,
.btn2,
.btn3,
.wrapper {
    user-select: none;
}
.parlaybet,
.singlebet,
.title-box span {
    color: var(--text-col);
    text-align: center;
}
.btn.on,
.btn:hover {
    color: var(--main-col);
    background-color: #1f0331;
}
:root {
    --main-col: #f89a00;
    --text-col: whitesmoke;
    --text2-col: #4b4b4b;
    --btn-col: #f8f9fa;
    --btn2-col: #af1414;
    --text3-col: #090909;
}
body,
html {
    margin: 0;
    padding: 0;
}
body {
    background-image: url('/img/background.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    font-family: sans-serif;
    font-size: 12px;
    font-weight: 600;
}
body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: -1;
}
.base-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    place-items: center;
}

.top-logo {
    display: flex;
    justify-content: center; 
    margin-bottom: 10px;  
}
.top-logo img {
    max-width: 300px;
}

.bet-type,
.main-box,
.player-background img,
.title-box {
    width: 100%;
}
.main-box {
    max-width: 1200px;
    font-size: 14px;
}
.title-box {
    height: 3rem;
    background: linear-gradient(to bottom, #031ede 0, #022664 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px 10px 0 0;
}
.title-box span {
    font-size: large;
}
.content-box {
    display: flex;
    flex-direction: column;
    height: auto;
    background-color: rgb(1 0 255 / 22%);
    backdrop-filter: blur(5px);
    border-radius: 0 0 10px 10px;
    padding: 20px;
    gap: 20px;
}
.btn,
.btn3 {
    backdrop-filter: blur(2px);
}
.bet-type {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.parlaybet,
.singlebet {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    gap: 15px;
    transition: 0.3s;
}
.bet-wrapper {
    display: flex;
    overflow: hidden;
    padding: 5px 10px;
    justify-content: center;
}
.parlay,
.single {
    display: flex;
    transition: 0.3s;
    flex-direction: column;
    gap: 20px;
    width: 0;
    height: 0;
    opacity: 0;
}
.parlay.on,
.single.on {
    width: 100%;
    height: 100%;
    opacity: 1;
}
.btn {
    width: 100%;
    background-color: var(--btn2-col);
    border: 1px solid #c9aa62;
    border-radius: 25px;
    height: 2.75rem;
    cursor: pointer;
    font-weight: bolder;
}
.btn span {
    position: absolute;
    margin-left: 32px;
}
input[type="number"],
input[type="text"] {
    border: 1px solid #000;
    background-color: transparent;
    text-align: right;
    font-size: 18px;
    font-weight: 700;
    width: 55%;
}
input:focus {
    border: 2px solid var(--main-col);
}
.btn:hover {
    opacity: 0.8;
}
.btn:active {
    transform: translate(1px, 1px);
}
.options {
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: 10px;
    align-items: center;
}
.field {
    flex-direction: column;
}
.bet,
.odds,
.status {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: default;
    width: 100%;
    gap: 10px;
    padding: 0 12px;
    background-color: var(--btn-col);
    color: var(--text2-col);
}
.btn2,
.dropdown,
.result {
    align-items: center;
}
.status {
    z-index: 1;
}
.custom-select {
    width: 100%;
    padding-right: 20px;
    position: relative;
}
.custom-select select,
.select-hide,
input[type="checkbox"] {
    display: none;
}
.btn2,
.btn3,
.dropdown,
.isian,
.result,
.wrapper {
    display: flex;
}
.select-selected {
    background-color: transparent;
}
.select-selected:after {
    position: absolute;
    content: "";
    top: 14px;
    right: 10px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color: #000 transparent transparent;
}
.select-selected.select-arrow-active:after {
    border-color: transparent transparent #000;
    top: 7px;
}
.select-items div,
.select-selected {
    color: var(--text2-col);
    padding: 8px 0;
    border: 1px solid transparent;
    cursor: pointer;
}
.select-items div {
    padding: 8px 6px;
}
.select-items {
    position: absolute;
    background-color: var(--btn-col);
    top: 100%;
    left: -5px;
    right: 10px;
    z-index: 99;
}
.same-as-selected,
.select-items div:hover {
    background-color: rgba(0, 0, 0, 0.1);
}
.odds.select {
    z-index: 4;
}
.bet:hover,
.odds:hover,
.odds:hover .select-selected,
.status:hover,
.status:hover .select-selected {
    color: #000;
    background-color: var(--btn-col);
    opacity: 1;
}
.bet:active,
.odds:active,
.status:active {
    transform: translate(0, 0);
}
.btn2 {
    background: linear-gradient(to bottom, #0321b8 0, #020a64 100%);
    border-radius: 10px;
    height: 4rem;
    width: 100%;
    justify-content: space-between;
}
.btn3,
.result {
    flex-direction: column;
}
.btn2 span {
    position: relative;
    color: var(--text-col);
}
.btn2 span:first-child {
    left: 20px;
    font-size: 16px;
}
.btn2 span:last-child {
    right: 20px;
    font-size: 28px;
}
.result {
    gap: 15px;
    justify-content: center;
}
.btn3 {
    width: 100%;
    background-color: var(--btn-col);
    border: 1px solid var(--main-col);
    border-radius: 15px;
    height: auto;
    gap: 10px;
    align-items: center;
    justify-content: center;
}
.note span {
    color: var(--text3-col);
    align-self: flex-start;
    padding: 20px 0 0 20px;
}
.isian {
    width: 80%;
    flex-direction: column;
    padding: 10px;
    border-bottom: 1px solid #4b4b4b;
}
.isian:last-child {
    margin-bottom: 50px;
}
.dropdown {
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    background-color: #e7e7e7;
    width: 25px;
    height: 25px;
    align-self: center;
    border-radius: 50%;
    position: absolute;
    transition: 0.2s;
    margin-left: -30px;
}
.dropdown::before {
    content: ">";
    font-size: small;
    font-weight: bolder;
    position: relative;
    transition: 0.2s;
}
.dropdown.on::before {
    transform: rotate(90deg);
}
.wrapper {
    width: 100%;
    height: auto;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    cursor: pointer;
    margin-left: 25px;
}
.desc {
    position: relative;
    top: -100%;
    height: 0;
    color: #4b4b4b;
    margin-top: 0;
    opacity: 0;
    transition: 0.4s;
    overflow: hidden;
}
.desc.on {
    margin-top: 15px;
    opacity: 1;
    top: 0;
    height: auto;
}
.lgnd {
    width: 5%;
    padding: 8px;
    text-wrap: nowrap;
    text-align: center;
}
.odds.add {
    width: 42%;
}
.btn.status {
    width: 50%;
}
.btn.bet,
.btn.odds {
    padding-right: 22px;
}
.player-background {
    display: flex;
    width: 100%;
    justify-content: space-between;
    position: fixed;
    bottom: 0;
    z-index: -1;
}
.player-background div {
    width: 400px;
}
@media screen and (max-width: 850px) {
    input[type="number"],
    input[type="text"] {
        border-radius: 0;
    }
}
@media screen and (max-width: 600px) {
    body {
        background-image: url("/img/background.jpg");
    }
    .options {
        flex-direction: column;
    }
    .player-background {
        justify-content: flex-start;
    }
    .player-background img {
        width: 300px;
    }
    .player-background img[alt="player2"] {
        display: none;
    }
    .bet,
    .lgnd,
    .odds,
    .status {
        width: auto;
    }
    .lgnd {
        text-align: center;
    }
    .btn.bet,
    .btn.status,
    .odds,
    .odds.add {
        width: 91%;
    }
}