html {
    width: 100%;
    height: 100%;
}

.background_web {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1000;
}

.image_button {
    width: 80px;
    height: 80px;
    min-width: 80px;
    min-height: 80px;

    filter: drop-shadow(5px 5px 3px rgba(0, 0, 0, 0.5));
}

.shadow_big {
    -webkit-box-shadow: 5px 5px 10px 5px rgba(0, 0, 0, 0.5);
    box-shadow: 5px 5px 10px 5px rgba(0, 0, 0, 0.5);
}

.shadow_norm {
    -webkit-box-shadow: 3px 3px 10px 3px rgba(0, 0, 0, 0.5);
    box-shadow: 3px 3px 10px 3px rgba(0, 0, 0, 0.5);
}

.heartbeat {
    -webkit-animation: heartbeat 10s ease-in-out 5s infinite both;
    animation: heartbeat 10s ease-in-out 5s infinite both;
}

@-webkit-keyframes heartbeat {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    10% {
        -webkit-transform: scale(0.91);
        transform: scale(0.91);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    17% {
        -webkit-transform: scale(0.98);
        transform: scale(0.98);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    33% {
        -webkit-transform: scale(0.87);
        transform: scale(0.87);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    45% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
}
@keyframes heartbeat {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    10% {
        -webkit-transform: scale(0.91);
        transform: scale(0.91);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    17% {
        -webkit-transform: scale(0.98);
        transform: scale(0.98);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    33% {
        -webkit-transform: scale(0.87);
        transform: scale(0.87);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    45% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
}

/* table */
@import url(https://fonts.googleapis.com/css?family=Roboto:400,500,700,300,100);

div.table-title {
    display: block;
    margin: auto;
    max-width: 600px;
    padding: 5px;
    width: 100%;
}

.table-title h3 {
    font-size: 25px;
    font-weight: 400;
    font-style: normal;
    font-family: "Roboto", helvetica, arial, sans-serif;
    text-shadow: -1px -1px 1px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
}

/*** Table Styles **/

.table-fill {
    background: white;
    border-radius: 3px;
    border-collapse: collapse;
    height: 320px;
    margin: auto;
    max-width: 600px;
    padding: 5px;
    width: 100%;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    animation: float 5s infinite;
}

th {
    color: #d5dde5;
    background: #1b1e24;
    border-bottom: 4px solid #9ea7af;
    border-right: 1px solid #343a45;
    font-size: 23px;
    font-weight: 100;
    padding: 10px;
    text-align: center;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
    vertical-align: middle;
}

th:first-child {
    border-top-left-radius: 3px;
}

th:last-child {
    border-top-right-radius: 3px;
    border-right: none;
}

tr {
    border-top: 1px solid #c1c3d1;
    border-bottom-: 1px solid #c1c3d1;
    color: #666b85;
    font-size: 16px;
    font-weight: normal;
    text-shadow: 0 1px 1px rgba(256, 256, 256, 0.1);
}

tr:hover td {
    background: #4e5066;
    color: #ffffff;
    border-top: 1px solid #22262e;
}

tr:first-child {
    border-top: none;
}

tr:last-child {
    border-bottom: none;
}

tr:nth-child(odd) td {
    background: #ebebeb;
}

tr:nth-child(odd):hover td {
    background: #4e5066;
}

tr:last-child td:first-child {
    border-bottom-left-radius: 3px;
}

tr:last-child td:last-child {
    border-bottom-right-radius: 3px;
}

td {
    background: #ffffff;
    padding: 20px;
    text-align: left;
    vertical-align: middle;
    font-weight: 300;
    font-size: 18px;
    text-shadow: -1px -1px 1px rgba(0, 0, 0, 0.1);
    border-right: 1px solid #c1c3d1;
}

td:last-child {
    border-right: 0px;
}

th.text-left {
    text-align: left;
}

th.text-center {
    text-align: center;
}

th.text-right {
    text-align: right;
}

td.text-left {
    text-align: left;
}

td.text-center {
    text-align: center;
}

td.text-right {
    text-align: right;
}

/* buttons */

button {
    --hover-shadows: 6px 6px 10px #121212, -6px -6px 10px #303030 !important;
    --accent: fuchsia !important;
    font-weight: bold !important;
    letter-spacing: 0.1em !important;
    border: none !important;
    border-radius: 1.1em !important;
    background-color: #212121 !important;
    cursor: pointer !important;
    color: white !important;
    padding: 1em 2em !important;
    transition: box-shadow ease-in-out 0.3s, background-color ease-in-out 0.1s,
        letter-spacing ease-in-out 0.1s, transform ease-in-out 0.1s !important;
    /* box-shadow: 3px 3px 5px #1c1c1c, -3px -3px 3px #262626 !important; */
}

.button-prev,
.button-next {
    display: block;
    position: relative;
    width: 56px;
    height: 56px;
    margin: 0;
    overflow: hidden;
    outline: none;
    background-color: transparent;
    cursor: pointer;
    border: 0;
}

.button-prev:before,
.button-next:before,
.button-prev:after,
.button-next:after {
    content: "";
    position: absolute;
    border-radius: 50%;
    inset: 7px;
}

.button-prev:before,
.button-next:before {
    border: 4px solid #a1a1a1;
    transition: opacity 0.4s cubic-bezier(0.77, 0, 0.175, 1) 80ms,
        transform 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955) 80ms;
}

.button-prev:after,
.button-next:after {
    border: 4px solid #5c8694;
    transform: scale(1.3);
    transition: opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
        transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
}

.button-prev:hover:before,
.button-next:hover:before,
.button-prev:focus:before,
.button-next:focus:before {
    opacity: 0;
    transform: scale(0.7);
    transition: opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
        transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.button-prev:hover:after,
.button-next:hover:after,
.button-prev:focus:after,
.button-next:focus:after {
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.4s cubic-bezier(0.77, 0, 0.175, 1) 80ms,
        transform 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955) 80ms;
}

.button-prev-box,
.button-next-box {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
}

.button-prev-elem {
    display: block;
    width: 20px;
    height: 20px;
    margin: 17px 18px 0 18px;
    transform: rotate(180deg);
    fill: #969595;
}
.button-next-elem {
    display: block;
    width: 20px;
    height: 20px;
    margin: 20px 18px 0 18px;
    transform: rotate(0deg);
    fill: #969595;
}

/* .button-prev:hover .button-prev-box,
.button-prev:focus .button-prev-box {
    transition: 0.4s;
    transform: translateX(-56px);
}

.button-next:hover .button-next-box,
.button-next:focus .button-next-box {
    transition: 0.4s;
    transform: translateX(56px);
} */

button_submit {
    /* Variables */
    --button_radius: 0.75em;
    --button_color: #e8e8e8;
    --button_outline_color: #000000;
    font-size: 17px;
    font-weight: bold;
    border: none;
    border-radius: var(--button_radius);
    background: var(--button_outline_color);
}

.button_submit_top {
    display: block;
    box-sizing: border-box;
    border: 2px solid var(--button_outline_color);
    border-radius: var(--button_radius);
    padding: 0.75em 1.5em;
    background: var(--button_color);
    color: var(--button_outline_color);
    transform: translateY(-0.2em);
    transition: transform 0.1s ease;
}

button_submit:hover .button_top {
    /* Pull the button_submit upwards when hovered */
    transform: translateY(-0.33em);
}

button_submit:active .button_top {
    /* Push the button_submit downwards when pressed */
    transform: translateY(0);
}

.buy-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #4caf50;
    color: white;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
}

.buy-button:hover {
    background-color: #45a049;
    text-decoration: underline;
}

.buy-button-already {
    display: inline-block;
    padding: 10px 20px;
    background-color: #4caf50;
    color: white;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    text-decoration: none;
}

.buy-button-worst {
    display: inline-block;
    padding: 10px 20px;
    background-color: #af954c;
    color: white;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
}

/* checkbox */

.checkbox-container {
    display: inline-block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 16px;
    user-select: none;
}

.custom-checkbox {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border-radius: 4px;
    transition: background-color 0.3s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

.custom-checkbox:checked ~ .checkmark {
    background-color: #2196f3;
    box-shadow: 0 3px 7px rgba(33, 150, 243, 0.3);
}

.custom-checkbox:checked ~ .checkmark:after {
    display: block;
}

@keyframes checkAnim {
    0% {
        height: 0;
    }

    100% {
        height: 10px;
    }
}

.custom-checkbox:checked ~ .checkmark:after {
    animation: checkAnim 0.2s forwards;
}

/* CARD */
.card {
    width: 300px;
    height: 580px;
    border-radius: 30px;
    background: lightgrey;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 50px -12px inset,
        rgba(0, 0, 0, 0.3) 0px 18px 26px -18px inset;
}

.card_game {
    width: 300px;
    height: 480px;
    border-radius: 30px;
    background: lightgrey;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 50px -12px inset,
        rgba(0, 0, 0, 0.3) 0px 18px 26px -18px inset;
}

/* pagination */

/* .pagination-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.pagination {
    display: inline-flex;
    list-style-type: none;
    padding: 0;
}

.pagination li {
    margin: 0 5px;
}

.pagination li a {
    display: block;
    padding: 8px 16px;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s;
}

.pagination li a:hover,
.pagination li a:focus {
    background-color: #007bff;
    color: #fff;
    outline: none;
}

.pagination li.active a {
    background-color: #007bff;
    color: #fff;
    border-color: #007bff;
    cursor: default;
}

.pagination li.disabled a {
    background-color: #f8f9fa;
    color: #6c757d;
    cursor: not-allowed;
}

.pagination li.disabled a:hover {
    background-color: #f8f9fa;
    color: #6c757d;
}

@media (max-width: 576px) {
    .pagination li a {
        padding: 6px 12px;
        font-size: 14px;
    }
} */

.cup_in_list {
    width: 50px;
    height: 50px;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 150px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

img {
    cursor: pointer;
}

.img-game {
    width: 100px;
    height: 100px;

    border: 3px outset #ffb300;
    border-radius: 25px;
}

.w-200 {
    width: 200px;
}
.w-150 {
    width: 150px;
}
.w-100 {
    width: 100px;
}

.h-200 {
    height: 200px;
}
.h-150 {
    height: 150px;
}
.h-100 {
    height: 100px;
}


/* store ↓ */
.store_header {
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 1.75rem;
    text-align: center;
}

.store_description {
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5rem;
    text-align: center;
}
/* store ↑ */