
@keyframes left-in {
    0%   {left: -210px;}
    100% {left: -10px;}
}

.santo-menu-wrapper {
    position: fixed;
    top: 200px;
    left: -210px;
    z-index: 10;

    animation-name: left-in;
    animation-duration: 500ms;
    animation-delay: 1.5s;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
}

.santo-menu {
    background-image: var(--img-nft-menu-bg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 200px;
    height: 300px;
}

.santo-menu > a {
    text-decoration: none;
}

.santo-menu-item {
    display: flex;
    align-items: center;
    width: 90%;
    margin: 0 auto;
    padding-top: 20px;
    position: relative;
    cursor: pointer;
}

.santo-menu-item > img.chain-icon {
    width: 40px;
    margin-left: 10px;
    z-index: 2;
}

.santo-menu-item > img.chain-selected {
    width: 100%;
    position: absolute;
    z-index: 1;
    height: 60px;
}

.santo-menu-item > span {
    z-index: 2;
    margin-left: 15px;
}

.santo-menu-item-selected {
    color: white;
}

.nft-shop-wrapper {
    display: flex;
    margin-left: 30px;
    width: 850px;
}