.button {
    background-color: #0091f9;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    transition: .3s ease all;
    border-radius: 5px;
    position: relative;
    overflow: hidden;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 40px;
    margin-bottom: 0.5rem;
}

.buttonAnimation .buttonSpan {
    transition: .4s ease-in-out all;
    position: absolute;
    /* left: 44%; */
}

.buttonAnimation .buttonAnimationIcon {
    display: flex;
    align-items: center;
    position: absolute;
    z-index: 2;
    left: -40px;
    transition: .3s ease-in-out all;
    opacity: 0;
}

.buttonAnimation .buttonSvg {
    color: #fff;
    width: 20px;
    height: 20px;
}

.buttonAnimation:hover {
    color: white;
    background: #1ddd95;
    border: none;
}

.buttonAnimation:hover .buttonAnimationIcon {
    left: calc(100% - 3rem);
    opacity: 1;
}

.buttonAnimation:hover .buttonSpan {
    left: 1.5rem;
}
.modal {
    background-color: rgba(0, 0, 0, 0.8);
    overflow: auto;

    display: flex !important;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.modal .content {
    width: 60%;
    border-radius: 0.5rem;

    display: flex;
    flex-direction: column;

    animation-name: LedsBorder;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

.modal .content header h2 {
    text-align: right;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

@keyframes LedsBorder {
    0% {
        border: var(--led-border-width) solid #9e5df5;
        box-shadow: 0 0 var(--led-size-blur-radius) 1px #9e5df5;
    }

    25% {
        border: var(--led-border-width) solid #65a6f1;
        box-shadow: 0 0 var(--led-size-blur-radius) 1px #65a6f1;
    }

    50% {
        border: var(--led-border-width) solid #64d5d5;
        box-shadow: 0 0 var(--led-size-blur-radius) 1px #64d5d5;
    }

    75% {
        border: var(--led-border-width) solid #65a6f1;
        box-shadow: 0 0 var(--led-size-blur-radius) 1px #65a6f1;
    }

    100% {
        border: var(--led-border-width) solid #9e5df5;
        box-shadow: 0 0 var(--led-size-blur-radius) 1px #9e5df5;
    }
}

.modal .content header {
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
    padding: 0.5rem 1rem;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;

    animation-name: LedsHeader;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

.modal .content header * {
    color: white;
    padding: 0;
    margin: 0;
}

.modal .content header .icon:hover {
    cursor: pointer;
}

.modal .content .body {
    background-color: #050825;
    border-bottom-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
    padding: 1rem 1rem 0 1rem;
    margin: 0;
    max-height: none;
    overflow-y: auto;
}

/* .modal .content .body * {
    color: white;
} */

@keyframes LedsHeader {
    0% {
        background-color: #9e5df5;
    }

    25% {
        background-color: #65a6f1;
    }

    50% {
        background-color: #64d5d5;
    }

    75% {
        background-color: #65a6f1;
    }

    100% {
        background-color: #9e5df5;
    }
}

@media screen and (max-width: 1024px) {
    .modal .content {
        width: 90% !important;
    }
}
.modalDynamicKey .code {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.modalDynamicKey .code label {
    color: white;
    text-align: center;
}
.modalDynamicKey .code input[type = "number"] {
    text-align: center;
}
.modalDynamicKey .code button {
    margin-top: 1rem;
}

.user {
    display: flex;
    flex-direction: column;
}
.user .imageProfile {
    margin-bottom: 1rem;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.user .imageProfile div {
    position: relative;
}
.user .imageProfile div .image {
    object-fit: cover;
    border-radius: 50%;
    width: 200px;
    height: 200px;
}
@keyframes LedsProfileCheck {
    0% {
        background-color: #9e5df5;
    }

    25% {
        background-color: #65a6f1;
    }

    50% {
        background-color: #64d5d5;
    }

    75% {
        background-color: #65a6f1;
    }

    100% {
        background-color: #9e5df5;
    }
}
.user .imageProfile div .verified {
    color: white;
    background-color: #1ddd95;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    padding: 0.7rem;

    position: absolute;
    bottom: 0;
    right: 0;

    animation-name: LedsProfileCheck;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}
.user .uTitle {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}
.user .uItem {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.user .uKey, .uValue {
    color: white;
}
.user .uKey {
    font-weight: bold;
}
.user button {
    margin-top: 1rem;
}

.inputNotDark {
    background-color: white;
    border-color: white;
    color: black;
}
@font-face {
    font-family: designer;
    src: url(../2dafd719ada681888994.otf);
}

.navbarSkins {
    background-color: #00063e;
}

.navbarSkins .navbarSkinsIcon {
    font-family: designer;
    font-size: 1.5rem;
    color: white;
    
    position: absolute;
}
.navbarSkins .navbarSkinsIcon:hover, 
.navbarSkins .navbarSkinsIcon:focus, 
.navbarSkins .navbarSkinsIcon:active {
    background-color: #00063e;
}
.navbarSkins .navbarSkinsIcon .navbarSkinsIconI {
    width: 52px;
    max-height: 35px;
}
.navbarSkins .navbarSkinsIcon .navbarSkinsIconL {
    width: 100px;
    max-height: 40px;
}

.navbarSkins .navbarSkinsBurger {
    color: white;
}

.navbarSkins .navbarSkinsDropdown .navbarSkinsDropdownList {
    background-color: #00063e;
}
.navbarSkins .navbarSkinsLink {
    background-color: #00063e;
    color: white;
}
.navbarSkins .navbarSkinsLink:hover {
    background: transparent;
    color: #9e5df5;
}

.navbarSkins .navbarSkinsNotification {
    position: relative;
    color: white;
}

.navbarSkins .navbarSkinsNotification .notificationNumber {
    background: red;
    margin-top: 1rem;
    border: 0.1rem solid white;
    border-radius: 50%;
    width: 1.3rem;
    height: 1.3rem;

    display: flex;
    justify-content: center;
    align-items: center;

    position: absolute;
    right: 0;
}

.navbarSkins .navbarSkinsNotification .notificationNumber small {
    color: white;
    text-align: center;
}

.navbarSkins .navbarSkinsNotification .notificationNumber .twoDigit {
    font-size: 0.7rem;
}

.navbarSkins .navbarSkinsNotification .notificationNumber .threeDigit {
    font-size: 0.6rem;
}

/* .navbarSkins .is-white {
    color: white;
}

.navbarSkins .is-red {
    color: red;
} */

@media screen and (max-width: 1024px) {
    .navbar-brand {
        justify-content: space-between;
        align-items: center;
    }

    .navbarSkins .buttonsResponse {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }

    .navbarSkins .buttonsResponse a {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .navbarSkins .navbarSkinsDropdown {
        padding: 0;
    }
}
footer {
    background-color: #00063e;
    padding: 1rem;
    width: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

footer .information label {
    color: white;
}

footer .terms {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0.5rem
}

footer .terms .circle {
    color: #485fc7;
    font-size: 0.3rem;
}

footer .icons .icon {
    margin-top: 0.5rem;
}

footer .icons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

footer .icons .icon {
    width: 25px;
    height: 25px;
}

@media screen and (max-width: 1024px) {
    footer {
        flex-direction: column;
        gap: 0;
    }

    footer .terms {
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;

        flex-direction: column;
        gap: 0;
    }

    footer .terms .circle {
        display: none;
    }

    footer .icons .icon {
        width: 40px;
        height: 40px;
    }
}
.showMessageLogin {
    background-color: rgba(5, 8, 37, 0.9);
    position: sticky;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1rem 5rem;

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.showMessageLogin label {
    color: white;
    font-size: 18px;

    flex: 3;
}

.showMessageLogin .buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;

    flex: 2;
}

.showMessageLogin .buttons .button {
    width: 45%;
}

@media screen and (max-width: 1024px) {
    .showMessageLogin {
        padding: 1rem;
        flex-direction: column;
    }

    .showMessageLogin label {
        text-align: center;
        margin-bottom: 1rem;

        flex: 0;
    }

    .showMessageLogin .buttons {
        width: 100%;
    }

    .showMessageLogin .buttons .button {
        margin-right: 0 !important;
        height: 30px;
    }

    .showMessageLogin .buttons .buttonAnimation .buttonSpan {
        font-size: 12px;
    }
}
.modalRegister {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 0.5rem;
}

.modalRegister * {
    color: white !important;
}

.modalRegister div {
    flex: 1 !important;
}

.modalRegister hr {
    background-color: white;
    width: 1px;
    height: 100%;
    margin: 0 5px;
}

@media screen and (max-width: 1024px) {
    .modalRegister {
        flex-direction: column !important;
    }

    .modalRegister hr {
        width: 100%;
        height: 1px;
        margin: 5px 0;
    }
}
:root {
    --width-desktop: 70%;
    --width-phone: 90%;

    --led-border-width: 1px;
    --led-size-blur-radius: 10px;
}

html,
body {
    background-color: #050825;
    width: 100%;
    min-height: 100vh;
}

.body {
    width: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.body .banner {
    object-fit: cover;
    object-position: right;
    width: 100%;
    height: 100%;
}

.body .bannerResponsive {
    display: none;
}

@keyframes fadeInOpacity {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
.body .bannerVideo img.fadeIn {
    opacity: 1;

    animation-name: fadeInOpacity;
    animation-duration: 1s;
}

.body .bannerVideo {
    background-color: black;
    width: 100%;

    display: flex;
    flex-direction: row;
    /* justify-content: center; */
    align-items: start;
}
.body .bannerVideo .video {
    width: 100%;
}

.body .products {
    width: 100%;
    margin: 3rem 0;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.body .products header,
.body .lotteries header {
    width: 80%;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 1rem;
}

.body .products header .title,
.body .lotteries header .title {
    display: flex;
    flex-direction: column;

    flex: 1;
}

.body .products header .title h2 {
    color: white;
    font-weight: bold;

    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: end;
    gap: 0.5rem
}

@keyframes LedsProfileCheck {
    0% {
        background-color: #9e5df5;
    }

    25% {
        background-color: #65a6f1;
    }

    50% {
        background-color: #64d5d5;
    }

    75% {
        background-color: #65a6f1;
    }

    100% {
        background-color: #9e5df5;
    }
}
.body .products header .title h2 .verified {
    color: white;
    background-color: #0091f9;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    padding: 0.5rem;

    animation-name: LedsProfileCheck;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

.body .products header .filter {
    width: 25%;
}

.body .products .userProducts {
    width: 80%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.body .products .userProducts .username {
    width: 100%;

    display: flex;
    flex-direction: row;
}
.body .products .userProducts .username:hover {
    cursor: pointer;
}
.body .products .userProducts .username .subtitle {
    color: white;
    font-weight: bold;
}
.body .products .userProducts .username .subtitle:hover {
    cursor: pointer;
}
.body .products .userProducts .username .showMore {
    background-color: #0091f9;
    border-radius: 50%;
    margin-left: 1rem;
    width: 30px;
    height: 30px;
    
    display: flex;
    justify-content: center;
    align-items: center;
}
.body .products .userProducts .list {
    margin-top: 1rem;
}

.react-multiple-carousel__arrow {
    background-color: rgb(0 145 249 / 37%);
    z-index: 0;
}

.body .list {
    width: 70%;
    /*  */
    /* padding: 1rem; */

    /* display: grid;
    grid-auto-flow: dense;
    grid-template-columns: repeat(auto-fill, minmax(10rem, 1fr));
    gap: 1rem; */
    /*  */
    /* overflow: auto;
    white-space: nowrap;
    scrollbar-color: #0091f9 #050825;
    scrollbar-width: thin; */
}
.body .listVerified {
    width: 60%;
}

.body .list .item, 
.body .listVerified .item {
    background-color: #00063e;
    border: 1px solid #00063e;
    border-radius: 0.5rem;
    padding: 0.5rem;
    /*  */
    margin-right: 1rem;

    /* display: flex;
    flex-direction: column; */
    /* display: inline-block; */
}

.body .list .item:hover, 
.body .listVerified .item:hover {
    cursor: pointer;

    animation-name: LedsBorder;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}
.body .list .item .iAccount, 
.body .listVerified .item .iAccountVerified {
    display: flex;
    flex-direction: column;
}

@keyframes LedsBorder {
    0% {
        border: var(--led-border-width) solid #9e5df5;
        box-shadow: 0 0 var(--led-size-blur-radius) 1px #9e5df5;
    }

    25% {
        border: var(--led-border-width) solid #65a6f1;
        box-shadow: 0 0 var(--led-size-blur-radius) 1px #65a6f1;
    }

    50% {
        border: var(--led-border-width) solid #64d5d5;
        box-shadow: 0 0 var(--led-size-blur-radius) 1px #64d5d5;
    }

    75% {
        border: var(--led-border-width) solid #65a6f1;
        box-shadow: 0 0 var(--led-size-blur-radius) 1px #65a6f1;
    }

    100% {
        border: var(--led-border-width) solid #9e5df5;
        box-shadow: 0 0 var(--led-size-blur-radius) 1px #9e5df5;
    }
}

.body .list .item *:hover, 
.body .listVerified .item *:hover {
    cursor: pointer;
}

.body .list .item img, 
.body .listVerified .item img {
    object-fit: cover;
    border-radius: 0.5rem;
    width: 100%;
    height: 200px;
    /* height: 180px; */
    margin-bottom: 0.5rem;
}

.body .list .item label, 
.body .listVerified .item label {
    color: white;
    width: 90%;
}

.body .list .item label.description {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.body .list .item label.price {
    color: #ddd;
}

.body .listVerified .item .iAccountVerified .info {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0.3rem;
}
.body .listVerified .item .iAccountVerified .info .name {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    width: auto;
}
.body .listVerified .item .iAccountVerified .info .check {
    background-color: #64d5d5;
    border-radius: 50%;
    width: 10px;
    height: 10px;
    padding: 0.3rem;
}
.body .listVerified .item .iAccountVerified .see {
    display: flex;
    justify-content: center;
    align-items: center;
}

.body .pagination {
    width: 50%;
}

.body .pagination select {
    text-align: center;
    color: white;
    background: #00063e;
    border-radius: 0.5rem;
    width: 5rem;
    height: 2.5rem;
}

.body .pagination .item {
    color: white;
    background-color: #00063e;
}

.body .pagination .separation {
    color: white;
}

.body .pagination .is-current {
    animation-name: LedsPagination;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

@keyframes LedsPagination {
    0% {
        background-color: #9e5df5;
    }

    25% {
        background-color: #65a6f1;
    }

    50% {
        background-color: #64d5d5;
    }

    75% {
        background-color: #65a6f1;
    }

    100% {
        background-color: #9e5df5;
    }
}

.body .lotteries {
    margin-top: 1rem;
    width: 100%;
    /* height: 46vh; */
    overflow: auto;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.body .lotteries header .title h2 {
    color: white;
    font-weight: bold;
}

/* TABLE */
.body .lotteries .table {
    background-color: #00063e;
    border-radius: 0.5rem;

    width: 80%;
    margin: 1rem;

    animation-name: ledsBorder;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

@keyframes ledsBorder {
    0% {
        border: var(--size-led) solid #9e5df5;
        /* offset-x | offset-y | blur-radius | spread-radius | color */
        box-shadow: 0 0 var(--size-blur-radius) 1px #9e5df5;
    }

    25% {
        border: var(--size-led) solid #65a6f1;
        box-shadow: 0 0 var(--size-blur-radius) 1px #65a6f1;
    }

    50% {
        border: var(--size-led) solid #64d5d5;
        box-shadow: 0 0 var(--size-blur-radius) 1px #64d5d5;
    }

    75% {
        border: var(--size-led) solid #65a6f1;
        box-shadow: 0 0 var(--size-blur-radius) 1px #65a6f1;
    }

    100% {
        border: var(--size-led) solid #9e5df5;
        box-shadow: 0 0 var(--size-blur-radius) 1px #9e5df5;
    }
}

.body .lotteries .table td {
    color: white;
    text-align: center;
    vertical-align: middle;
}

.body .lotteries .table tbody td .trophy {
    color: #fcd61d !important;
}

.body .lotteries .table .tableTitles {
    animation-name: leds;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

@keyframes leds {
    0% {
        background-color: #9e5df5;
    }

    25% {
        background-color: #65a6f1;
    }

    50% {
        background-color: #64d5d5;
    }

    75% {
        background-color: #65a6f1;
    }

    100% {
        background-color: #9e5df5;
    }
}

.body .lotteries .table .tableTitles th {
    text-align: center;
    border: none;
}

.body .lotteries .table tbody tr:hover {
    background-color: #0b1466;
    cursor: pointer;
}

/* END TABLE */

.modal .content .body {
    width: 100%;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.modal .content .body ul {
    list-style: none;
    width: 100%;
    padding: 0;
    margin: 0;

    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.modal .content .body ul li {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
}

.modal .content .body ul li label:hover,
.modal .content .body ul li small:hover {
    cursor: pointer;
}

.modal .content .body ul li label,
.modal .content .body ul li small {
    flex: 1;
}

.modal .content .body ul li input[type=radio] {
    width: 1.5rem;
    height: 1.5rem;
}

.modal .content .body ul li input[type=radio]:hover {
    cursor: pointer;
}

.modal .content .body ul li .category,
.modal .content .body ul li .departaments li {
    width: 100%;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.modal .content .body ul li .departaments {
    width: 95%;
}

.modal .content .body ul li .departaments li input[type=radio] {
    width: 1rem;
    height: 1rem;
    margin-right: 0.3rem;
}

.filters * {
    color: white !important;
}

.filters button {
    margin-top: 1rem;
}

@media screen and (max-width: 1024px) {
    .body .products header {
        width: 90%;
    }

    .body .products header .title h2 {
        font-size: 1.7rem;
    }

    .body .list, 
    .body .listVerified {
        width: 90%;

        /* grid-template-columns: repeat(auto-fill, minmax(8rem, 1fr));
        gap: 0.5rem; */
    }

    .body .list .item img, 
    .body .listVerified .item img {
        height: 200px;
    }

    .body .pagination {
        width: 90%;
    }

    .body .pagination .pagination-list {
        margin: 0 2rem;
    }

    .body .products .userProducts {
        width: 90%;
    }
}

@media screen and (max-width: 600px) {
    .body .banner {
        display: none;
    }
    .body .bannerResponsive {
        display: block;
        object-fit: cover;
        object-position: right;
        width: 100%;
        height: 100%;
    }
    .body .bannerVideo .video {
        width: 100%;
        height: 100%;
    }

    .body .lotteries header .title h2 {
        font-size: 22px;
    }

    .body .list .item img, 
    .body .listVerified .item img {
        height: 180px;
    }
}
