:root {
    --primary: #e30613 !important;
    --success: rgb(0, 178, 0) !important;
}

* {
    box-sizing: border-box;
    color: var(--primary);
    padding: 0;
    margin: 0;
    font-size: clamp(15px, 1.07vw, 20px);
    line-height: 1.2;
    transition: all 0.2s;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
main {
    padding: 0 0.8rem;
    flex-grow: 1;
}

/* TEXT COLOR */
.text-primary {
    color: var(--primary) !important;
}
.text-success {
    color: var(--success);
}
.text-white {
    color: white;
}
.text-black {
    color: #1d1d1b;
}
/* END TEXT COLOR */

/* DISPLAY */
.d-none {
    display: none;
}

.d-flex {
    display: flex;
}
.flex-wrap {
    flex-wrap: wrap;
}
.flex-row {
    flex-direction: row;
}
.flex-column {
    flex-direction: column;
}
.align-items-center {
    align-items: center;
}
.justify-content-center {
    justify-content: center;
}
/* END DISPLAY */

/* TYPOGRAPHY */
.display-6 {
    font-size: clamp(26px, 1.74vw, 33px);
}
h1,
.h1 {
    font-size: clamp(23px, 1.59vw, 30px);
    padding-bottom: clamp(10px, 0.75vw, 14px);
}
h2,
.h2 {
    font-size: clamp(20px, 1.33vw, 25px);
}
h3,
.h3 {
    font-size: clamp(18px, 1.22vw, 23px);
}
p {
    line-height: 1.5;
}

.uppercase {
    text-transform: uppercase;
}
/* END TYPOGRAPHY */

/* WIDTH */
.w-100 {
    width: 100% !important;
}
.w-fit-content {
    width: fit-content;
}
/* END WIDTH */

/* MARGINS */
.mx-auto {
    margin-left: auto;
    margin-right: auto;
}
.my {
    margin-top: clamp(25px, 3.05vw, 58px);
    margin-bottom: clamp(25px, 3.05vw, 58px);
}
/* END MARGINS */

/* TEXT ALIGNMENT */
.text-center {
    text-align: center;
}
/* END TEXT ALIGNMENT */

/* CONTAINER */
.container {
    width: 100%;
    max-width: clamp(1110px, 85.44vw, 1640px);
    margin-left: auto;
    margin-right: auto;
}
/* END CONTAINER */

/* CARD */
.card {
    border: solid clamp(2px, 0.18vw, 3px) rgba(227, 6, 19, 0.56) !important;
    border-radius: clamp(10px, 0.8vw, 13px) !important;

    padding: clamp(30px, 2.47vw, 47px) clamp(0.8rem, 4.61vw, 88px) !important;

    box-shadow: 0 clamp(4px, 0.39vw, 7px) clamp(15px, 1.33vw, 25px) 0
        rgba(0, 0, 0, 0.16) !important;
}
.draw-games-select {
    width: 100%;
    height: 65px;
    text-align: center;
    border: none;
    border-radius: 12px;
    font-size: 26px;
    color: white !important;
    background-color: #09b76e !important;
    -moz-appearance: none; /* Firefox */
    -webkit-appearance: none; /* Safari and Chrome */
    appearance: none;
    background: url(../images/icons/arrow-down.svg) no-repeat;
    background-position: calc(100% - 35px) 35%;
    background-size: 30px;
}
.corner-logo {
    background-image: url("../images/corner-logo.png");
    background-repeat: no-repeat;
    background-position: 100% 100%;
    background-size: clamp(100px, 6.44vw, 123px);
}
/* END CARD */

/* BUTTONS */
.btn {
    background-color: var(--primary) !important;
    color: white;
    font-size: clamp(20px, 1.69vw, 32px);
    border-radius: clamp(8px, 1.11vw, 21px);
    line-height: 1;
    padding: clamp(16px, 1.33vw, 25px) 1rem;
    width: 100%;
    max-width: clamp(240px, 18.25vw, 350px);
    min-width: fit-content;
    white-space: nowrap;
    border: none;
    cursor: pointer;
}
.btn:hover {
    transform: scale(1.03);
    box-shadow: 0 3px 8px 0 rgba(128, 128, 128, 0.8);
}
.btn:active {
    transform: none;
    box-shadow: none;
}
.btn.alt {
    color: var(--primary);
    background-color: white;
}
.btn.sm {
    font-weight: bold;
    font-size: clamp(18px, 1.22vw, 23px);
    padding: clamp(12px, 0.86vw, 16px) 1.5rem;
    max-width: clamp(148px, 11.33vw, 217px);
    border-radius: clamp(8px, 0.65vw, 12px);
}

.watch-draw-btn {
    display: flex;
    align-items: center;
    gap: clamp(10px, 0.91vw, 17px);
    width: fit-content !important;
}
.watch-draw-btn > img {
    width: clamp(25px, 1.9vw, 36px);
    object-fit: contain;
}
/* END BUTTONS */

/* FORM CONTROLS */
.form-control {
    margin-bottom: clamp(20px, 1.59vw, 30px);
    font-size:0.9rem !important;

}
.form-control > div {
    position: relative;
    border-bottom: solid 1px rgba(112, 112, 112, 0.36);
    width: 100%;
    height: 75px;
}
.form-control label {
    position: absolute;
    font-size: clamp(18px, 1.28vw, 24px);
    bottom: clamp(0px, 1.17vw, 22px);
    line-height: 1;
    pointer-events: none;
    transition: bottom 0.2s, font-size 0.2s;
}
.form-control > div.active label {
    bottom: calc(100% - clamp(16px, 0.96vw, 18px));
    font-size: clamp(16px, 0.96vw, 18px);
}
.form-control input,
.form-control select,
textarea {
    width: 100%;
    font-size: clamp(18px, 1.28vw, 24px);
    background: none;
    border: none;
    outline: none;
    height: 100%;
}
textarea {
    padding: clamp(15px, 2.16vw, 41px) clamp(15px, 2.26vw, 43px);
    border-radius: 5px;
    border: solid 1px rgba(112, 112, 112, 0.36);
    height: clamp(150px, 11.59vw, 222px);
    resize: vertical;
}
textarea::placeholder {
    color: var(--primary);
}

.form-control .error {
    display: inline-block;
    font-size: clamp(16px, 0.96vw, 18px);
    padding-top: clamp(8px, 0.81vw, 15px);
}

.pos-search-btn {
    background: none;
    border: none;
    position: absolute;
    bottom: clamp(5px, 0.81vw, 15px);
    width: clamp(20px, 1.64vw, 31px);
    cursor: pointer;
}
.pos-search-btn > img {
    object-fit: contain;
    width: 100%;
}
/* END FORM CONTROLS */

/* BALL */
.ball {
    position: relative;
    width: clamp(50px, 3.15vw, 60px);
    height: clamp(50px, 3.15vw, 60px);
}
.ball svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.ball p {
    position: relative;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    direction: rtl;
}
/* END BALL */

/* COUNTDOWN */
.countdown-container > div:nth-child(odd) {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--primary);
    text-align: center;
    border-radius: clamp(5px, 0.34vw, 6px);
    width: clamp(53px, 6vw, 84px);
    height: clamp(65px, 4.14vw, 79px);
}
.countdown-container > div:nth-child(odd) > * {
    color: white;
    padding-bottom: 0;
}
.countdown-container > div:nth-child(odd) > h3 {
    font-size: clamp(16px, 1.22vw, 23px);
}
.countdown-container > div:nth-child(even) {
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(15px, 4vw, 60px);

    color: var(--primary);
    font-size: clamp(30px, 2.11vw, 40px);
    font-family: "ts_rotgerbold";
}
/* END COUNTDOWN */

/* SHORTCUTS */
.shortcuts {
    padding: 0 !important;
}
.shortcuts a {
    gap: clamp(0px, 1.07vw, 20px);
    text-align: center;
    align-items: center;
    text-decoration: none;
    padding: clamp(15px, 1.28vw, 24px) clamp(1rem, 3.15vw, 60px);
    border-radius: clamp(10px, 0.8vw, 13px);
}
.shortcuts a svg {
    height: auto;
    width: clamp(90px, 5.75vw, 110px);
}
.shortcuts a,
.shortcuts a > span > *,
.shortcuts a path {
    transition: background 0.2s, color 0.2s;
}
.shortcuts a h1 {
    padding-bottom: clamp(0px, 0.6vw, 11px);
}

.shortcuts a:hover {
    background-color: var(--primary);
}
.shortcuts a:hover > span > * {
    color: white;
}
.shortcuts a:hover svg.fill path {
    fill: white !important;
}
.shortcuts a:hover svg.stroke path {
    stroke: white !important;
}
/* END SHORTCUTS */

/* CHECK RESULTS */
.check-results {
    background-color: var(--primary);
    padding-top: clamp(15px, 0.96vw, 18px);
    padding-bottom: clamp(15px, 0.96vw, 18px);
    gap: clamp(20px, 4.14vw, 79px);
}
.check-results > div {
    gap: clamp(15px, 1.01vw, 19px);
}
.check-results > div > img {
    height: auto;
    width: clamp(100px, 8.46vw, 162px);
}
.check-results > div > h1 {
    min-width: clamp(120px, 8.2vw, 157px);
}
.check-results form {
    gap: clamp(10px, 1.48vw, 28px);
    width: 100%;
}
.check-results form > div {
    width: 100%;
    max-width: clamp(500px, 32.79vw, 629px);
}
.check-results input {
    border: solid 1px white;
    border-radius: clamp(8px, 1.11vw, 21px);
    font-size: clamp(20px, 1.69vw, 32px);
    text-align: center;
    color: white;
    background: none;
    outline: none;
    width: 100%;
    padding: clamp(9px, 0.75vw, 14px);
}
.check-results input::placeholder {
    color: white;
}
/* END CHECK RESULTS */

/* ARE YOU A WINNER */
.are-you-a-winner {
    padding-top: clamp(35px, 3.88vw, 74px);
    padding-bottom: clamp(35px, 3.88vw, 74px);
}
.are-you-a-winner > div {
    gap: clamp(25px, 2.99vw, 57px);
}
.are-you-a-winner > div > div:first-child > img {
    width: 100%;
    max-width: 244px;
    height: auto;
}
.are-you-a-winner h1 {
    padding-bottom: clamp(10px, 1.33vw, 25px);
}
.are-you-a-winner h3 {
    padding-bottom: clamp(15px, 1.43vw, 27px);
}
/* END ARE YOU A WINNER */

/* CUSTOM TABLE */
.custom-table {
    width: 100%;
}
.custom-table th {
    padding: 0 clamp(20px, 4.19vw, 80px) clamp(15px, 1.33vw, 25px);
    border-bottom: solid 1px var(--primary);
    white-space: nowrap;
}
.custom-table td {
    font-size: clamp(20px, 1.43vw, 27px);
    text-align: center;
    padding: clamp(12px, 1.38vw, 26px) clamp(20px, 4.19vw, 80px)
        clamp(12px, 1.38vw, 26px);
    border-bottom: solid 1px rgba(112, 112, 112, 0.4);
}
.custom-table td:first-child,
.custom-table th:first-child {
    text-align: start;
}
.custom-table td:last-child,
.custom-table th:last-child {
    text-align: end;
}
.custom-table tbody > tr:last-child > td {
    border-bottom: none;
}
/* END CUSTOM TABLE */

/* CONTACT INFO */
.contact-info-container {
    padding-top: clamp(10px, 1.17vw, 22px);
    display: grid;
    gap: clamp(20px, 2.11vw, 40px);
    grid-template-columns: repeat(1, 1fr);
}
.contact-info-container > span {
    gap: clamp(15px, 1.28vw, 24px);
}
.contact-info-container > span > img {
    height: auto;
    width: clamp(40px, 3.67vw, 70px);
}
/* END CONTACT INFO */

/* AWARDS & CLASSIFICATIONS */
.awards-classifications-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: clamp(0px, 3.72vw, 71px);
    padding: clamp(30px, 3.05vw, 58px) 0 clamp(0px, 0.55vw, 10px);
}
.awards-classifications-container > div {
    gap: clamp(15px, 1.12vw, 21px);
    padding-bottom: clamp(10px, 2.21vw, 42px);
    border-bottom: solid 1px rgba(112, 112, 112, 0.4);
}
.awards-classifications-container > div:last-child {
    border: none;
}
.awards-classifications-container > div > img {
    height: auto;
    width: clamp(50px, 3.41vw, 65px);
}
.awards-classifications-container > div > span {
    gap: 5px;
}
/* END AWARDS & CLASSIFICATIONS */

/* NEWS */
.news-container {
    display: grid;
    gap: clamp(30px, 3.67vw, 70px) clamp(20px, 2.53vw, 48px);
}
.news-container > a {
    display: flex;
    flex-direction: column;
}
.news-container > a > div:first-child {
    position: relative;
    width: 100%;
    padding-top: 57%;
}
.news-container > a img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}
.news-container > a > div:last-child {
    border: solid 1px rgba(112, 112, 112, 0.28);
    padding: clamp(20px, 1.69vw, 32px) clamp(0.8rem, 1.85vw, 35px);
    flex-grow: 1;
}
.news-container > a h1 {
    padding-bottom: clamp(5px, 0.49vw, 9px);
}
/* END NEWS */

/* WINNERS */
.winners-container {
    display: grid;
    gap: clamp(30px, 3.15vw, 60px) clamp(0px, 1.85vw, 35px);
}
.winners-container > div {
    padding: clamp(20px, 1.59vw, 30px) clamp(20px, 2.11vw, 40px) 20px;
}
.winners-container > div img {
    width: clamp(150px, 9.4vw, 180px);
    height: clamp(150px, 9.4vw, 180px);
    border-radius: 100%;
}
.winners-container > div > h2 {
    padding: clamp(10px, 0.81vw, 15px) 0 5px;
}
.winners-container > div > h1 {
    padding-bottom: clamp(20px, 1.33vw, 25px);
}
.winners-container > div p {
    padding-bottom: clamp(5px, 0.55vw, 8px);
}
.winners-container > div p > span:first-child {
    width: clamp(90px, 5.75vw, 110px);
    font-weight: 700;
}
/* END WINNERS */

/* TEXT WITH IMAGE */
.text-with-image {
    gap: 2rem;
}
.text-with-image > div:first-child {
    width: 100%;
    max-width: clamp(600px, 44.92vw, 862px);
}
.text-with-image p {
    line-height: 1.82 !important;
}
.text-with-image img {
    object-fit: contain;
    width: 100%;
}
/* END TEXT WITH IMAGE */

/* SLICK  DOTS */
.slick-dots li button,
.slick-dotes li button::before {
    color: var(--primary) !important;
}
.slick-dots li.slick-active button::before,
.slick-dots li:hover button::before {
    color: var(--primary) !important;
}
/* END SLICK DOTS */

/* MODAL */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.4);
}
.modal > div {
    position: relative;
    background-color: white;
    opacity: 0;
    animation-name: modal-appear;
    animation-duration: 0.8s;
    animation-fill-mode: forwards;
}
.modal.closing > div {
    opacity: 1;
    animation-name: modal-disappear;
    animation-duration: 0.2s;
}
.modal .close {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.8rem;
    cursor: pointer;
    color: rgba(0, 0, 0, 0.4);
    font-weight: 500;
    border: none;
    background: none;
    font-size: 30px;
}
.modal .close:hover {
    color: black;
}

.errorModal {
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.3);
    position: fixed;
    z-index: 1111111111111111;
}

.errorModal .close {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.8rem;
    cursor: pointer;
    color: rgba(0, 0, 0, 0.4);
    font-weight: 500;
    border: none;
    background: none;
    font-size: 30px !important;
}
.errorModal .close:hover {
    color: black;
}
.modal > div.success {
    border-color: var(--success) !important;
}
.modal > div.success > h1,
.modal > div.success > p {
    color: var(--success);
}

a:hover {
    text-decoration: none;
}
.accordion button {
    color: var(--primary);
    outline: none;
    padding-left: 0px;
    padding-right: 0px;
}

.accordion .card-body {
    padding: 0px;
}

.accordion-button:not(.collapsed) {
    color: var(--primary);
    background-color: transparent;
    outline: none;
    box-shadow: none;
}

.accordion-item {
    border: none;
    border-bottom: 1px solid rgba(112, 112, 112, 0.26);
}

.accordion-item:last-of-type {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.login-btn {
    background-color: white;
    border: none;
    padding: 5px 10px;
}

[dir="rtl"] .accordion-button::after {
    margin-left: 0px;
    margin-right: auto;
}

.header-right {
    margin-left: auto;
    align-items: center;
    gap: 100px;
}

[dir="rtl"] .header-right {
    margin-right: auto;
    margin-left: 0;
}

.header-right button {
    background-color: white;
    border: none;
    padding: 5px 30px;
    border-radius: 12px;
    font-size: 18px;
}

[dir="rtl"] .header-right button {
    margin-right: 0px;
    margin-left: 100px;
}
.loginModal .title {
    color: black;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.loginModal .forgot {
    text-align: right;
    text-decoration: underline;
    font-size: 16px;
    margin-bottom: 30px;
    cursor: pointer;
}

.loginModal button {
    width: 100%;
    background-color: #e30613;
    color: white;
    border-radius: 12px;
    border: none;
    outline: none;
    padding: 15px 0px;
    margin-bottom: 20px;
}

.loginModal .green {
    background-color: #09b76e;
}

.loginModal .blue {
    background-color: blue;
}

.loginModal a::before {
    display: none;
}

button {
    cursor: pointer;
}

.register-line2 {
    max-width: 50%;
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

input[type="date"]:in-range::-webkit-datetime-edit-year-field,
input[type="date"]:in-range::-webkit-datetime-edit-month-field,
input[type="date"]:in-range::-webkit-datetime-edit-day-field,
input[type="date"]:in-range::-webkit-datetime-edit-text {
    color: transparent;
}


input[type="date"]:required:invalid::-webkit-datetime-edit {
    color: transparent;
}
input[type="date"]:focus::-webkit-datetime-edit {
    color: black !important;
} */

input[type="date"] {
    position: relative;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: auto;
    height: auto;
    color: transparent;
    background: transparent;
}

.row-separator {
    height: 0.5px;
    width: 100%;
    background-color: rgba(112, 112, 112, 0.2);
}

.register-btn {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

#resetModal .modal-content {
    height: fit-content;
}

#errorModal .modal-content {
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    top: 50%;
    position: absolute;
    z-index: 11111111111111111111;
    top: 50%;
    left: 50%;
    gap: 20px;
    transform: translate(-50%, -50%);
    position: fixed;
}

#errorModal .modal-content h2 {
    text-align: center;
    color: black;
}

#errorModal .modal-content p {
    text-align: center;
}

.login-container {
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
}

.login-card {
    background-color: white;
    border-radius: 10px;
    height: 375px !important;
    max-width: 500px !important;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 100px;
    gap: 20px;
}

.login-card-header {
    color: black;
    font-weight: bold;
    font-size: 16px;
    display: block;
}

.login-card > input,
.login-card > input::placeholder,
.login-card > input:active {
    color: black !important;
    font-weight: bold !important;
}

.login-btn,
.login-btn:hover,
.login-btn:active {
    background-color: #e30613 !important;
    color: white !important;
    padding: 10px 0px;
}

.slogan {
    position: absolute;
    bottom: 30px;
    right: 40px;
    z-index: 10;
}

.slogan h1 {
    font-size: 30px;
    font-weight: 900;
}

.account-header ul {
    list-style: none;
    padding: 0px 60px;
    display: flex;
    padding-top: 20px;
    justify-content: space-between;
}

.account-header ul li {
    color: black;
    cursor: pointer;
    transition: 0.3s all;
    width: 200px;
    text-align: center;
}

.account-header ul li:hover {
    color: #e30613;
}

.account-header ul .active {
    color: #e30613;
}

.profile-form {
    margin-bottom: 0px !important;
}

.profile-form .form-control > div.active label {
    color: black;
}

.change-delete {
    gap: clamp(25px, 3.05vw, 58px);
    margin-top: 0px !important;
}

.delete-form {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 90%;
}

.bottons-col button {
    background-color: transparent;
    border: solid 1px #e10717;
    width: 250px;
    height: 55px;
    border-radius: 10px;
    position: relative;
}

.bottons-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bottons-col button svg {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 25px;
    height: 55px;
}

.ball-cols {
    gap: 60px;
    border-right: 4px solid #e5e5e5;
    padding: 0px 60px;
    position: relative;
}

[dir="rtl"] .ball-cols {
    border: none;
    border-left: 4px solid #e5e5e5;
}

.ball-cols .select-numbers {
    position: absolute;
    text-align: center;
    width: 100%;
    transform: translateX(-50%);
    left: 50%;
    top: -50px;
}

.grid-balls {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.all-cols-play {
    justify-content: space-between;
    margin-top: 80px;
}

.buttons-balls {
    position: relative;
}

.select-numbers {
    position: absolute;
    text-align: center;
    width: 100%;
    transform: translateX(-50%);
    left: 50%;
    top: -50px;
    color: black;
    font-weight: bold;
    font-size: 20px;
}

.selected-numbers {
    width: 100%;
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.selected-numbers-text {
    position: absolute;
    text-align: center;
    width: 100%;
    transform: translateX(-50%);
    left: 50%;
    top: -50px;
    color: black;
    font-weight: bold;
    font-size: 20px;
}

.selected-numbers ul {
    list-style: none;
    display: flex;
    gap: 15px;
}

#add-to-cart-js {
    background-color: #09b76e;
    font-size: 18px;
}

.table-responsive {
    width: 90%;
    margin-top: 20px;
}

.table-responsive table {
    border-collapse: collapse;
}

.table-responsive .numbers-row {
    border-bottom: 2px solid #e5e5e5;
}

.table-responsive tr {
    padding: 15px 0px;
}

.table-responsive td {
    color: black;
    font-size: 16px;
    padding: 10px 0px;
}

.table-responsive td span {
    color: black;
    font-weight: bold;
    font-size: 16px;
}

.tb-header td {
    border-bottom: 4px solid #e10717;
    font-size: 16px;
    color: #e10717;
}

.buy-clear {
    display: flex;
    width: 90%;
    margin: 0 auto;
    justify-content: space-between;
}

.buy-clear button {
    width: 48% !important;
    font-weight: bold;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-size: 20px;
}

.buy-clear button:disabled{
    opacity: 0.5;
}

.buy-clear input {
    width: 28% !important;
    font-weight: bold;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-size: 20px;
}

.buy-clear input:disabled{
    opacity: 0.5;
}


.my-account-btn {
    margin-right: 20px;
}

.my-account-btn::before {
    display: none;
}

.nav-balance {
    color: white;
    display: flex;
    flex-direction: column;
}

.nav-balance .title {
    color: white;
    font-size: 16px;
    font-weight: bold;
}

.nav-balance .value {
    color: white;
    font-size: 16px;
}

.fav-table-header {
    color: black;
}

.first-row-fav {
    margin-bottom: 40px;
}

.fav-ball-nums {
    display: flex;
    gap: 40px;
    padding: 20px 0px;
}

.fav-ball-nums span {
    width: 20px;
    color: black;
}

.fav-table-row {
    border-bottom: 1px solid rgba(112, 112, 112, 0.36);
}

.check-custom {
    display: none;
}
.check-custom + label {
    position: relative;
    padding-left: 35px;
    cursor: pointer;
}
.check-custom + label:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 25px;
    height: 25px;
    border: 1px solid #000000;
    background-color: #ffffff;
}
.check-custom:checked + label:before {
    background-color: #e10717;
    border-color: #e10717;
}
.check-custom:checked + label:after {
    content: url("../images/icons/tick.svg");
    position: absolute;
    width: 25px;
    height: 25px;
    left: 0;
    text-align: center;
}
.play-selected-grids {
    display: flex;
    justify-content: flex-end;
    color: white;
    margin: 30px 0px;
}
.play-selected-grids b {
    color: white;
}

.history-table th {
    color: black;
    text-align: left !important;
    border-bottom: none;
}

[dir="rtl"] .history-table th {
    text-align: right !important;
}

.history-table td {
    border-bottom: 1px solid rgba(112, 112, 112, 0.36) !important;
    text-align: left !important;
}

[dir="rtl"] .history-table td {
    text-align: right !important;
}

.subs-table-header {
    margin-bottom: 20px;
}

.subs-table-header div {
    color: black !important;
    font-weight: bold;
}

.sub-table-row {
    border-bottom: 1px solid rgba(112, 112, 112, 0.36);
}

.custom-group-panel-nav {
    border-radius: 26px;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
    padding: 0px !important;
}
.custom-group-panel-nav ul li {
    position: relative;
    border-bottom: 2px solid #f1f2f2;
    padding: 8px 0px;
}

.custom-group-panel-nav ul li:not(.active) a {
    color: black;
}

.custom-group-panel-nav ul li:not(.active) path {
    stroke: black;
}

.custom-group-panel-nav ul li:hover a {
    color: white;
}
.custom-group-panel-nav ul li a {
    display: block;
    padding: 15px 45px;
}
.custom-group-panel-nav ul li.active:not(:hover),
.custom-group-panel-nav ul li:not(:first-child, .inactive):hover {
    color: #ffffff;
    background-color: #e30613;
}

.custom-group-panel-nav ul li.active:not(:hover) path,
.custom-group-panel-nav ul li:not(:first-child, .inactive):hover path {
    stroke: #ffffff;
}
.custom-group-panel-nav ul li svg {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}
.custom-group-panel-content {
    height: 100%;
    padding: 35px 30px;
}
.custom-group-panel-content-tabs {
    display: none;
}
.custom-group-panel-content-tabs.active {
    display: block;
}
.account-header ul {
    overflow-x: auto;
    overflow-y: hidden;
}

.fav-all-card {
    overflow-x: auto;
    overflow-y: hidden;
}

.otp-btn {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    text-transform: uppercase;
}
input[type="date"]:focus {
    outline: none;
    box-shadow: none;
}

.add-fund-title a {
    color: #e30613 !important;
}

.withdraw-right-container .form-control {
    border: none !important;
}

.shortcuts {
    flex: wrap;
}

.overflow-auto {
    overflow-x: auto;
}

.accordion-button:focus {
    box-shadow: none !important;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23e30613'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23e30613'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.subscribe-draws-container {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 90%;
    margin: 40px auto;
    justify-content: space-between;
    flex-wrap: wrap;
}

.subscribe-draws-container .draws-select {
    display: flex;
    gap: 15px;
    align-items: center;
    color: black !important;
}

.subscribe-draws-container p {
    display: flex;
    gap: 50px;
}

.subscribe-draws-container p span {
    font-size: 22px;
}

.subscribe-draws-container p .font-weight-bold {
    font-weight: bold;
}

.subscribe-draws-container .text-uppercase {
    text-transform: uppercase;
}

.subscribe-draws-container .draws-select span {
    color: black;
}

.subscribe-draws-container .draws-select label {
    color: black;
}

.subscribe-draws-container select {
    margin: 0px !important;
    width: 60px;
    border: 2px solid #e30613;
    color: black;
}
.download-price {
    display: flex;
}

.load-more-js {
    background-color: white;
    width: 180px;
    height: 50px;
    border-color: #e30613 !important;
    border-radius: 5px;
    margin-top: 40px;
    box-shadow: none;
    outline: none;
    border-style: solid;
}

.nav-favorites {
    color: white;
    display: flex;
    gap: 20px;
}

.nav-favorites-link::before {
    display: none !important;
}

.nav-favorites div {
    color: white;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
}

.nav-favorites i {
    color: white;
    font-size: 16px;
}

/* For Webkit browsers like Chrome and Safari */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* For Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}

.mini-balls {
    flex-wrap: wrap;
}

.voucher-input-spec input {
    text-align: center;
}

.voucher-input-spec label {
    text-align: center;
    width: 100%;
}

#pin-form{
    direction: ltr !important;
}

.social-login{
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-login div{
    border:1px solid black;
    border-radius: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    
}


/* //////////////////// */

@media (max-width: 1800px) {
    .account-header ul li {
        width: 120px;
    }
}

@media (max-width: 1100px) {
    .account-header ul li {
        width: 200px;
    }
}
@media (max-width: 575.98px) {
    .account-header ul li {
        width: 150px;
    }
    .account-header ul {
        padding: 0;
    }
    .my-account-btn {
        margin: 0px;
    }
    .header-right {
        width: 100%;
        gap: 20px;
        margin-left: 0px;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .nav-balance {
        width: 100px;
    }
    .login-card {
        margin: 0 10px;
        padding: 30px;
        justify-content: center;
        gap: 40px;
    }
}

.pin-input {
    width: 3rem;
    height: 3rem;
    text-align: center;
    font-size: 1.5rem;
    border: 1px solid #ccc;
    border-radius: 0;
    margin-right: 0.5rem;
}

/* Give focus style */
.pin-input:focus {
    outline: none;
    border-color: #007bff;
}

@keyframes modal-appear {
    0% {
        opacity: 0;
        scale: 0.9;
    }
    100% {
        opacity: 1;
        scale: 1;
    }
}
@keyframes modal-disappear {
    0% {
        opacity: 1;
        scale: 1;
    }
    100% {
        opacity: 0;
        scale: 0.9;
    }
}
/* END MODAL */

@media (min-width: 576px) {
    /* DISPLAY */
    .d-sm-none {
        display: none !important;
    }
    .d-sm-inline-block {
        display: inline-block;
    }
    .flex-sm-row {
        flex-direction: row;
    }
    .justify-content-sm-start {
        justify-content: start;
    }
    /* END DISPLAY */

    /* TEXT ALIGNMENT */
    .text-sm-start {
        text-align: start;
    }
    /* END TEXT ALIGNMENT */

    /* NEWS */
    .news-container {
        grid-template-columns: repeat(2, 1fr);
    }
    /* END NEWS */

    /* WINNERS */
    .winners-container {
        grid-template-columns: repeat(2, 1fr);
    }
    /* END WINNERS */
}
@media (min-width: 768px) {
    /* DISPLAY */
    .d-md-none {
        display: none !important;
    }
    .d-md-flex {
        display: flex;
    }
    .flex-md-row {
        flex-direction: row;
    }
    /* END DISPLAY */

    /* TEXT ALIGNMENT */
    .text-md-start {
        text-align: start;
    }
    /* END TEXT ALIGNMENT */

    /* SHORTCUTS */
    .shortcuts a {
        border-radius: 0;
    }
    /* END SHORTCUTS */

    /* CONTACT INFO */
    .contact-info-container {
        grid-template-columns: repeat(2, 1fr);
    }
    /* END CONTACT INFO */

    /* AWARDS & CLASSIFICATIONS */
    .awards-classifications-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .awards-classifications-container > div:nth-last-child(2) {
        border: none;
    }
    /* END AWARDS & CLASSIFICATIONS */

    /* NEWS */
    .news-container {
        grid-template-columns: repeat(3, 1fr);
    }
    /* END NEWS */

    /* WINNERS */
    .winners-container {
        grid-template-columns: repeat(3, 1fr);
    }
    /* END WINNERS */
}
@media (min-width: 992px) {
    /* DISPLAY */
    .d-lg-block {
        display: block;
    }
    .d-lg-flex {
        display: flex;
    }
    .flex-lg-row {
        flex-direction: row;
    }
    .align-items-lg-center {
        align-items: center;
    }
    /* END DISPLAY */

    /* TEXT ALIGNMENT */
    .text-lg-start {
        text-align: start !important;
    }
    /* END TEXT ALIGNMENT */

    /* CONTACT INFO */
    .contact-info-container {
        grid-template-columns: repeat(3, 1fr);
    }
    /* END CONTACT INFO */

    /* AWARDS & CLASSIFICATIONS */
    .awards-classifications-container > div > span {
        gap: clamp(0px, 2.58vw, 49px);
    }
    /* END AWARDS & CLASSIFICATIONS */

    /* WINNERS */
    .winners-container {
        grid-template-columns: repeat(3, 1fr);
    }
    /* END WINNERS */
}
@media (min-width: 1200px) {
    /* SHORTCUTS */
    .shortcuts a:nth-child(2) {
        width: 40%;
        justify-content: center;
    }
    .shortcuts a:first-child,
    .shortcuts a:last-child {
        width: 30%;
        justify-content: start;
    }

    /* END SHORTCUTS */
}

@media (max-width: 1200px) {
    .history-table {
        max-width: 1000px;
        overflow-x: auto;
    }
}

@media (max-width: 1100px) {
    .all-cols-play {
        flex-direction: column;
    }

    .buttons-balls {
        justify-content: space-between;
    }

    .ball-cols {
        gap: 30px;
        border-right: none !important;
    }
    .selected-numbers {
        margin-top: 80px;
    }
}

@media (max-width: 1000px) {
    .header-right{
        gap:30px !important;
    }
    .profile-form {
        margin-bottom: 20px !important;
    }
    .change-delete {
        flex-wrap: wrap;
    }
    .modal-content {
        width: 90% !important;
        padding: 80px 20px !important;
        height: 600px !important;
    }
    .change-password {
        margin: 0px;
    }
    .fav-ball-nums {
        gap: 20px;
    }
}
@media (max-width: 991.98px) {
    /* SHORTCUTS */
    .shortcuts a {
        justify-content: center;
    }
    .shortcuts a > svg {
        margin-bottom: clamp(8px, 0.86vw, 16px);
    }

    .subs-container {
        overflow-x: auto;
    }

    /* END SHORTCUTS */
}

@media (max-width: 800px) {
    .shortcuts {
        flex-direction: column;
    }
    .history-table tr {
        font-size: 16px !important;
    }
    .history-table td {
        font-size: 14px !important;
    }
    .buttons-balls {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    .bottons-col {
        width: 100%;
    }
    .bottons-col button {
        width: 100%;
    }
    .ball {
        width: 80px !important;
        height: 80px !important;
    }
}
@media (max-width: 767.98px) {
    /* BUTTONS */
    .btn {
        max-width: none !important;
    }
    .btn.sm {
        max-width: 217px;
    }
    /* END BUTTONS */

    /* CHECK RESULTS */
    .check-results button {
        width: 50% !important;
    }
    /* END CHECK RESULTS */

    /* SHORTCUTS */
    .shortcuts a {
        display: flex !important;
        height: 200px;
    }

    .my-account-btn button{
        font-size: 12px !important;
    }
    /* END SHORTCUTS */
}
@media (max-width: 575.98px) {
    /* CHECK RESULTS */
    .check-results button {
        width: 100% !important;
    }
    .ball {
        width: 50px !important;
        height: 50px !important;
    }
    .ball-cols {
        padding: 0px;
    }

    .mini-balls {
        flex-wrap: wrap;
    }
    .draw-games-select {
        font-size: 18px;
    }

    .download-price {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    .nav-balance {
        width: 78px;
    }
    .nav-balance .title {
        font-size: 14px;
    }
    .header-right button {
        font-size: 14px;
    }
    .header-right button {
        padding: 5px 14px;
    }
    #locale-select-js > select {
        font-size: 14px;
    }
    /* END CHECK RESULTS */
}

