
.nft {
    color: #eee;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    max-width: 250px;
    min-width: 180px;
    margin: 10px;
    border: 1px solid #ffffff22;
    background-color: transparent;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.01) 0%, rgba(255, 255, 255, 0.1) 100%);
    box-shadow: 0 7px 10px 1px #00000088;
    border-radius: 0.7rem;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    overflow: hidden;
    transition: 0.3s all;
    transform-origin: 0 0;
    backface-visibility: hidden;
}
.events .nft{
    margin: 10px 10px 20px 10px;
}
.nft hr {
    width: 100%;
    border: none;
    border-bottom: 1px solid #88888855;
    margin-top: 0;
}
.nft ins {
    text-decoration: none;
}
.nft .main {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 1rem;
}
.nft .main .tokenImage {
    border-radius: 0.5rem;
    max-width: 100%;
    height: 250px;
    -o-object-fit: cover;
       object-fit: cover;
}
.nft .main .title{
    font-weight: bold;
}
.nft .main .description {
    margin: 0.5rem 0;
}
.nft .main .tokenInfo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top:0.65rem;
}
.nft .main .tokenInfo .duration {
    display: flex;
    align-items: center;
    color: #aaa;
    font-size: 0.9em;
    margin-right: 1rem;
}
.nft .main .tokenInfo .duration ins {
    margin: 0 0.5rem 0 0;
}
.nft .main .creator {
    display: flex;
    align-items: center;
}

.nft ::before {
    position: fixed;
    content: "";
    box-shadow: 0 0 100px 40px #ffffff08;
    top: -10%;
    left: -100%;
    transform: rotate(-45deg);
    height: 60rem;
    transition: 0.7s all;
}
.nft:hover {
    border: 1px solid #ffffff44;
    box-shadow: 0 7px 20px 3px #000000aa;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transform: scale(1.01);
    filter: brightness(1.3);
}
.nft:hover ::before {
    filter: brightness(0.5);
    top: -100%;
    left: 200%;
}

.bg {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.bg h1 {
    font-size: 20rem;
    filter: opacity(0.5);
}

:root{
    --month-year-height: 80px;
    --weekdays-height: 45px;
    --calendar-border-radius: 25px;
}

.calendar-holder{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    color: white;
    text-shadow: -1px -1px 1px rgba(0,0,0,0.5);
    font-family: "Poppins", sans-serif;
}
.calendar {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 90vw;
    height: 80vh;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4.5px);
    -webkit-backdrop-filter: blur(4.5px);
    box-shadow: inset 0 0 125px rgba(255,255,255,0.05), inset -5px -5px 25px rgba(245,245,255,0.1), 10px 10px 40px -6px rgba(0, 0, 0, 0.6);
    border-radius: var(--calendar-border-radius);
}
.calendar .left-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 60%;
    height: 100%;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    cursor: default;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
}
.calendar .left-bar .month-year {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 100%;
    height: var(--month-year-height);
    padding: 25px 10px;
}
.calendar .left-bar .month-year span {
    font-size: 32px;
}
.calendar .left-bar .month-year .arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: transparent;
    border: none;
    border-radius: 50%;
    cursor: pointer;
}
.calendar .left-bar .month-year .arrow:hover, .calendar .left-bar .month-year .arrow:active {
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4.5px);
    -webkit-backdrop-filter: blur(4.5px);
    transition: all 0.2s ease-in-out;
}
.calendar .left-bar .month-year .arrow svg {
    width: 24px;
    height: 24px;
    color: white;
}
.calendar .left-bar .weekdays {
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    height: var(--weekdays-height);
    padding: 10px 0;
    font-size: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.calendar .left-bar .days {
    display: flex;
    flex-wrap: wrap;
    /*row-gap: 60px;*/
    margin: 15px 0;
    width: 100%;
    height: calc(100% - var(--month-year-height) - var(--weekdays-height));
}
.calendar .left-bar .days button {
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: calc(100% / 7);
    background-color: transparent;
    border: none;
    outline: none !important;
    border-radius: 50%;
    cursor: pointer;
    font-family: inherit;
    z-index: 5;
}
.calendar .left-bar .days button span {
    color: white;
    font-size: 14px;
    z-index: 7;
}
.weekend{
    color: #aaa !important;
}
.calendar .left-bar .days button:before {
    content: "";
    position: absolute;
    border-radius: 50%;
    z-index: 6;
    cursor: pointer;
    width: 75px;
    height: 75px;
}
.calendar .left-bar .days button:hover{
    z-index:6;
}
.calendar .left-bar .days button:hover:before {
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4.5px);
    -webkit-backdrop-filter: blur(4.5px);
    box-shadow: inset 0 0 16px rgba(255,255,255,0.1), 0 0 6px -3px rgba(0,0,0,0.8);
    z-index:3;
    transition: all 0.2s ease-in-out;
}
.calendar .left-bar .days .target,
.calendar .left-bar .days .today,
.calendar .left-bar .days .action_isset{
    position: relative;
}
.calendar .left-bar .days .target:before {
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4.5px);
    -webkit-backdrop-filter: blur(4.5px);
}
.calendar .left-bar .days .today:after,
.calendar .left-bar .days .action_isset:after {
    content: "";
    position: absolute;
    border-radius: 50%;
    z-index: 6;
    cursor: pointer;
    top: calc(50% + 15px);
    left: calc(50% - 3px);
    width: 6px;
    height: 6px;
    background-color: rgba(255, 255, 255, 0.85);
}
.calendar .left-bar .days .today:after {
    background-color: rgba(5, 225, 5, 0.85);
}
.calendar .left-bar .days .action_isset:after {
    background-color: rgba(5, 155, 225, 0.85);
}
.calendar .left-bar .days .action_isset.urgent:after {
    background-color: rgba(245, 5, 55, 0.85);
}
.calendar .right-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    position: relative;
    width: 40%;
    height: 100%;
    padding: 30px 15px;
}
.calendar .right-bar .top-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    cursor: default;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
}
.calendar .right-bar .top-bar .day > span {
    font-size: 150px;
    line-height: 150px;
}
.calendar .right-bar .top-bar .weekday > span {
    font-size: 32px;
}
.calendar .right-bar .mid-bar {
    width: 92%;
    height: auto;
}

.calendar .right-bar .mid-bar .current-events {
    font-size: 25px;
    text-align: center;
    cursor: default;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    margin-top: 20px;
}
.calendar .right-bar .mid-bar .events {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 10px;
}

.calendar .right-bar .bottom-bar {
    width: 80%;
    height: auto;
}
.calendar .right-bar .bottom-bar button {
    width: 100%;
    height: 35px;
    font-family: inherit;
    color: white;
    background-color: transparent;
    font-size: 16px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}
.calendar .right-bar .bottom-bar button:hover {
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4.5px);
    -webkit-backdrop-filter: blur(4.5px);
    transition: all 0.2s ease-in-out;
}
.calendar .right-bar .creator .go_to_date{
    display: none;
}

.calendar .no-subscriptions{
    text-align: center;
    color: #aaa;
}



.overlay_form{
    position: absolute;
    top:0;
    right:0;
    bottom:0;
    left:0;

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

    padding: 25px;
    height: 100%;

    border-radius: 0 var(--calendar-border-radius) var(--calendar-border-radius) 0;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4.5px);
    -webkit-backdrop-filter: blur(4.5px);
    box-shadow: inset 0 0 125px rgba(0,0,0,0.05), inset -5px -5px 25px rgba(0,0,0,0.1), 0 0 40px -6px rgba(255, 255, 255, 0.4);
}

form{
    width: 400px;
    max-width: 100%;
    max-height: 100%;
    overflow-y: auto;
    padding: 0 15px;
}

svg.close-button {
    position: fixed;
    right: 20px;
    top:20px;
    width: 35px;
    height: 35px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    z-index: 3;
}
svg.close-button line {
    stroke: #fff;
    stroke-width: 2;
    stroke-linecap: round;
    transform-origin: center;
}
svg.close-button:hover line{
    animation: cross 0.4s ease-in-out forwards;
}

@keyframes cross {
    0% {
        transform: scaleX(1);
    }
    50% {
        transform: scaleX(0);
        filter: blur(5px);
    }
    100% {
        transform: scaleX(1);
    }
}

.form-prompt{
    font-size:1.3em;
    text-align: center;
    font-weight: bold;
}
.form-group.two-columns{
    display: flex;
    align-items: center;
    justify-content: center;
}
.form-control{
    color: #bbb;
    display: block;
    height: 35px;
    width: 100%;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.2);
    -webkit-backdrop-filter: blur(4.5px);
            backdrop-filter: blur(4.5px);
    padding: 0 10px;
    margin:0;
    outline: 1px solid rgba(255,255,255,0.3);
    font-size: 14px;
    font-weight: 300;
}
textarea.form-control{
    padding: 10px;
    min-height: 3em;
}

label{
    display: block;
    margin-top: 15px;
    font-size: 16px;
    font-weight: 500;
}
.form-control::-moz-placeholder{
    color: #e5e5e5;
}
.form-control::placeholder{
    color: #e5e5e5;
}
.form-control:focus {
    outline: 1px solid rgba(255,255,255,0.5);
}

.btn.btn-primary{
    margin-top: 30px;
    width: 100%;
    background-color: rgba(255,255,255,0.9);
    color: #080710;
    padding: 12px 0;
    font-size: 18px;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
}
.btn.btn-primary.invertion{
    background-color: transparent;
    color: rgba(255,255,255,0.9);
    border: 2px solid rgba(255,255,255,0.9);
}
.form-group.two-columns > div{
    margin: 0 10px;
}
.form-group.two-columns .btn{
    min-width: 80px;
}



.hotkeys {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    color: #aaa;

}

.hotkey {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.hotkey-icon {
    fill: currentColor;
    stroke: none;
    width: 1.5em;
    height: 1.5em;
}

.hotkey .primary {
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hotkey .secondary {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;

}

.container.auth {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.login_holder {
    background-color: rgba(255,255,255,0.13);
    border-radius: 10px;
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.1);
    box-shadow: 0 0 40px rgba(8,7,16,0.6);
    padding: 50px 35px;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.8);
    max-width: 90vw;
}

.login_holder .title{
    text-transform: uppercase;
    font-weight:bold;
    font-size: 2em;
}
.login_holder input{
    color: #fff;
    text-shadow:0 0 2px rgba(0,0,0,0.8);
    font-weight: bold;
}
.login_holder .form-group span{
    color: rgba(245,155,34, 1);
}


@media(max-width: 1440px) {
    .calendar {
        transform: scale(0.9);
    }
}
@media(max-width: 1199px) {
    .calendar {
        transform: scale(0.8);
    }
}
@media(max-width: 991px) {
    .calendar {
        transform: scale(0.7);
    }
}

@media(max-width: 728px){
    .hotkeys{
        display: none;
    }
    .calendar-holder {
        align-items: start;
        height: auto;
    }
    .calendar {
        transform: none;
        align-items: start;
        flex-direction: column;
        height: auto;
        min-height: 94vh;
        margin: 3vh auto;
        width: 94vw;
    }
    .nft{
        box-shadow: 0 3px 7px 1px #00000088;
    }
    .list-all-cards{
        width: 94vw !important;
        margin-bottom: 1vh !important;
        padding: 0 0 2vh 0 !important;
    }
    footer{
        width: 93vw !important;
        margin-bottom: 0 !important;
        padding: 0 0 3vh 0 !important;
    }
    .calendar .left-bar {
        width: 100%;
        border-right: none;
    }
    .calendar .left-bar .days button{
        height: 40px;
    }
    .calendar .left-bar .days button::before {
        width: 50px;
        height: 50px;
    }
    .calendar .right-bar {
        flex-grow:1;
        width: 100%;
        padding: 10px 0 20px 0;
    }
    .calendar .right-bar .top-bar .day > span {
        font-size: 75px;
        line-height: 75px;
    }
    .calendar .right-bar .top-bar .weekday > span {
        font-size: 22px;
    }
    .calendar .right-bar .mid-bar .current-events {
        font-size: 20px;
        margin-top: 0;
    }
    .events .nft {
        margin: 10px 10px 20px 0;
    }
    .overlay_form {
        padding: 15px;
        border-radius: 0 0 var(--calendar-border-radius) var(--calendar-border-radius) ;
        box-shadow: inset 0 0 125px rgba(0,0,0,0.05), inset -5px -5px 25px rgba(0,0,0,0.1), 0 0 40px -6px rgba(255, 255, 255, 0.4);
    }
}

@media(max-width: 420px){
    .login_holder{
        padding: 40px 25px;
    }
}

/*
! tailwindcss v3.3.1 | MIT License | https://tailwindcss.com
*//*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #e5e7eb; /* 2 */
}

::before,
::after {
  --tw-content: '';
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
*/

html {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

a {
  color: inherit;
  text-decoration: inherit;
}

/*
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font family by default.
2. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/*
Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
[type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/*
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

/*
Set the default cursor for buttons.
*/

button,
[role="button"] {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

img,
video {
  max-width: 100%;
  height: auto;
}

/* Make elements with the HTML hidden attribute stay hidden by default */
[hidden] {
  display: none;
}

*, ::before, ::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
}

::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
}
.container {
  width: 100%;
}
@media (min-width: 640px) {

  .container {
    max-width: 640px;
  }
}
@media (min-width: 768px) {

  .container {
    max-width: 768px;
  }
}
@media (min-width: 1024px) {

  .container {
    max-width: 1024px;
  }
}
@media (min-width: 1280px) {

  .container {
    max-width: 1280px;
  }
}
@media (min-width: 1536px) {

  .container {
    max-width: 1536px;
  }
}
.fixed {
  position: fixed;
}
.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
.inset-0 {
  inset: 0px;
}
.right-0 {
  right: 0px;
}
.top-0 {
  top: 0px;
}
.z-10 {
  z-index: 10;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.-mt-px {
  margin-top: -1px;
}
.ml-1 {
  margin-left: 0.25rem;
}
.ml-12 {
  margin-left: 3rem;
}
.ml-2 {
  margin-left: 0.5rem;
}
.ml-4 {
  margin-left: 1rem;
}
.mr-2 {
  margin-right: 0.5rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-3 {
  margin-top: 0.75rem;
}
.mt-4 {
  margin-top: 1rem;
}
.mt-8 {
  margin-top: 2rem;
}
.block {
  display: block;
}
.inline-block {
  display: inline-block;
}
.flex {
  display: flex;
}
.inline-flex {
  display: inline-flex;
}
.grid {
  display: grid;
}
.hidden {
  display: none;
}
.h-12 {
  height: 3rem;
}
.h-16 {
  height: 4rem;
}
.h-5 {
  height: 1.25rem;
}
.h-6 {
  height: 1.5rem;
}
.h-8 {
  height: 2rem;
}
.min-h-screen {
  min-height: 100vh;
}
.w-12 {
  width: 3rem;
}
.w-5 {
  width: 1.25rem;
}
.w-6 {
  width: 1.5rem;
}
.w-8 {
  width: 2rem;
}
.w-auto {
  width: auto;
}
.w-full {
  width: 100%;
}
.max-w-6xl {
  max-width: 72rem;
}
.max-w-xl {
  max-width: 36rem;
}
.flex-shrink-0 {
  flex-shrink: 0;
}
.transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.items-end {
  align-items: flex-end;
}
.items-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.overflow-hidden {
  overflow: hidden;
}
.overflow-x-auto {
  overflow-x: auto;
}
.overflow-y-auto {
  overflow-y: auto;
}
.rounded-full {
  border-radius: 9999px;
}
.rounded-lg {
  border-radius: 0.5rem;
}
.rounded-md {
  border-radius: 0.375rem;
}
.border {
  border-width: 1px;
}
.border-r {
  border-right-width: 1px;
}
.border-t {
  border-top-width: 1px;
}
.border-gray-200 {
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / var(--tw-border-opacity));
}
.border-gray-300 {
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / var(--tw-border-opacity));
}
.border-gray-400 {
  --tw-border-opacity: 1;
  border-color: rgb(156 163 175 / var(--tw-border-opacity));
}
.border-gray-700 {
  --tw-border-opacity: 1;
  border-color: rgb(55 65 81 / var(--tw-border-opacity));
}
.border-transparent {
  border-color: transparent;
}
.bg-gray-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity));
}
.bg-gray-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / var(--tw-bg-opacity));
}
.bg-gray-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(107 114 128 / var(--tw-bg-opacity));
}
.bg-gray-800 {
  --tw-bg-opacity: 1;
  background-color: rgb(31 41 55 / var(--tw-bg-opacity));
}
.bg-gray-900 {
  --tw-bg-opacity: 1;
  background-color: rgb(17 24 39 / var(--tw-bg-opacity));
}
.bg-green-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(220 252 231 / var(--tw-bg-opacity));
}
.bg-green-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(22 163 74 / var(--tw-bg-opacity));
}
.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}
.p-6 {
  padding: 1.5rem;
}
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.pb-20 {
  padding-bottom: 5rem;
}
.pb-4 {
  padding-bottom: 1rem;
}
.pt-4 {
  padding-top: 1rem;
}
.pt-5 {
  padding-top: 1.25rem;
}
.pt-8 {
  padding-top: 2rem;
}
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.align-bottom {
  vertical-align: bottom;
}
.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}
.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.font-medium {
  font-weight: 500;
}
.font-semibold {
  font-weight: 600;
}
.uppercase {
  text-transform: uppercase;
}
.leading-6 {
  line-height: 1.5rem;
}
.leading-7 {
  line-height: 1.75rem;
}
.tracking-wider {
  letter-spacing: 0.05em;
}
.text-gray-200 {
  --tw-text-opacity: 1;
  color: rgb(229 231 235 / var(--tw-text-opacity));
}
.text-gray-300 {
  --tw-text-opacity: 1;
  color: rgb(209 213 219 / var(--tw-text-opacity));
}
.text-gray-400 {
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / var(--tw-text-opacity));
}
.text-gray-500 {
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity));
}
.text-gray-600 {
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / var(--tw-text-opacity));
}
.text-gray-700 {
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity));
}
.text-gray-900 {
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity));
}
.text-green-600 {
  --tw-text-opacity: 1;
  color: rgb(22 163 74 / var(--tw-text-opacity));
}
.text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.underline {
  text-decoration-line: underline;
}
.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.opacity-75 {
  opacity: 0.75;
}
.shadow {
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-sm {
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-xl {
  --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-opacity {
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}


:root {
    --header-height: 0;
}
/* resources/css/app.css */
body{
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #fff;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    background: #000;
}
#app{
    z-index:2;
    position: relative;
}

input,
textarea,
button,
select,
a {
    -webkit-tap-highlight-color: transparent;
}

main.container{
    margin:0 auto;
    padding:0;
}

.video-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 1;
}
.video-bg video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    opacity: 0;
    animation-name: fade-in;
    animation-duration: 5s;
    animation-fill-mode: forwards;
}
.video-bg-overlay{
    position:absolute;
    top:0;right:0;bottom:0;left:0;
    background: linear-gradient(to bottom,  rgba(0,0,0,1) 40%, rgba(0,0,0,0.9) 70%, rgba(0,0,0,0.8) 90%,rgba(0,0,0,0.2) 100%);
}
@keyframes fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.loader-blur{
    filter: blur(3px);
    transition: all 0.3s ease 0s;
}

.list-all-cards, .hotkeys{
    width: 90vw;
    margin:0 auto 8vh auto;
    padding: 0 0 2vh 0;
}
.list-all-cards .nft{
    margin: 0 20px 0 0;
}

footer{
    width: 90vw;
    margin:0 auto 8vh auto;
    padding: 0 0 2vh 0;
}
footer a.logout{
    display: flex;
    align-items: center;
    font-size: 0.8em;
}
.hover\:bg-gray-50:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / var(--tw-bg-opacity));
}
.hover\:bg-green-700:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(21 128 61 / var(--tw-bg-opacity));
}
.focus\:outline-none:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.focus\:ring-2:focus {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.focus\:ring-green-500:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(34 197 94 / var(--tw-ring-opacity));
}
.focus\:ring-offset-2:focus {
  --tw-ring-offset-width: 2px;
}
@media (prefers-color-scheme: dark) {

  .dark\:border-gray-700 {
    --tw-border-opacity: 1;
    border-color: rgb(55 65 81 / var(--tw-border-opacity));
  }

  .dark\:bg-gray-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(31 41 55 / var(--tw-bg-opacity));
  }

  .dark\:bg-gray-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(17 24 39 / var(--tw-bg-opacity));
  }

  .dark\:text-gray-400 {
    --tw-text-opacity: 1;
    color: rgb(156 163 175 / var(--tw-text-opacity));
  }

  .dark\:text-gray-500 {
    --tw-text-opacity: 1;
    color: rgb(107 114 128 / var(--tw-text-opacity));
  }

  .dark\:text-white {
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity));
  }
}
@media (min-width: 640px) {

  .sm\:mx-0 {
    margin-left: 0px;
    margin-right: 0px;
  }

  .sm\:my-8 {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .sm\:ml-0 {
    margin-left: 0px;
  }

  .sm\:ml-3 {
    margin-left: 0.75rem;
  }

  .sm\:ml-4 {
    margin-left: 1rem;
  }

  .sm\:mt-0 {
    margin-top: 0px;
  }

  .sm\:block {
    display: block;
  }

  .sm\:flex {
    display: flex;
  }

  .sm\:h-10 {
    height: 2.5rem;
  }

  .sm\:h-20 {
    height: 5rem;
  }

  .sm\:w-10 {
    width: 2.5rem;
  }

  .sm\:w-auto {
    width: auto;
  }

  .sm\:w-full {
    width: 100%;
  }

  .sm\:max-w-lg {
    max-width: 32rem;
  }

  .sm\:flex-row-reverse {
    flex-direction: row-reverse;
  }

  .sm\:items-start {
    align-items: flex-start;
  }

  .sm\:items-center {
    align-items: center;
  }

  .sm\:justify-start {
    justify-content: flex-start;
  }

  .sm\:justify-between {
    justify-content: space-between;
  }

  .sm\:rounded-lg {
    border-radius: 0.5rem;
  }

  .sm\:p-0 {
    padding: 0px;
  }

  .sm\:p-6 {
    padding: 1.5rem;
  }

  .sm\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .sm\:pb-4 {
    padding-bottom: 1rem;
  }

  .sm\:pt-0 {
    padding-top: 0px;
  }

  .sm\:text-left {
    text-align: left;
  }

  .sm\:text-right {
    text-align: right;
  }

  .sm\:align-middle {
    vertical-align: middle;
  }

  .sm\:text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}
@media (min-width: 768px) {

  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .md\:border-l {
    border-left-width: 1px;
  }

  .md\:border-t-0 {
    border-top-width: 0px;
  }
}
@media (min-width: 1024px) {

  .lg\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}




