@font-face {
    font-family: 'Inter';
    src: url('/css/fonts/Inter-Regular.eot');
    src: local('Inter Regular'), local('Inter-Regular'),
    url('/css/fonts/Inter-Regular.eot?#iefix') format('embedded-opentype'),
    url('/css/fonts/Inter-Regular.woff2') format('woff2'),
    url('/css/fonts/Inter-Regular.woff') format('woff'),
    url('/css/fonts/Inter-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Inter';
    src: url('/css/fonts/Inter-Bold.eot');
    src: local('Inter Bold'), local('Inter-Bold'),
    url('/css/fonts/Inter-Bold.eot?#iefix') format('embedded-opentype'),
    url('/css/fonts/Inter-Bold.woff2') format('woff2'),
    url('/css/fonts/Inter-Bold.woff') format('woff'),
    url('/css/fonts/Inter-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: 'Inter';
    src: url('/css/fonts/Inter-SemiBold.eot');
    src: local('Inter Semi Bold'), local('Inter-SemiBold'),
    url('/css/fonts/Inter-SemiBold.eot?#iefix') format('embedded-opentype'),
    url('/css/fonts/Inter-SemiBold.woff2') format('woff2'),
    url('/css/fonts/Inter-SemiBold.woff') format('woff'),
    url('/css/fonts/Inter-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: 'Inter';
    src: url('/css/fonts/Inter-ExtraBold.eot');
    src: local('Inter Extra Bold'), local('Inter-ExtraBold'),
    url('/css/fonts/Inter-ExtraBold.eot?#iefix') format('embedded-opentype'),
    url('/css/fonts/Inter-ExtraBold.woff2') format('woff2'),
    url('/css/fonts/Inter-ExtraBold.woff') format('woff'),
    url('/css/fonts/Inter-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}
@font-face {
    font-family: 'Inter';
    src: url('/css/fonts/Inter-Black.eot');
    src: local('Inter Black'), local('Inter-Black'),
    url('/css/fonts/Inter-Black.eot?#iefix') format('embedded-opentype'),
    url('/css/fonts/Inter-Black.woff2') format('woff2'),
    url('/css/fonts/Inter-Black.woff') format('woff'),
    url('/css/fonts/Inter-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}
html,
body {
    height: 100%;
}
body {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    background-color: #0f1014;
    color: #c0c1c2;
}
.btn {
    border-radius: 22px;
    border: 0;
    padding-left: 24px;
    padding-right: 24px;
    font-size: 22px;
    font-weight: 700;
    height: 40px;
    /*display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;*/
    transition: none;
}
.btn span {
    position: relative;
    z-index: 2;
}
.btn:not(.btn-extra, .btn-link) span {
    top: -2px;
}
.btn-info-wrapper {
    display: inline-block;
    position: relative;
    overflow: hidden;
    height: 44px;
    border-radius: 22px;
    background-image: conic-gradient(from 180deg at center center, rgba(49,255,255,1) 0%, rgba(36,232,255,1) 18%, rgba(36,232,255,1) 20%, rgba(31,134,179,1) 23%, rgba(71,255,255,1) 28%, rgba(71,255,255,1) 65%, rgba(36,202,253,1) 69%, rgba(36,202,253,1) 75%, rgba(49,255,255,1) 83%);
    background-size: auto;
    background-position: 0% 0%;
    background-repeat: repeat;
    background-color: rgba(0,0,0,0);
    padding: 2px;
    z-index: 0;
    box-shadow: 0 0 35px -5px rgba(35, 118, 241, 0.4);
    transition: all 0.2s ease-in-out;
}

.btn-info-wrapper:hover {
    box-shadow: 0 0 10px -2px rgba(35, 118, 241, 1);
    -moz-transform: scale(1.01) translate(0px, -1px);
    -webkit-transform: scale(1.01) translate(0px, -1px);
    -o-transform: scale(1.01) translate(0px, -1px);
    -ms-transform: scale(1.01) translate(0px, -1px);
    transform: scale(1.01) translate(0px, -1px);
}
.btn-info-wrapper.disabled {
    background-image: conic-gradient(from 180deg at center center, rgba(207,207,207,1) 0%, rgba(131,131,131,1) 18%, rgba(131,131,131,1) 20%, rgba(88,88,88,1) 23%, rgba(207,207,207,1) 28%, rgba(207,207,207,1) 65%, rgba(107,107,107,1) 69%, rgba(131,131,131,1) 75%, rgba(207,207,207,1) 83%);
    background-size: auto;
    background-position: 0% 0%;
    background-repeat: repeat;
    background-color: rgba(0,0,0,0);
    box-shadow: none;
}
.btn-info {
    position: relative;
    z-index: 3;
    color: #161d2c;
    background: rgb(33,220,253);
    background: linear-gradient(90deg, rgba(33,220,253,1) 0%, rgba(48,250,254,1) 45%, rgba(48,250,254,1) 65%, rgba(32,186,240,1) 100%);
    border-color: transparent;
}
.btn-info:not(.disabled):before {
    content: "";
    display: block;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 22px;
    transition: opacity 0.2s ease-in-out;
    z-index: 1;
    background: rgb(48,250,254);
    background: linear-gradient(90deg, rgba(48,250,254,1) 0%, rgba(33,220,253,1) 25%, rgba(33,220,253,1) 75%, rgba(48,250,254,1) 100%);
}
.btn-info:not(.disabled):hover:before {
    opacity: 1;
}
.btn-info:hover {
    color: #161d2c;
    /*background: rgb(48,250,254);
    background: linear-gradient(90deg, rgba(48,250,254,1) 0%, rgba(33,220,253,1) 25%, rgba(33,220,253,1) 75%, rgba(48,250,254,1) 100%);*/
    border-color: transparent;
}
.btn-info:active,
.btn-info:focus, .btn-info.focus {
    color: #161d2c;
    /*background: rgb(33,220,253);
    background: linear-gradient(90deg, rgba(33,220,253,1) 0%, rgba(48,250,254,1) 45%, rgba(48,250,254,1) 65%, rgba(32,186,240,1) 100%);*/
    border-color: transparent;
}
.btn-info.disabled, .btn-info:disabled {
    color: #161d2c;
    background: rgb(117,117,117);
    background: linear-gradient(90deg, rgba(117,117,117,1) 0%, rgba(180,180,180,1) 25%, rgba(159,159,159,1) 65%, rgba(117,117,117,1) 100%);
    border-color: transparent;
    opacity: 1;
}
.btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active,
.show > .btn-info.dropdown-toggle {
    color: #161d2c;
    /*background: rgb(33,220,253);
    background: linear-gradient(90deg, rgba(33,220,253,1) 0%, rgba(48,250,254,1) 45%, rgba(48,250,254,1) 65%, rgba(32,186,240,1) 100%);*/
    border-color: transparent;
}
.btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus,
.show > .btn-info.dropdown-toggle:focus {
    color: #161d2c;
    /*background: rgb(33,220,253);
    background: linear-gradient(90deg, rgba(33,220,253,1) 0%, rgba(48,250,254,1) 45%, rgba(48,250,254,1) 65%, rgba(32,186,240,1) 100%);*/
    border-color: transparent;
}

.btn-warning-wrapper {
    display: inline-block;
    position: relative;
    overflow: hidden;
    height: 44px;
    border-radius: 22px;
    background-image: conic-gradient(from 180deg at center center, rgba(255,255,203,1) 0%, rgba(235,190,116,1) 18%, rgba(233,192,119,1) 20%, rgba(185,150,92,1) 23%, rgba(255,255,247,1) 28%, rgba(255,255,247,1) 65%, rgba(223,199,126,1) 69%, rgba(255,232,146,1) 75%, rgba(255,255,203,1) 83%);
    background-size: auto;
    background-position: 0% 0%;
    background-repeat: repeat;
    background-color: rgba(0,0,0,0);
    padding: 2px;
    z-index: 0;
    box-shadow: 0 0 35px -5px rgba(241, 127, 35, 0.4);
    transition: all 0.2s ease-in-out;
}
.btn-warning-wrapper:hover {
    box-shadow: 0 0 10px -2px rgba(241, 127, 35, 1);
    -moz-transform: scale(1.01);
    -webkit-transform: scale(1.01);
    -o-transform: scale(1.01);
    -ms-transform: scale(1.01);
    transform: scale(1.01);
}
.btn-warning-wrapper.disabled {
    background-image: conic-gradient(from 180deg at center center, rgba(207,207,207,1) 0%, rgba(131,131,131,1) 18%, rgba(131,131,131,1) 20%, rgba(88,88,88,1) 23%, rgba(207,207,207,1) 28%, rgba(207,207,207,1) 65%, rgba(107,107,107,1) 69%, rgba(131,131,131,1) 75%, rgba(207,207,207,1) 83%);
    background-size: auto;
    background-position: 0% 0%;
    background-repeat: repeat;
    background-color: rgba(0,0,0,0);
    box-shadow: none;
}
.btn-warning {
    color: #161d2c;
    background: rgb(177,139,74);
    background: linear-gradient(90deg, rgba(177,139,74,1) 0%, rgba(255,241,165,1) 50%, rgba(255,241,165,1) 60%, rgba(222,198,125,1) 100%);
    border-color: transparent;
    position: relative;
}
.btn-warning:not(.disabled):before {
    content: "";
    display: block;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 22px;
    transition: opacity 0.2s ease-in-out;
    z-index: 1;
    background: rgb(222,198,125);
    background: linear-gradient(90deg, rgba(255,241,165,1) 0%, rgba(222,198,125,1) 35%, rgba(222,198,125,1) 55%, rgba(255,241,165,1) 100%);
}
.btn-warning:not(.disabled):hover:before {
    opacity: 1;
}
.btn-warning:hover {
    color: #161d2c;
    /*background: rgb(222,198,125);
    background: linear-gradient(90deg, rgba(255,241,165,1) 0%, rgba(222,198,125,1) 35%, rgba(222,198,125,1) 55%, rgba(255,241,165,1) 100%);*/
    border-color: transparent;
}
.btn-warning:active,
.btn-warning:focus, .btn-warning.focus {
    color: #161d2c;
    /*background: rgb(177,139,74);
    background: linear-gradient(90deg, rgba(177,139,74,1) 0%, rgba(255,241,165,1) 50%, rgba(255,241,165,1) 60%, rgba(222,198,125,1) 100%);*/
    border-color: transparent;
}
.btn-warning.disabled, .btn-warning:disabled {
    color: #161d2c;
    background: rgb(117,117,117);
    background: linear-gradient(90deg, rgba(117,117,117,1) 0%, rgba(180,180,180,1) 25%, rgba(159,159,159,1) 65%, rgba(117,117,117,1) 100%);
    border-color: transparent;
    opacity: 1;
}
.btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active,
.show > .btn-warning.dropdown-toggle {
    color: #161d2c;
    /*background: rgb(177,139,74);
    background: linear-gradient(90deg, rgba(177,139,74,1) 0%, rgba(255,241,165,1) 50%, rgba(255,241,165,1) 60%, rgba(222,198,125,1) 100%);*/
    border-color: transparent;
}
.btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus,
.show > .btn-warning.dropdown-toggle:focus {
    color: #161d2c;
    /*background: rgb(177,139,74);
    background: linear-gradient(90deg, rgba(177,139,74,1) 0%, rgba(255,241,165,1) 50%, rgba(255,241,165,1) 60%, rgba(222,198,125,1) 100%);*/
    border-color: transparent;
}
.btn-success-wrapper {
    display: inline-block;
    position: relative;
    overflow: hidden;
    height: 44px;
    border-radius: 22px;
    background-image: conic-gradient(from 180deg at center center, rgba(136,255,255,1) 0%, rgba(80,255,185,1) 18%, rgba(80,255,185,1) 20%, rgba(54,217,121,1) 23%, rgba(136,255,255,1) 28%, rgba(136,255,255,1) 65%, rgba(70,249,140,1) 69%, rgba(81,255,175,1) 75%, rgba(136,255,255,1) 83%);
    background-size: auto;
    background-position: 0% 0%;
    background-repeat: repeat;
    background-color: rgba(0,0,0,0);
    padding: 2px;
    z-index: 0;
    box-shadow: 0 0 35px -5px rgba(35, 241, 171, 0.4);
    transition: all 0.2s ease-in-out;
}
.btn-success-wrapper:hover {
    box-shadow: 0 0 10px -2px rgba(35, 241, 171, 1);
    -moz-transform: scale(1.01) translate(0px, -1px);
    -webkit-transform: scale(1.01) translate(0px, -1px);
    -o-transform: scale(1.01) translate(0px, -1px);
    -ms-transform: scale(1.01) translate(0px, -1px);
    transform: scale(1.01) translate(0px, -1px);
}
.btn-success-wrapper.disabled {
    background-image: conic-gradient(from 180deg at center center, rgba(207,207,207,1) 0%, rgba(131,131,131,1) 18%, rgba(131,131,131,1) 20%, rgba(88,88,88,1) 23%, rgba(207,207,207,1) 28%, rgba(207,207,207,1) 65%, rgba(107,107,107,1) 69%, rgba(131,131,131,1) 75%, rgba(207,207,207,1) 83%);
    background-size: auto;
    background-position: 0% 0%;
    background-repeat: repeat;
    background-color: rgba(0,0,0,0);
    box-shadow: none;
}
.btn-success {
    color: #161d2c;
    background: rgb(67,234,128);
    background: linear-gradient(90deg, rgba(67,234,128,1) 0%, rgba(56,248,212,1) 25%, rgba(56,248,212,1) 65%, rgba(67,234,128,1) 100%);
border-color: transparent;
    position: relative;
    z-index: 2;
}
.btn-success:not(.disabled):before {
    content: "";
    display: block;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 22px;
    transition: opacity 0.2s ease-in-out;
    z-index: 1;
    background: rgb(56,248,212);
    background: linear-gradient(90deg, rgba(56,248,212,1) 0%, rgba(67,234,128,1) 35%, rgba(67,234,128,1) 55%, rgba(56,248,212,1) 100%);
}
.btn-success:not(.disabled):hover:before {
    opacity: 1;
}
.btn-success:hover {
    color: #161d2c;
    /*background: rgb(56,248,212);
    background: linear-gradient(90deg, rgba(56,248,212,1) 0%, rgba(67,234,128,1) 35%, rgba(67,234,128,1) 55%, rgba(56,248,212,1) 100%);*/
    border-color: transparent;
}
.btn-success:active,
.btn-success:focus, .btn-success.focus {
    color: #161d2c;
    /* background: rgb(67,234,128);
    background: linear-gradient(90deg, rgba(67,234,128,1) 0%, rgba(56,248,212,1) 25%, rgba(56,248,212,1) 65%, rgba(67,234,128,1) 100%);*/
    border-color: transparent;
}
.btn-success.disabled, .btn-success:disabled {
    color: #161d2c;
    background: rgb(117,117,117);
    background: linear-gradient(90deg, rgba(117,117,117,1) 0%, rgba(180,180,180,1) 25%, rgba(159,159,159,1) 65%, rgba(117,117,117,1) 100%);
    border-color: transparent;
    opacity: 1;
}
.btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active,
.show > .btn-success.dropdown-toggle {
    color: #161d2c;
    background: rgb(67,234,128);
    background: linear-gradient(90deg, rgba(67,234,128,1) 0%, rgba(56,248,212,1) 25%, rgba(56,248,212,1) 65%, rgba(67,234,128,1) 100%);
    border-color: transparent;
}
.btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus,
.show > .btn-success.dropdown-toggle:focus {
    color: #161d2c;
    background: rgb(67,234,128);
    background: linear-gradient(90deg, rgba(67,234,128,1) 0%, rgba(56,248,212,1) 25%, rgba(56,248,212,1) 65%, rgba(67,234,128,1) 100%);
    border-color: transparent;
}

.btn-danger-wrapper {
    display: inline-block;
    position: relative;
    overflow: hidden;
    height: 44px;
    border-radius: 22px;
    background-image: conic-gradient(from 180deg at center center, rgba(214,143,246,1) 0%, rgba(220,152,247,1) 18%, rgba(220,152,247,1) 20%, rgba(67,41,138,1) 23%, rgba(214,143,246,1) 28%, rgba(214,143,246,1) 65%, rgba(151,91,227,1) 69%, rgba(151,91,227,1) 75%, rgba(214,143,246,1) 83%);
    background-size: auto;
    background-position: 0% 0%;
    background-repeat: repeat;
    background-color: rgba(0,0,0,0);
    padding: 2px;
    z-index: 0;
    box-shadow: 0 0 35px -5px rgba(151,91,227, 0.4);
    transition: all 0.2s ease-in-out;
}
.btn-danger-wrapper:hover {
    box-shadow: 0 0 10px -2px rgba(151,91,227, 1);
    -moz-transform: scale(1.01) translate(0px, -1px);
    -webkit-transform: scale(1.01) translate(0px, -1px);
    -o-transform: scale(1.01) translate(0px, -1px);
    -ms-transform: scale(1.01) translate(0px, -1px);
    transform: scale(1.01) translate(0px, -1px);
}
.btn-danger-wrapper.disabled {
    background-image: conic-gradient(from 180deg at center center, rgba(207,207,207,1) 0%, rgba(131,131,131,1) 18%, rgba(131,131,131,1) 20%, rgba(88,88,88,1) 23%, rgba(207,207,207,1) 28%, rgba(207,207,207,1) 65%, rgba(107,107,107,1) 69%, rgba(131,131,131,1) 75%, rgba(207,207,207,1) 83%);
    background-size: auto;
    background-position: 0% 0%;
    background-repeat: repeat;
    background-color: rgba(0,0,0,0);
    box-shadow: none;
}
.btn-danger {
    color: #161d2c;
    background: rgb(173,100,233);
    background: linear-gradient(90deg, rgba(107,70,200,1) 0%, rgba(184,108,246,1) 50%, rgba(184,108,246,1) 60%, rgba(173,100,233,1) 100%);
    border-color: transparent;
}
.btn-danger:not(.disabled):before {
    content: "";
    display: block;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 22px;
    transition: opacity 0.2s ease-in-out;
    z-index: 1;
    background: rgb(184,108,246);
    background: linear-gradient(90deg, rgba(206,138,233,1) 0%, rgba(184,108,246,1) 35%, rgba(184,108,246,1) 55%, rgba(206,138,233,1) 100%);
}
.btn-danger:not(.disabled):hover:before {
    opacity: 1;
}
.btn-danger:hover {
    color: #161d2c;
    /*background: rgb(184,108,246);
    background: linear-gradient(90deg, rgba(206,138,233,1) 0%, rgba(184,108,246,1) 35%, rgba(184,108,246,1) 55%, rgba(206,138,233,1) 100%);*/
    border-color: transparent;
}
.btn-danger:active,
.btn-danger:focus, .btn-danger.focus {
    color: #161d2c;
    /*background: rgb(173,100,233);
    background: linear-gradient(90deg, rgba(107,70,200,1) 0%, rgba(184,108,246,1) 50%, rgba(184,108,246,1) 60%, rgba(173,100,233,1) 100%);*/
    border-color: transparent;
}
.btn-danger.disabled, .btn-danger:disabled {
    color: #161d2c;
    background: rgb(117,117,117);
    background: linear-gradient(90deg, rgba(117,117,117,1) 0%, rgba(180,180,180,1) 25%, rgba(159,159,159,1) 65%, rgba(117,117,117,1) 100%);
    border-color: transparent;
    opacity: 1;
}
.btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active,
.show > .btn-danger.dropdown-toggle {
    color: #161d2c;
    /*background: rgb(173,100,233);
    background: linear-gradient(90deg, rgba(107,70,200,1) 0%, rgba(184,108,246,1) 50%, rgba(184,108,246,1) 60%, rgba(173,100,233,1) 100%);*/
    border-color: transparent;
}
.btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus,
.show > .btn-danger.dropdown-toggle:focus {
    color: #161d2c;
    /*background: rgb(173,100,233);
    background: linear-gradient(90deg, rgba(107,70,200,1) 0%, rgba(184,108,246,1) 50%, rgba(184,108,246,1) 60%, rgba(173,100,233,1) 100%);*/
    border-color: transparent;
}


.mobile-lang-swither {
    display: none;
}
#header-wrapper {
    display: flex;
    flex-direction: row;
}
#header-logo {
    width: 356px;
    min-width: 356px;
}
#header-menu {
    flex-grow: 1;
}
#header-logo {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
#header-logo-link img {
    width: 94px;
}
#header-logo-link {
    transition: all 0.2s ease-in-out;
}
#header-logo-link:hover {
    -moz-transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -o-transform: scale(1.01);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}
#user-controls-wrapper {
    display: none;
    position: absolute;
    top: 58px;
    left: 50%;
    margin-left: -109px;
    width: 218px;
    padding-top: 9px;
}
#user-controls-container {
    background-color: rgba(11, 12, 16, 0.9);
    border-radius: 20px;
    padding: 25px;
}
#header-controls {
    width: 360px;
    min-width: 360px;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}
#header-controls-inner {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}
#header-wrapper {
    height: 80px;
}
#header {
    background-color: rgba(11, 12, 16, 0.9);
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 15;
}
#header .container .row {
    width: 100%;
}
#header-nav {
    padding: 0;
}
#header-menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding-left: 50px;
    padding-right: 50px;
}
#main-nav,
#navbarCollapse {
    width: 100%;
    min-width: 100%;
}
#main-nav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.nav-link {
    font-size: 18px;
    color: #b4b7bc;
    transition: all 0.3s ease-in-out;
}
.nav-link:hover {
    color: #24dcff;
    text-shadow: 0 0 10px rgba(36, 220, 255, 0.8);
}
#buy-btn-wrapper {
    height: 44px;
}
.ht-buttons-wrapper {
    display: flex;
    flex-direction: row;
    margin-top: 30px;
    /*margin-left: 20px;*/
}
.ht-buttons-wrapper > div {
    width: 260px;
    text-align: center;
}
.htb-description {
    display: inline-block;
    font-size: 13px;
    line-height: 1.3;
    text-align: center;
    margin-top: 8px;
    color: #b5b8be;
}
h1, .h1 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.1;
}
.gradient-blue span {
    display: inline-block;
    background-color: #31fbff;
    background-image: linear-gradient(90deg, rgba(33,222,254,1) 0%, rgba(49,251,255,1) 50%, rgba(30,161,233,1) 100%);
    background-size: 100%;
    background-repeat: repeat;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-background-clip: text;
    -moz-text-fill-color: transparent;
}
.gradient-purple span {
    display: inline-block;
    background: #d4afff;
    background: linear-gradient(90deg, rgba(212,175,255,1) 0%, rgba(221,194,255,1) 50%, rgba(173,127,255,1) 100%);
    background-size: 100%;
    background-repeat: repeat;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-background-clip: text;
    -moz-text-fill-color: transparent;
}
.gradient-gold span {
    display: inline-block;
    background: #e3ce89;
    background: linear-gradient(90deg, rgba(227,206,137,1) 0%, rgba(255,241,165,1) 50%, rgba(183,147,80,1) 100%);
    background-size: 100%;
    background-repeat: repeat;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-background-clip: text;
    -moz-text-fill-color: transparent;
}
.gradient-green span {
    display: inline-block;
    background: #40ee97;
    background: linear-gradient(90deg, rgba(64,238,151,1) 0%, rgba(56,248,212,1) 50%, rgba(64,237,148,1) 100%);
    background-size: 100%;
    background-repeat: repeat;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-background-clip: text;
    -moz-text-fill-color: transparent;
}
.ht-description-1 {
    font-size: 20px;
    line-height: 1.25;
    margin-top: 30px;
    color: #c0c1c2;
    padding-right: 130px;
}
.ht-description-1 strong.text-blue {
    color: #24e0fd;
    font-weight: 600;
}
.ht-description-2 {
    font-size: 17px;
    line-height: 1.25;
    margin-top: 30px;
    color: #b5b8be;
    padding-right: 130px;
}
.ht-description-2 .text-blue {
    color: #24e0fd;
}
.ht-header {
    margin-top: 40px;
}
.ht-logo {
    text-align: center;
    position: relative;
    left: -40px;
}
.ht-logo img {
    margin-left: -60px;
}
.hero-text-wrapper {
    padding-top: 150px;
    padding-right: 80px;
    padding-bottom: 50px;
    position: relative;
    left: 110px;
}
#ecosystem-decor-container,
.hero-img-wrapper {
    position: relative;
}
#hero-img {
    position: absolute;
    bottom: 0;
    left: 62px;
}
#ecosystem-img {
    position: absolute;
    bottom: 0;
    right: -37px;
}
#hero {
    margin-top: 80px;
    padding-bottom: 45px;
    position: relative;
}
#hero:before {
    content: " ";
    display: block;
    width: 1000px;
    height: 1000px;
    position: absolute;
    top: 50%;
    left: 0;
    z-index: -1;
    margin-top: -500px;
    margin-left: 200px;
    background: rgb(21,57,101);
    background: radial-gradient(circle, rgba(21,57,101,1) 0%, rgba(51,250,254,0) 60%, rgba(51,250,254,0) 100%);
    transform: rotate(38deg) skew(-20deg);
    -webkit-transform: rotate(38deg) skew(-20deg);
    -moz-transform: rotate(38deg) skew(-20deg);
    opacity: 0.6;
}
#main-wrapper {
    position: relative;
    min-height: 100%;
    padding-bottom: 150px;
    max-width: 100%;
    overflow: hidden;
}
#footer {
    background-color: #0b0c10;
    height: 150px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.ton-symbol {
    display: inline-block;
    width: 50px;
    height: 50px;
    position: relative;
    top: 16px;
    margin-left: 6px;
    margin-right: 6px;
    background-image: url("data:image/svg+xml,%3Csvg width='56' height='56' viewBox='0 0 56 56' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='28' cy='28' r='28' fill='%230088CC'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M20.2088 18.5044L35.9132 18.5043C36.4688 18.5043 37.024 18.5859 37.6042 18.8564C38.2997 19.1806 38.6685 19.6916 38.9269 20.0695C38.947 20.0989 38.9658 20.1292 38.9832 20.1602C39.287 20.701 39.4436 21.2849 39.4436 21.913C39.4436 22.5098 39.3016 23.16 38.9832 23.7267C38.9802 23.7322 38.9771 23.7375 38.974 23.7429L29.0522 40.7864C28.8334 41.1623 28.4307 41.3928 27.9958 41.3913C27.5609 41.3898 27.1598 41.1563 26.9437 40.7789L17.2041 23.7718C17.2013 23.7672 17.1985 23.7626 17.1957 23.7579C16.9728 23.3906 16.6281 22.8226 16.5678 22.0896C16.5124 21.4155 16.6639 20.7401 17.0026 20.1545C17.3413 19.5688 17.8512 19.1006 18.4645 18.814C19.1221 18.5067 19.7885 18.5044 20.2088 18.5044ZM26.7827 20.9391L20.2088 20.9391C19.7769 20.9391 19.6111 20.9657 19.4952 21.0199C19.3349 21.0947 19.2003 21.2178 19.1103 21.3734C19.0203 21.5291 18.9796 21.7095 18.9944 21.8901C19.0029 21.9936 19.0451 22.112 19.294 22.5225C19.2992 22.5311 19.3043 22.5398 19.3093 22.5485L26.7827 35.5984V20.9391ZM29.2175 20.9391V35.6629L36.864 22.5278C36.9503 22.371 37.0088 22.1444 37.0088 21.913C37.0088 21.7253 36.9699 21.5623 36.8829 21.3943C36.7916 21.263 36.736 21.1935 36.6895 21.1459C36.6496 21.1052 36.6189 21.0834 36.5755 21.0632C36.3947 20.9789 36.2097 20.9391 35.9132 20.9391L29.2175 20.9391Z' fill='white'/%3E%3C/svg%3E%0A");
    background-size: contain;
}
.powered-wrapper {
    font-size: 21px;
    font-weight: 700;
}
.powered-wrapper a {
    color: #bfc0c2;
}
.powered-wrapper a:hover,
.powered-wrapper a:focus,
.powered-wrapper a:active {
    color: #bfc0c2;
    text-decoration: none;
}
.social-container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
}
.social-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 74px;
}
.social-item:first-child {
    margin-right: 15px;
}
.social-item:hover {
    text-decoration: none;
}
.social-item:hover .social-icon-wrapper {
    background-color: transparent;
}
.social-icon-wrapper {
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 56px;
    height: 56px;
    border-radius: 28px;
    background-color: #1e1f23;
}
.social-icon-wrapper i {
    display: inline-block;
    width: 34px;
    height: 34px;
}
.social-icon-wrapper i.icon-telegram {
    position: relative;
    left: -2px;
    top: 2px;
}
.icon-telegram {
    background-image: url("data:image/svg+xml,%3C!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3E%3Csvg width='200px' height='200px' viewBox='0 0 100 100' version='1.1' xml:space='preserve' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' fill='%23ffffff' stroke='%23ffffff'%3E%3Cg id='SVGRepo_bgCarrier' stroke-width='0'/%3E%3Cg id='SVGRepo_tracerCarrier' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cg id='SVGRepo_iconCarrier'%3E%3Cg id='Layer_1'/%3E%3Cg id='Layer_2'%3E%3Cg%3E%3Cpath fill='%23FFFFFF' d='M88.723,12.142C76.419,17.238,23.661,39.091,9.084,45.047c-9.776,3.815-4.053,7.392-4.053,7.392 s8.345,2.861,15.499,5.007c7.153,2.146,10.968-0.238,10.968-0.238l33.62-22.652c11.922-8.107,9.061-1.431,6.199,1.431 c-6.199,6.2-16.452,15.975-25.036,23.844c-3.815,3.338-1.908,6.199-0.238,7.63c6.199,5.246,23.129,15.976,24.082,16.691 c5.037,3.566,14.945,8.699,16.452-2.146c0,0,5.961-37.435,5.961-37.435c1.908-12.637,3.815-24.321,4.053-27.659 C97.307,8.804,88.723,12.142,88.723,12.142z'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    background-size: contain;
}
.icon-chat {
    background-image: url("data:image/svg+xml,%3C!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3E%3Csvg width='200px' height='200px' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='SVGRepo_bgCarrier' stroke-width='0'/%3E%3Cg id='SVGRepo_tracerCarrier' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cg id='SVGRepo_iconCarrier'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M9.34802 2.71763C11.0814 2.22238 12.9188 2.22238 14.6522 2.71763C17.8592 3.63393 20.3661 6.14079 21.2824 9.34783C21.7776 11.0812 21.7776 12.9186 21.2824 14.652L21.2463 14.7784C20.3524 17.9068 17.907 20.3522 14.7786 21.2461C12.9538 21.7674 11.014 21.7253 9.21355 21.1252L7.57101 20.5776C7.49859 20.5535 7.42079 20.5505 7.34674 20.569L3.74264 21.47C3.40186 21.5552 3.04137 21.4554 2.79299 21.207C2.54461 20.9586 2.44476 20.5981 2.52996 20.2574L3.43098 16.6533C3.4495 16.5792 3.44651 16.5014 3.42237 16.429L2.87486 14.7865C2.27471 12.986 2.23256 11.0462 2.75393 9.22143C3.64777 6.093 6.09319 3.64758 9.22162 2.75374L9.34802 2.71763ZM7.5 13.4999C8.32843 13.4999 9 12.8283 9 11.9999C9 11.1715 8.32843 10.4999 7.5 10.4999C6.67157 10.4999 6 11.1715 6 11.9999C6 12.8283 6.67157 13.4999 7.5 13.4999ZM13.5 11.9999C13.5 12.8283 12.8284 13.4999 12 13.4999C11.1716 13.4999 10.5 12.8283 10.5 11.9999C10.5 11.1715 11.1716 10.4999 12 10.4999C12.8284 10.4999 13.5 11.1715 13.5 11.9999ZM16.5 13.4999C17.3284 13.4999 18 12.8283 18 11.9999C18 11.1715 17.3284 10.4999 16.5 10.4999C15.6716 10.4999 15 11.1715 15 11.9999C15 12.8283 15.6716 13.4999 16.5 13.4999Z' fill='%23FFFFFF'/%3E%3C/g%3E%3C/svg%3E");
    background-size: contain;
}
.social-item-text {
    font-size: 15px;
    font-weight: 700;
    color: #bfc0c2;
    display: inline-block;
    margin-top: 3px;
}
#footer > .container {
    padding-left: 145px;
    padding-right: 145px;
}
#auth-wrapper {
    width: 36px;
    height: 36px;
    margin-left: 40px;
    position: relative;
}
#auth-wrapper.loading:before {
    content: " ";
    display: block;
    width: 46px;
    height: 46px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -23px;
    margin-left: -23px;
    background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' style='margin: auto; background: none; display: block; shape-rendering: auto;' width='200px' height='200px' viewBox='0 0 100 100' preserveAspectRatio='xMidYMid'%3E%3Cg transform='rotate(0 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='-0.9166666666666666s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3Cg transform='rotate(30 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='-0.8333333333333334s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3Cg transform='rotate(60 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='-0.75s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3Cg transform='rotate(90 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='-0.6666666666666666s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3Cg transform='rotate(120 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='-0.5833333333333334s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3Cg transform='rotate(150 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='-0.5s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3Cg transform='rotate(180 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='-0.4166666666666667s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3Cg transform='rotate(210 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='-0.3333333333333333s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3Cg transform='rotate(240 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='-0.25s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3Cg transform='rotate(270 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='-0.16666666666666666s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3Cg transform='rotate(300 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='-0.08333333333333333s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3Cg transform='rotate(330 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='0s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3C/svg%3E");
    background-size: contain;
}
#auth-wrapper .icon-user {
    display: inline-block;
    width: 36px;
    height: 36px;
    cursor: pointer;
    /*background-image: url("data:image/svg+xml,%3C!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3E%3Csvg width='200px' height='200px' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='SVGRepo_bgCarrier' stroke-width='0'/%3E%3Cg id='SVGRepo_tracerCarrier' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cg id='SVGRepo_iconCarrier'%3E%3Cpath d='M18 18.7083C18 17.0886 16.8283 15 15 15H9C7.17172 15 6 17.0886 6 18.7083M3 12C3 7.02944 7.02944 3 12 3C16.9706 3 21 7.02944 21 12C21 16.9706 16.9706 21 12 21C7.02944 21 3 16.9706 3 12ZM15 9C15 10.6569 13.6569 12 12 12C10.3431 12 9 10.6569 9 9C9 7.34315 10.3431 6 12 6C13.6569 6 15 7.34315 15 9Z' stroke='%23b4b7bc' stroke-width='1.5'/%3E%3C/g%3E%3C/svg%3E");*/

    /*background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3C!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3E%3C!-- Creator: CorelDRAW X7 --%3E%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' width='60mm' height='60mm' version='1.1' style='shape-rendering:geometricPrecision; text-rendering:geometricPrecision; image-rendering:optimizeQuality; fill-rule:evenodd; clip-rule:evenodd'%0AviewBox='0 0 6000 6000' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3Cstyle type='text/css'%3E%3C!%5BCDATA%5B .fil0 %7Bfill:%23b5b8be%7D %5D%5D%3E%3C/style%3E%3C/defs%3E%3Cg id='Слой_x0020_1'%3E%3Cmetadata id='CorelCorpID_0Corel-Layer'/%3E%3Cg id='_1548721623808'%3E%3Cpath class='fil0' d='M3006 43c1638,0 2965,1327 2965,2965 0,1637 -1327,2965 -2965,2965 -1637,0 -2965,-1328 -2965,-2965 0,-1638 1328,-2965 2965,-2965zm0 349c1445,0 2617,1171 2617,2616 0,1445 -1172,2616 -2617,2616 -1445,0 -2616,-1171 -2616,-2616 0,-1445 1171,-2616 2616,-2616z'/%3E%3Cpath class='fil0' d='M2995 792c639,0 1157,518 1157,1157 0,639 -518,1157 -1157,1157 -638,0 -1156,-518 -1156,-1157 0,-639 518,-1157 1156,-1157zm-2 383c426,0 771,345 771,771 0,426 -345,772 -771,772 -427,0 -772,-346 -772,-772 0,-426 345,-771 772,-771z'/%3E%3Cpolygon class='fil0' points='2996,3674 2996,3340 2268,3340 2105,3375 2003,3428 1902,3503 1787,3609 1620,3789 1510,3926 1439,4024 1382,4155 1351,4270 1335,4416 1351,4538 1395,4649 1479,4746 1608,4883 1746,4997 1894,5091 2080,5198 2225,5273 2353,5314 2491,5342 2618,5356 2779,5365 3004,5365 3004,5365 3214,5365 3375,5355 3501,5341 3640,5314 3768,5272 3913,5198 4099,5091 4247,4997 4385,4883 4514,4746 4598,4649 4642,4538 4658,4415 4642,4270 4611,4155 4554,4024 4483,3926 4373,3789 4206,3608 4091,3503 3989,3428 3888,3375 3725,3339 2997,3339 2997,3674 3522,3675 3707,3675 3770,3688 3833,3708 3892,3750 3954,3802 4230,4139 4280,4241 4300,4326 4296,4398 4261,4481 4177,4567 4029,4673 3880,4766 3755,4838 3625,4909 3533,4946 3429,4965 3290,4977 3119,4985 2989,4985 2989,4986 2874,4985 2703,4977 2564,4966 2460,4947 2368,4909 2238,4838 2113,4766 1964,4674 1816,4568 1732,4482 1696,4398 1693,4326 1713,4241 1763,4139 2039,3803 2101,3750 2160,3708 2223,3688 2286,3675 2471,3675 '/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
    background-size: contain;*/
    position: relative;
    transition: all 0.3s ease-in-out;
}

#auth-wrapper .icon-user:before {
    content: " ";
    display: block;
    width: 36px;
    height: 36px;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 1;
    background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3C!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3E%3C!-- Creator: CorelDRAW X7 --%3E%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' width='60mm' height='60mm' version='1.1' style='shape-rendering:geometricPrecision; text-rendering:geometricPrecision; image-rendering:optimizeQuality; fill-rule:evenodd; clip-rule:evenodd'%0AviewBox='0 0 6000 6000' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3Cstyle type='text/css'%3E%3C!%5BCDATA%5B .fil0 %7Bfill:%23b5b8be%7D %5D%5D%3E%3C/style%3E%3C/defs%3E%3Cg id='Слой_x0020_1'%3E%3Cmetadata id='CorelCorpID_0Corel-Layer'/%3E%3Cg id='_1548721623808'%3E%3Cpath class='fil0' d='M3006 43c1638,0 2965,1327 2965,2965 0,1637 -1327,2965 -2965,2965 -1637,0 -2965,-1328 -2965,-2965 0,-1638 1328,-2965 2965,-2965zm0 349c1445,0 2617,1171 2617,2616 0,1445 -1172,2616 -2617,2616 -1445,0 -2616,-1171 -2616,-2616 0,-1445 1171,-2616 2616,-2616z'/%3E%3Cpath class='fil0' d='M2995 792c639,0 1157,518 1157,1157 0,639 -518,1157 -1157,1157 -638,0 -1156,-518 -1156,-1157 0,-639 518,-1157 1156,-1157zm-2 383c426,0 771,345 771,771 0,426 -345,772 -771,772 -427,0 -772,-346 -772,-772 0,-426 345,-771 772,-771z'/%3E%3Cpolygon class='fil0' points='2996,3674 2996,3340 2268,3340 2105,3375 2003,3428 1902,3503 1787,3609 1620,3789 1510,3926 1439,4024 1382,4155 1351,4270 1335,4416 1351,4538 1395,4649 1479,4746 1608,4883 1746,4997 1894,5091 2080,5198 2225,5273 2353,5314 2491,5342 2618,5356 2779,5365 3004,5365 3004,5365 3214,5365 3375,5355 3501,5341 3640,5314 3768,5272 3913,5198 4099,5091 4247,4997 4385,4883 4514,4746 4598,4649 4642,4538 4658,4415 4642,4270 4611,4155 4554,4024 4483,3926 4373,3789 4206,3608 4091,3503 3989,3428 3888,3375 3725,3339 2997,3339 2997,3674 3522,3675 3707,3675 3770,3688 3833,3708 3892,3750 3954,3802 4230,4139 4280,4241 4300,4326 4296,4398 4261,4481 4177,4567 4029,4673 3880,4766 3755,4838 3625,4909 3533,4946 3429,4965 3290,4977 3119,4985 2989,4985 2989,4986 2874,4985 2703,4977 2564,4966 2460,4947 2368,4909 2238,4838 2113,4766 1964,4674 1816,4568 1732,4482 1696,4398 1693,4326 1713,4241 1763,4139 2039,3803 2101,3750 2160,3708 2223,3688 2286,3675 2471,3675 '/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
    background-size: contain;
    transition: all 0.3s ease-in-out;
}
#auth-wrapper .icon-user:after {
    content: " ";
    display: block;
    width: 36px;
    height: 36px;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3C!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3E%3C!-- Creator: CorelDRAW X7 --%3E%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' width='60mm' height='60mm' version='1.1' style='shape-rendering:geometricPrecision; text-rendering:geometricPrecision; image-rendering:optimizeQuality; fill-rule:evenodd; clip-rule:evenodd'%0AviewBox='0 0 6000 6000' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3Cstyle type='text/css'%3E%3C!%5BCDATA%5B .fil0 %7Bfill:%2324dcff%7D %5D%5D%3E%3C/style%3E%3C/defs%3E%3Cg id='Слой_x0020_1'%3E%3Cmetadata id='CorelCorpID_0Corel-Layer'/%3E%3Cg id='_1548721623808'%3E%3Cpath class='fil0' d='M3006 43c1638,0 2965,1327 2965,2965 0,1637 -1327,2965 -2965,2965 -1637,0 -2965,-1328 -2965,-2965 0,-1638 1328,-2965 2965,-2965zm0 349c1445,0 2617,1171 2617,2616 0,1445 -1172,2616 -2617,2616 -1445,0 -2616,-1171 -2616,-2616 0,-1445 1171,-2616 2616,-2616z'/%3E%3Cpath class='fil0' d='M2995 792c639,0 1157,518 1157,1157 0,639 -518,1157 -1157,1157 -638,0 -1156,-518 -1156,-1157 0,-639 518,-1157 1156,-1157zm-2 383c426,0 771,345 771,771 0,426 -345,772 -771,772 -427,0 -772,-346 -772,-772 0,-426 345,-771 772,-771z'/%3E%3Cpolygon class='fil0' points='2996,3674 2996,3340 2268,3340 2105,3375 2003,3428 1902,3503 1787,3609 1620,3789 1510,3926 1439,4024 1382,4155 1351,4270 1335,4416 1351,4538 1395,4649 1479,4746 1608,4883 1746,4997 1894,5091 2080,5198 2225,5273 2353,5314 2491,5342 2618,5356 2779,5365 3004,5365 3004,5365 3214,5365 3375,5355 3501,5341 3640,5314 3768,5272 3913,5198 4099,5091 4247,4997 4385,4883 4514,4746 4598,4649 4642,4538 4658,4415 4642,4270 4611,4155 4554,4024 4483,3926 4373,3789 4206,3608 4091,3503 3989,3428 3888,3375 3725,3339 2997,3339 2997,3674 3522,3675 3707,3675 3770,3688 3833,3708 3892,3750 3954,3802 4230,4139 4280,4241 4300,4326 4296,4398 4261,4481 4177,4567 4029,4673 3880,4766 3755,4838 3625,4909 3533,4946 3429,4965 3290,4977 3119,4985 2989,4985 2989,4986 2874,4985 2703,4977 2564,4966 2460,4947 2368,4909 2238,4838 2113,4766 1964,4674 1816,4568 1732,4482 1696,4398 1693,4326 1713,4241 1763,4139 2039,3803 2101,3750 2160,3708 2223,3688 2286,3675 2471,3675 '/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
    background-size: contain;
    transition: all 0.3s ease-in-out;
}
#auth-wrapper .icon-user:hover:before {
    opacity: 0;
}
#auth-wrapper .icon-user:hover:after {
    opacity: 1;
}

/*
.webpalpha #auth-wrapper .icon-user {
    background: url(/images/icon-user-fix.webp) 0 0 no-repeat;
    background-size: contain;
}
.no-webpalpha #auth-wrapper .icon-user {
    background: url(/images/icon-user-fix.png) 0 0 no-repeat;
    background-size: contain;
}*/
#desktop-lang-swither {
    width: 66px;
    margin-left: 30px;
}
.lang-switcher {

}
.lang-switcher .icon-lang {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 3px;
    position: relative;
    top: 4px;
}
/*
.webpalpha .icon-ru {
    background: url(/images/icon-lang-ru.webp) 0 0 no-repeat;
    background-size: contain;
}
.no-webpalpha .icon-ru {
    background: url(/images/icon-lang-ru.png) 0 0 no-repeat;
    background-size: contain;
}*/
.icon-ru {
    background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cg clip-path='url(%23clip0_1166_2651)'%3E%3Cpath d='M13.7417 -1.71667e-07C14.9604 -1.00144e-07 15.5697 -6.43826e-08 15.9969 0.406848C16.1349 0.538243 16.2562 0.697284 16.3564 0.878134C16.6667 1.43811 16.6667 2.23691 16.6667 3.83451L16.6667 5.33333L-0.666586 5.33333L-0.666586 3.83451C-0.666586 2.23691 -0.666586 1.43811 -0.356239 0.878133C-0.25601 0.697283 -0.134691 0.538242 0.00326333 0.406847C0.43042 -9.52901e-07 1.03975 -9.17139e-07 2.25841 -8.45617e-07L13.7417 -1.71667e-07Z' fill='%23F0F0F0'%3E%3C/path%3E%3Cpath d='M16.6667 5.33325L16.6667 10.6666L-0.666586 10.6666L-0.666586 5.33325L16.6667 5.33325Z' fill='%230F5498'%3E%3C/path%3E%3Cpath d='M16.6667 10.6667L16.6667 12.1657C16.6667 13.7632 16.6667 14.562 16.3564 15.122C16.2562 15.3028 16.1349 15.4619 15.9969 15.5932C15.5697 16.0001 14.9604 16.0001 13.7417 16.0001L2.25841 16.0001C1.03975 16.0001 0.43042 16.0001 0.00326315 15.5932C-0.134691 15.4619 -0.25601 15.3028 -0.356239 15.122C-0.666586 14.562 -0.666586 13.7632 -0.666586 12.1657L-0.666586 10.6667L16.6667 10.6667Z' fill='%23DB1237'%3E%3C/path%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_1166_2651'%3E%3Crect width='16' height='16' rx='8' fill='white'%3E%3C/rect%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E ");
    background-size: contain;
}
/*
.webpalpha .icon-en {
    background: url(/images/icon-lang-en.webp) 0 0 no-repeat;
    background-size: contain;
}
.no-webpalpha .icon-en {
    background: url(/images/icon-lang-en.png) 0 0 no-repeat;
    background-size: contain;
}*/
.icon-en {
    background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cg clip-path='url(%23clip0_937_1070)'%3E%3Cpath d='M17.4545 3.23971V12.7604C17.4545 13.7481 16.6627 14.5455 15.6818 14.5455H0.318137C-0.662772 14.5455 -1.45459 13.7481 -1.45459 12.7604V3.23971C-1.45459 2.25195 -0.662772 1.45459 0.318137 1.45459H15.6818C16.6627 1.45459 17.4545 2.25195 17.4545 3.23971Z' fill='%230F5498'%3E%3C/path%3E%3Cpath d='M17.4545 1.65287V14.3471C17.4545 15.6641 16.6627 16.7273 15.6818 16.7273H0.318137C-0.662772 16.7273 -1.45459 15.6641 -1.45459 14.3471V1.65287C-1.45459 0.335846 -0.662772 -0.727295 0.318137 -0.727295H15.6818C16.6627 -0.727295 17.4545 0.335846 17.4545 1.65287Z' fill='%230F5498'%3E%3C/path%3E%3Cpath d='M-1.45459 3.19232V4.25813L5.29909 8.00004L7.27268 4.72152L1.37001 1.45459H0.356048C-0.645838 1.45459 -1.45459 2.23078 -1.45459 3.19232Z' fill='%23F1F4F9'%3E%3C/path%3E%3Cpath d='M5.81824 -1.45459H10.1819V17.4545H5.81824V-1.45459Z' fill='%23F1F4F9'%3E%3C/path%3E%3Cpath d='M-1.45459 5.81824H17.4545V10.1819H-1.45459V5.81824Z' fill='%23F1F4F9'%3E%3C/path%3E%3Cpath d='M7.69822 5.81824L5.81824 9.25331L14.5053 14.5455H15.7298C16.6842 14.5455 17.4546 13.7323 17.4546 12.7248V11.7659L7.69822 5.81824Z' fill='%23F1F4F9'%3E%3C/path%3E%3Cpath d='M-1.45459 11.7051V12.6849C-1.45459 13.7144 -0.682454 14.5454 0.274072 14.5454H1.50142L8.72723 10.0555L6.84299 6.54541L-1.45459 11.7051Z' fill='%23F1F4F9'%3E%3C/path%3E%3Cpath d='M17.4545 3.31939C17.4545 2.28753 16.6529 1.45459 15.6598 1.45459H14.7386L7.27271 5.93633L9.22891 9.45459L17.4545 4.51286V3.31939Z' fill='%23F1F4F9'%3E%3C/path%3E%3Cpath d='M6.54541 -0.727295H9.4545V16.7273H6.54541V-0.727295Z' fill='%23DB1237'%3E%3C/path%3E%3Cpath d='M17.4545 6.54541V9.4545H-1.45459V6.54541H17.4545Z' fill='%23DB1237'%3E%3C/path%3E%3Cpath d='M-0.727295 3.26449L7.4099 7.99994L7.99998 6.97076L-0.219827 2.18176C-0.503065 2.46137 -0.680089 2.84211 -0.727295 3.26449Z' fill='%23DB1237'%3E%3C/path%3E%3Cpath d='M6.54541 6.54551V5.81824H-1.45459V6.54551H6.54541Z' fill='%23F1F4F9'%3E%3C/path%3E%3Cpath d='M17.237 1.45459L8.72729 6.2221L9.35301 7.27277L18.1818 2.32307C17.9879 1.94045 17.6562 1.62464 17.237 1.45459Z' fill='%23DB1237'%3E%3C/path%3E%3Cpath d='M8.61155 8L8 8.99167L16.9164 13.8182C17.2099 13.5488 17.4056 13.1876 17.4545 12.7864L8.61155 8Z' fill='%23DB1237'%3E%3C/path%3E%3Cpath d='M17.4546 10.1817V9.45447H9.45459V10.1817H17.4546Z' fill='%23F1F4F9'%3E%3C/path%3E%3Cpath d='M17.4546 6.54551V5.81824H9.45459V6.54551H17.4546Z' fill='%23F1F4F9'%3E%3C/path%3E%3Cpath d='M6.66704 8.72729L-1.45459 13.6435C-1.25473 14.05 -0.927683 14.374 -0.515848 14.5455L7.27268 9.8325L6.66704 8.72729Z' fill='%23DB1237'%3E%3C/path%3E%3Cpath d='M6.54541 10.1819V9.45459H-1.45459V10.1819H6.54541Z' fill='%23F1F4F9'%3E%3C/path%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_937_1070'%3E%3Crect width='16' height='16' rx='8' fill='white'%3E%3C/rect%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E ");
    background-size: contain;
}
.lang-switcher span {
    font-size: 18px;
}
.lang-switcher {
    color: #b4b7bc;
    transition: all 0.3s ease-in-out;
}
.lang-switcher:hover {
    color: #24dcff;
    text-decoration: none;
    text-shadow: 0 0 10px rgba(36, 220, 255, 0.8);
}
.lang-switcher .icon-lang {
    transition: all 0.3s ease-in-out;
}
.lang-switcher:hover .icon-lang {
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
.text-blue {
    color: #2de6f9;
}
h1, .h1,
h2, .h2 {
    font-size: 36px;
    font-weight: 800;
    color: #eeeeee;
}
.section h2,
.section .h2 {
    text-align: center;
}
.section:not(#hero) {
    padding-top: 45px;
    padding-bottom: 45px;
}
.block-tile {
    border-radius: 25px;
    padding: 3px;
    overflow: hidden;
}
.tile-blue {
    background-image: repeating-radial-gradient(ellipse farthest-corner at left top, rgba(50,235,251,1) 0%, rgba(20,121,211,1) 29%, rgba(20,121,211,1) 40%, rgba(20,50,95,1) 60%, rgba(32,36,52,1) 80%, rgba(32,32,32,1) 100%);
    background-size: auto;
    background-position: 0% 0%;
    background-repeat: repeat;
    background-color: rgba(0,0,0,0);
}
.tile-gold {
    background-image: repeating-radial-gradient(ellipse farthest-corner at left top, rgba(235,233,175,1) 0%, rgba(153,141,76,1) 28%, rgba(139,128,67,1) 40%, rgba(106,96,56,1) 60%, rgba(62,60,45,1) 80%, rgba(36,36,32,1) 100%);
    background-size: auto;
    background-position: 0% 0%;
    background-repeat: repeat;
    background-color: rgba(0,0,0,0);
}
.tile-purple {
    background-image: repeating-radial-gradient(ellipse farthest-corner at left top, rgba(195,113,240,1) 0%, rgba(86,52,170,1) 28%, rgba(72,45,139,1) 40%, rgba(46,33,86,1) 60%, rgba(52,42,73,1) 80%, rgba(36,32,36,1) 100%);
    background-size: auto;
    background-position: 0% 0%;
    background-repeat: repeat;
    background-color: rgba(0,0,0,0);
}
.tile-green {
    background-image: repeating-radial-gradient(ellipse farthest-corner at left top, rgba(50,253,252,1) 0%, rgba(20,231,217,1) 23%, rgba(20,183,157,1) 38%, rgba(20,115,96,1) 59%, rgba(31,62,55,1) 80%, rgba(31,35,35,1) 100%);
    background-size: auto;
    background-position: 0% 0%;
    background-repeat: repeat;
    background-color: rgba(0,0,0,0);
}
.tile-inner {
    height: 100%;
    background: rgb(43,44,47);
    background: linear-gradient(45deg, rgba(43,44,47,1) 0%, rgba(14,15,20,1) 100%);
    padding: 40px 35px;
    border-radius: 23px;
    position: relative;
    z-index: 1;
    /*overflow: hidden;*/
}
.tile-inner > p,
.tile-inner > div {
    position: relative;
    z-index: 5;
}
.tile-inner > .tile-bg-gradient {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    overflow: hidden;
    border-radius: 23px;
}
.tile-blue .tile-bg-gradient:before {
    content: " ";
    display: block;
    width: 600px;
    height: 600px;
    position: absolute;
    top: -300px;
    left: -210px;
    z-index: 2;
    background: radial-gradient(circle, rgba(35,59,99,1) 0%, rgba(18,214,223,0) 52%, rgba(18,214,223,0) 100%);
}
#tile-airdrop .tile-inner:after {
    content: " ";
    display: block;
    width: 140px;
    height: 187px;
    position: absolute;
    top: -3px;
    right: -3px;
    z-index: 3;
}
.webpalpha #tile-airdrop .tile-inner:after {
    background: url(/images/tile-airdrop-decor1.webp) 0 0 no-repeat;
    background-size: contain;
}
.no-webpalpha #tile-airdrop .tile-inner:after {
    background: url(/images/tile-airdrop-decor1.png) 0 0 no-repeat;
    background-size: contain;
}
.tile-gold .tile-bg-gradient:before {
    content: " ";
    display: block;
    width: 600px;
    height: 600px;
    position: absolute;
    top: -300px;
    left: -210px;
    z-index: 2;
    background: radial-gradient(circle, rgba(75,72,56,1) 0%, rgba(18,214,223,0) 52%, rgba(18,214,223,0) 100%);
}
.tile-purple .tile-bg-gradient:before {
    content: " ";
    display: block;
    width: 600px;
    height: 600px;
    position: absolute;
    top: -300px;
    left: -210px;
    z-index: 2;
    background: radial-gradient(circle, rgba(56,45,99,1) 0%, rgba(18,214,223,0) 52%, rgba(18,214,223,0) 100%);
}
.tile-purple .tile-inner:after {
    content: " ";
    display: block;
    width: 140px;
    height: 187px;
    position: absolute;
    top: -3px;
    right: -3px;
    z-index: 3;
}
.webpalpha .tile-purple .tile-inner:after {
    background: url(/images/tile-marga-decor1.webp) 0 0 no-repeat;
    background-size: contain;
}
.no-webpalpha .tile-purple .tile-inner:after {
    background: url(/images/tile-marga-decor1.png) 0 0 no-repeat;
    background-size: contain;
}
#tile-no-deal.tile-purple .tile-inner:after,
#tile-max-invest.tile-purple .tile-inner:after {
    display: none;
}
#tile-invest .tile-inner:after {
    content: " ";
    display: block;
    width: 141px;
    height: 136px;
    position: absolute;
    bottom: -3px;
    right: -3px;
    z-index: 3;
}
.webpalpha #tile-invest .tile-inner:after {
    background: url(/images/tile-invest-decor1.webp) 0 0 no-repeat;
    background-size: contain;
}
.no-webpalpha #tile-invest .tile-inner:after {
    background: url(/images/tile-invest-decor1.png) 0 0 no-repeat;
    background-size: contain;
}
#tile-fortuna .tile-inner:after {
    content: " ";
    display: block;
    width: 149px;
    height: 74px;
    position: absolute;
    bottom: 30px;
    right: 20px;
    z-index: 3;
}
.webpalpha #tile-fortuna .tile-inner:after {
    background: url(/images/tile-fortuna-decor1.webp) 0 0 no-repeat;
    background-size: contain;
}
.no-webpalpha #tile-fortuna .tile-inner:after {
    background: url(/images/tile-fortuna-decor1.png) 0 0 no-repeat;
    background-size: contain;
}
.tile-header {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.1;
}
.tile-text {
    font-size: 16px;
    line-height: 1.3;
}
.tile-text strong.text-blue {
    font-weight: 600;
    color: #24e0fd;
}
.text-purple,
.tile-text strong.text-purple {
    color: #caaeff;
}
.tile-text strong.text-purple {
    font-weight: 600;
}
.text-gold,
.tile-text strong.text-gold {
    color: #fff1a5;
}
.tile-text strong.text-gold {
    font-weight: 600;
}
.text-green {
    color: #3bf4ba;
}
.tbrt-label {
    font-size: 16px;
    color: #b5b8be;
    line-height: 1.2;
}
.tbrt-value {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
}
.e-tile-wrapper {
    width: 50%;
    padding: 10px;
    min-height: 314px;
}
.e-tile-wrapper .e-tile {
    height: 100%;
}
.e-tile:nth-child(1),
.e-tile:nth-child(2) {
}
#ecosystem-tile-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    position: relative;
    top: 10px;
    padding-left: 48px;
}
.tile-inner .tile-bottom-right-text {
    position: absolute;
    bottom: 15px;
    right: 20px;
    text-align: right;
}
.tile-inner .tile-bottom-link {
    position: absolute;
    bottom: 35px;
    left: 35px;
}
.link-custom:hover,
.link-custom {
    text-decoration: none;
}
.link-purple:hover,
.link-purple {
    color: #caaeff;
}
.link-purple span {
    font-size: 14px;
    font-weight: 600;
    color: #caaeff;
    border-bottom: 1px solid #caaeff;
}
.link-purple:hover span {
    border-bottom-color: transparent;
}
.link-purple .icon-arrow-right {
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3C!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3E%3Csvg width='100px' height='100px' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='SVGRepo_bgCarrier' stroke-width='0'/%3E%3Cg id='SVGRepo_tracerCarrier' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cg id='SVGRepo_iconCarrier'%3E%3Cpath d='M5 12H19M19 12L13 6M19 12L13 18' stroke='%23caaeff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3C/svg%3E");
    background-size: contain;
    position: relative;
    top: 4px;
}
.link-gold:hover,
.link-gold {
    color: #fef1a4;
}
.link-gold span {
    font-size: 14px;
    font-weight: 600;
    color: #fef1a4;
    border-bottom: 1px solid #fef1a4;
}
.link-gold:hover span {
    border-bottom-color: transparent;
}
.link-gold .icon-arrow-right {
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3C!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3E%3Csvg width='100px' height='100px' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='SVGRepo_bgCarrier' stroke-width='0'/%3E%3Cg id='SVGRepo_tracerCarrier' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cg id='SVGRepo_iconCarrier'%3E%3Cpath d='M5 12H19M19 12L13 6M19 12L13 18' stroke='%23fef1a4' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3C/svg%3E");
    background-size: contain;
    position: relative;
    top: 4px;
}
#ecosystem .section-header {
    margin-bottom: 65px;
}
.s-tile {
    height: 100%;
}
.s-tile .tile-header {
    text-align: center;
}
#services .section-header {
    margin-bottom: 100px;
}
.s-tile .tile-inner {
    padding: 45px 74px 40px 74px;
}
.s-tile.tile-blue .tile-bg-gradient:before {
    content: " ";
    display: block;
    width: 1000px;
    height: 1000px;
    position: absolute;
    top: -350px;
    left: -400px;
}
.tile-blue .tile-bg-gradient:after {
    content: " ";
    display: block;
    width: 100%;
    height: 50%;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
    background: rgb(14,20,34);
    background: linear-gradient(0deg, rgba(14,20,34,1) 0%, rgba(14,20,34,0) 100%);
}
.tile-gold .tile-bg-gradient:after {
    content: " ";
    display: block;
    width: 100%;
    height: 50%;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
    background: rgb(20,22,23);
    background: linear-gradient(0deg, rgba(20,22,23,1) 0%, rgba(20,22,23,0) 100%);
}
.tile-purple .tile-bg-gradient:after {
    content: " ";
    display: block;
    width: 100%;
    height: 50%;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
    background: rgb(17,16,29);
    background: linear-gradient(0deg, rgba(17,16,29,1) 0%, rgba(17,16,29,0) 100%);
}
.tile-green .tile-bg-gradient:before {
    content: " ";
    display: block;
    width: 600px;
    height: 600px;
    position: absolute;
    top: -300px;
    left: -210px;
    z-index: 2;
    background: radial-gradient(circle, rgba(36,79,73,1) 0%, rgba(18,214,223,0) 52%, rgba(18,214,223,0) 100%);
}
.tile-green .tile-bg-gradient:after {
    content: " ";
    display: block;
    width: 100%;
    height: 50%;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
    background: rgb(17,23,29);
    background: linear-gradient(0deg, rgba(17,23,29,1) 0%, rgba(253,187,45,0) 100%);
}
.s-tile.tile-green .tile-bg-gradient:before {
    content: " ";
    display: block;
    width: 1000px;
    height: 1000px;
    position: absolute;
    top: -350px;
    left: -400px;
}
.et-tile-wrapper {
    height: 100%;
    position: relative;
}
.et-tile-wrapper:after {
    content: " ";
    display: block;
    width: 241px;
    height: 259px;
    position: absolute;
    bottom: -100px;
    right: -80px;
    z-index: 6;
}
.webpalpha #tile-supply-wrapper:after {
    background: url(/images/tile-supply-decor1.webp) 0 0 no-repeat;
    background-size: contain;
}
.no-webpalpha #tile-supply-wrapper:after {
    background: url(/images/tile-supply-decor1.png) 0 0 no-repeat;
    background-size: contain;
}
.webpalpha #tile-rarityexp-wrapper:after {
    background: url(/images/tile-rarityexp-decor1.webp) 0 0 no-repeat;
    background-size: contain;
}
.no-webpalpha #tile-rarityexp-wrapper:after {
    background: url(/images/tile-rarityexp-decor1.png) 0 0 no-repeat;
    background-size: contain;
}
.tile-button-wrapper {
    text-align: center;
}
.tile-inner > .tile-button-wrapper {
    position: absolute;
    bottom: 35px;
    left: 0;
    z-index: 3;
    width: 100%;
    text-align: center;
}
#tile-supply .tile-inner,
#tile-rarityexp .tile-inner {
    padding-bottom: 100px;
}
#tile-rarityexp-wrapper:before {
    content: " ";
    display: block;
    width: 700px;
    height: 700px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -320px;
    margin-left: -350px;
    background: rgb(32,141,130);
    background: radial-gradient(circle, rgba(32,141,130,1) 0%, rgba(32,141,130,0) 60%, rgba(32,141,130,0) 100%);
    transform: rotate(38deg) skew(-20deg);
    -webkit-transform: rotate(38deg) skew(-20deg);
    -moz-transform: rotate(38deg) skew(-20deg);
    opacity: 0.7;
}
#tile-supply-wrapper:before {
    content: " ";
    display: block;
    width: 700px;
    height: 700px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -320px;
    margin-left: -350px;
    background: rgb(0,102,255);
    background: radial-gradient(circle, rgba(0,102,255,1) 0%, rgba(32,141,130,0) 60%, rgba(32,141,130,0) 100%);
    transform: rotate(38deg) skew(-20deg);
    -webkit-transform: rotate(38deg) skew(-20deg);
    -moz-transform: rotate(38deg) skew(-20deg);
    opacity: 0.7;
}
.catalog-item {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
}
.catalog-item-img,
.catalog-item-description {
    width: 50%;
}
.catalog-tile {
    border-radius: 25px;
    padding: 3px;
    background-image: repeating-radial-gradient(ellipse farthest-corner at right top, rgba(32,198,240,1) 0%, rgba(32,158,228,1) 23%, rgba(32,105,191,1) 38%, rgba(32,73,132,1) 59%, rgba(24,38,58,1) 80%, rgba(17,17,18,1) 100%);
    background-size: auto;
    background-position: 0% 0%;
    background-repeat: repeat;
    background-color: rgba(0,0,0,0);
}
.catalog-tile-inner {
    border-radius: 23px;
    height: 100%;
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 0 35px 35px 35px;
    background: rgb(41,42,47);
    background: linear-gradient(45deg, rgba(41,42,47,1) 0%, rgba(41,42,47,1) 20%, rgba(14,16,24,1) 40%, rgba(14,51,106,1) 100%);
}
.catalog-tile-inner:before {
    content: " ";
    display: block;
    width: 100%;
    height: 80%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    background: rgb(14,16,24);
    background: linear-gradient(0deg, rgba(14,16,24,1) 0%, rgba(14,16,24,0) 100%);
}
#web3ton-slider,
#nixie-slider {
    position: relative;
    z-index: 5;
}
.catalog-item-header {
    font-size: 43px;
    font-weight: 700;
    text-align: left !important;
    line-height: 1.2;
    margin-bottom: 25px;
}
.catalog-item-text {
    font-weight: 400;
    color: #c0c1c2;
    line-height: 1.3;
    width: 515px;
    max-width: 100%;
    min-height: 130px;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.tile-extra {
    border-radius: 20px;
    padding: 2px;
}
.tile-extra-inner {
    border-radius: 19px;
    padding: 22px 15px 22px 24px;
    background-color: #060b15;
    height: 100%;
}
.tex-common {
    color: #31f1fb;
}
.tex-rare {
    color: #df7cff;
}
.tex-mythical {
    color: #ffae00;
}
.tile-extra-inner p {
    font-size: 14px;
    line-height: 1.2;
    margin-bottom: 0;
}
.tile-extra-inner .tile-label {
    font-size: 37px;
    font-weight: 800;
}
.tile-extra-blue {
    background: rgb(45,244,254);
    background: linear-gradient(45deg, rgba(45,244,254,1) 0%, rgba(60,115,202,1) 100%);
}
.tile-extra-gold {
    background: rgb(192,160,100);
    background: linear-gradient(45deg, rgba(192,160,100,1) 0%, rgba(255,241,165,1) 40%, rgba(198,166,98,1) 100%);
}
.tile-extra-purple {
    background: rgb(131,85,217);
    /*background: linear-gradient(45deg, rgba(219,152,245,1) 0%, rgba(86,51,169,1) 100%);*/
    background: linear-gradient(45deg, rgba(86,51,169,1) 0%, rgba(219,152,245,1) 40%, rgba(131,85,217,1) 100%);
}
.tile-extra-green {
    background: rgb(20,183,157);
    /*background: linear-gradient(45deg, rgba(219,152,245,1) 0%, rgba(86,51,169,1) 100%);*/
    background: linear-gradient(45deg, rgba(31,62,55,1) 0%, rgba(50,253,252,1) 40%, rgba(20,115,96,1) 100%);
}
.catalog-item-tile-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.cit-1,
.cit-3 {
    width: 260px;
    position: relative;
    left: -20px;
}
.cit-1,
.cit-2 {
    height: 170px;
    min-height: 170px;
    margin-bottom: 30px;
}
.cit-2,
.cit-4 {
    width: 300px;
}
.cit-3,
.cit-4 {
    height: 66px;
    min-height: 66px;
}
.tile-extra-inner .tile-label {
    text-transform: uppercase;
}
.cit-1 .tile-extra,
.cit-2 .tile-extra,
.cit-3 .tile-extra,
.cit-4 .tile-extra {
    height: 100%;
}
.tile-draw .tile-extra-inner p:first-child {
    margin-bottom: 3px;
}
.tile-draw .tile-extra-inner p:nth-child(2) {
    margin-bottom: 6px;
}
.tile-value .tile-extra-inner p:first-child,
.tile-value .tile-extra-inner p:nth-child(2) {
    margin-bottom: 8px;
}
.tile-value .tile-extra-inner p.tile-label {
    margin-top: -1px;
}
.c-item-price p {
    margin-bottom: 0;
    line-height: 1.2;
}
.cit-4 .btn-info-wrapper a,
.cit-4 .btn-info-wrapper {
    display: block;
    width: 100%;
}
.cit-4 .btn-info-wrapper {
    height: 66px;
    border-radius: 20px;
}
.btn-extra {
    height: 62px;
    border-radius: 19px;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.btn-extra span {
    font-size: 28px;
    font-weight: 700;
    color: #161d2c;
}
.c-item-price-label,
.c-item-price-value {
    text-align: center;
}
.c-item-price-value {
    font-size: 37px;
    font-weight: 800;
}
.c-item-price  .c-item-price-label {
    margin-bottom: 6px;
}
.bx-wrapper {
    box-shadow: none;
    margin: 0;
    padding: 0;
    border: 0;
    background-color: transparent;
}
.pager2,
.pager1 {
    font-size: 0;
}
.custom-pager-item {
    font-size: 0;
    display: inline-block;
    width: 22px;
    height: 22px;
    border-radius: 11px;
    background-color: #757575;
    margin-left: 12px;
}
.custom-pager-item:first-child {
    margin-left: 0;
}
.custom-pager-item.active {
    background: rgb(34,215,248);
    background: linear-gradient(90deg, rgba(34,215,248,1) 0%, rgba(51,250,254,1) 40%, rgba(28,151,225,1) 100%);
}
.owl-prev,
.owl-next,
.custom-next .bx-next,
.custom-prev .bx-prev {
    display: inline-block;
    width: 71px;
    height: 35px;
    font-size: 0;
}
.owl-prev span,
.owl-next span {
    visibility: hidden;
}
.owl-prev,
.custom-prev {
    margin-right: 12px;
}
.owl-next,
.custom-next {
    margin-left: 12px;
}
.webpalpha .owl-prev,
.webpalpha .custom-prev .bx-prev {
    background: url(/images/slider-prev1.webp) 0 0 no-repeat !important;
    background-size: contain !important;
}
.no-webpalpha .owl-prev,
.no-webpalpha .custom-prev .bx-prev {
    background: url(/images/slider-prev1.png) 0 0 no-repeat !important;
    background-size: contain !important;
}
.webpalpha .owl-next,
.webpalpha .custom-next .bx-next {
    background: url(/images/slider-next1.webp) 0 0 no-repeat !important;
    background-size: contain !important;
}
.no-webpalpha .owl-next,
.no-webpalpha .custom-next .bx-next {
    background: url(/images/slider-next1.png) 0 0 no-repeat !important;
    background-size: contain !important;
}
#nixie-slider-controls,
#web3ton-slider-controls {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    width: 600px;
    position: absolute;
    bottom: 0;
    right: 50px;
    z-index: 10;
}
.ncc-item .ncc-item-inner {
    border-top-left-radius: 0;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 0;
}
.ncc-item:first-child .ncc-item-inner {
    border-top-left-radius: 20px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 20px;
}
.ncc-item .ncc-item-inner .ncc-item-btn {
    border-top-left-radius: 0;
    border-top-right-radius: 19px;
    border-bottom-right-radius: 19px;
    border-bottom-left-radius: 0;
}
.ncc-item:first-child .ncc-item-inner .ncc-item-btn {
    border-top-left-radius: 19px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 19px;
}
.ncc-item {
    width: 202px;
    height: 60px;
}
.ncc-item-inner {
    width: 202px;
    height: 60px;
    padding: 2px;
}
.ncc-item-btn {
    height: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    font-weight: 700;
    color: #161d2c;
    text-align: center;
    cursor: pointer;
}
#nft-catalog-controls {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.ncc-item .ncc-item-inner {
    background-image: conic-gradient(from 180deg at center center, rgba(255,255,203,1) 0%, rgba(235,190,116,1) 18%, rgba(233,192,119,1) 20%, rgba(185,150,92,1) 23%, rgba(255,255,247,1) 28%, rgba(255,255,247,1) 65%, rgba(223,199,126,1) 69%, rgba(255,232,146,1) 75%, rgba(255,255,203,1) 83%);
    background-size: auto;
    background-position: 0% 0%;
    background-repeat: repeat;
    background-color: rgba(0,0,0,0);
    box-shadow: 0 0 35px -5px rgba(241, 127, 35, 0.4);
    transition: all 0.2s ease-in-out;
}
.ncc-item .ncc-item-inner:hover {
    box-shadow: 0 0 10px -2px rgba(241, 127, 35, 1);
    -moz-transform: scale(1.02) translate(0px, -1px);
    -webkit-transform: scale(1.02) translate(0px, -1px);
    -o-transform: scale(1.02) translate(0px, -1px);
    -ms-transform: scale(1.02) translate(0px, -1px);
    transform: scale(1.02) translate(0px, -1px);
}
.ncc-item .ncc-item-inner .ncc-item-btn {
    background: rgb(177,139,74);
    background: linear-gradient(90deg, rgba(177,139,74,1) 0%, rgba(255,241,165,1) 50%, rgba(255,241,165,1) 60%, rgba(222,198,125,1) 100%);
}
.ncc-item-btn {
    position: relative;
    overflow: hidden;
}
.ncc-item-btn span {
    position: relative;
    z-index: 2;
}
.ncc-item .ncc-item-inner .ncc-item-btn:before {
    content: "";
    display: block;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.2s ease-in-out;
    z-index: 1;
}
.ncc-item:not(.active) .ncc-item-inner .ncc-item-btn:before {
    background: rgb(222,198,125);
    background: linear-gradient(90deg, rgba(255,241,165,1) 0%, rgba(222,198,125,1) 35%, rgba(222,198,125,1) 55%, rgba(255,241,165,1) 100%);
}
.ncc-item.active .ncc-item-inner .ncc-item-btn:before {
    background: rgb(48,250,254);
    background: linear-gradient(90deg, rgba(48,250,254,1) 0%, rgba(33,220,253,1) 25%, rgba(33,220,253,1) 75%, rgba(48,250,254,1) 100%);
}
.ncc-item .ncc-item-inner .ncc-item-btn:hover:before {
    opacity: 1;
}
.ncc-item.active .ncc-item-inner {
    background-image: conic-gradient(from 180deg at center center, rgba(49,255,255,1) 0%, rgba(36,232,255,1) 18%, rgba(36,232,255,1) 20%, rgba(31,134,179,1) 23%, rgba(71,255,255,1) 28%, rgba(71,255,255,1) 65%, rgba(36,202,253,1) 69%, rgba(36,202,253,1) 75%, rgba(49,255,255,1) 83%);
    background-size: auto;
    background-position: 0% 0%;
    background-repeat: repeat;
    background-color: rgba(0,0,0,0);
    box-shadow: 0 0 35px -5px rgba(35, 118, 241, 0.4);
}
.ncc-item.active .ncc-item-inner:hover {
    box-shadow: 0 0 10px -2px rgba(35, 118, 241, 1);
    -moz-transform: scale(1.02) translate(0px, -1px);
    -webkit-transform: scale(1.02) translate(0px, -1px);
    -o-transform: scale(1.02) translate(0px, -1px);
    -ms-transform: scale(1.02) translate(0px, -1px);
    transform: scale(1.02) translate(0px, -1px);
}
.ncc-item.active .ncc-item-inner .ncc-item-btn {
    background: rgb(33,220,253);
    background: linear-gradient(90deg, rgba(33,220,253,1) 0%, rgba(48,250,254,1) 45%, rgba(48,250,254,1) 65%, rgba(32,186,240,1) 100%);
}
#ncc-web3ton {
    margin-right: 3px;
}
#ncc-nixie {
    margin-left: 3px;
}
#nft-catalog-controls-wrapper {
    padding-bottom: 100px;
    position: relative;
    z-index: 3;
}
#nft-catalog h2 {
    margin-bottom: 25px;
}
.ncc-item.active {
    position: relative;
}
.ncc-item.active:after {
    content: " ";
    display: block;
    width: 25px;
    height: 50px;
    position: absolute;
    bottom: -70px;
    left: 50%;
}
#ncc-web3ton.ncc-item.active:after {
    margin-left: -5px;
}
#ncc-nixie.ncc-item.active:after {
    margin-left: -20px;
}
.webpalpha .ncc-item.active:after {
    background: url(/images/slider-active1.webp) 0 0 no-repeat;
    background-size: contain;
}
.no-webpalpha .ncc-item.active:after {
    background: url(/images/slider-active1.png) 0 0 no-repeat;
    background-size: contain;
}
.card-header {
    background-color: transparent;
    border-radius: 20px !important;
    border: 2px solid #c0c1c2;
}
.btn.btn-link {
    font-size: 23px;
    font-weight: 700;
    color: #c0c1c2;
    width: 100%;
    padding-top: 0;
    padding-bottom: 0;
    min-height: 71px;
}
.btn.btn-link:hover {
    text-decoration: none;
    color: #2de6f9;
}
.btn.btn-link:focus,
.btn.btn-link:active {
    outline: none;
    box-shadow: none;
    text-decoration: none;
}
.card-header {
    padding-top: 0;
    padding-bottom: 0;
}
.card-header h5 {
    text-align: center;
}
.card {
    background-color: transparent;
    background-clip: border-box;
    border: 0;
    border-radius: 0;
    margin-bottom: 24px;
}
.card-body {
    padding: 40px 80px 0 80px;
}
.card-body a {
    color: #24dcff;
    text-decoration: underline;
}
.card-body a:hover,
.card-body a:focus,
.card-body a:active {
    color: #24dcff;
    text-decoration: none;
}
.card-body strong {
    color: #fff1a5;
}
.card-body .h2 {
    font-size: 30px;
    margin-bottom: 15px;
    color: #2de6f9;
}
.card-body p {
    line-height: 1.3;
}
#faq .section-header {
    margin-bottom: 82px;
}
#faq.section {
    padding-bottom: 25px;
}
.toc2 {
    list-style-type: none;
    padding: 0;
    width: 100%;
    margin: 20px 0;
}
#accordion {
    position: relative;
}
#accordion .card {
    position: relative;
    z-index: 3;
}
#accordion:before {
    content: " ";
    display: block;
    width: 900px;
    height: 900px;
    position: absolute;
    top: -100px;
    left: -150px;
    z-index: 1;
    background: rgb(14,39,73);
    background: radial-gradient(circle, rgba(14,39,73,1) 0%, rgba(51,250,254,0) 60%, rgba(51,250,254,0) 100%);
}
#catalog-wrapper {
    position: relative;
    z-index: 2;
}
#catalog-wrapper:before {
    content: " ";
    display: block;
    width: 1260px;
    height: 1260px;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1;
    margin-top: -660px;
    margin-left: -630px;
    background: rgb(0,102,255);
    background: radial-gradient(circle, rgba(0,102,255,1) 0%, rgba(32,141,130,0) 60%, rgba(32,141,130,0) 100%);
    transform: rotate(38deg) skew(-20deg);
    -webkit-transform: rotate(38deg) skew(-20deg);
    -moz-transform: rotate(38deg) skew(-20deg);
    opacity: 0.5;
}
#catalog-wrapper .catalog-container {
    position: relative;
    z-index: 3;
    /*height: 675px;
    overflow: hidden;*/
}
#nft-catalog.section {
    padding-top: 145px;
}
#nft-catalog > .container> .row> .col-12 {
    position: relative;
}
#catalog-decor-1 {
    position: absolute;
    top: -208px;
    left: -170px;
    z-index: 1;
    width: 751px;
    height: 846px;
}
.webpalpha #catalog-decor-1 {
    background: url(/images/catalog-decor-hires-1.webp) 0 0 no-repeat;
    background-size: contain;
}
.no-webpalpha #catalog-decor-1 {
    background: url(/images/catalog-decor-hires-1.png) 0 0 no-repeat;
    background-size: contain;
}
#catalog-decor-2 {
    position: absolute;
    top: -203px;
    right: -70px;
    z-index: 1;
    width: 598px;
    height: 777px;
}
.webpalpha #catalog-decor-2 {
    background: url(/images/catalog-decor-hires-2.webp) 0 0 no-repeat;
    background-size: contain;
}
.no-webpalpha #catalog-decor-2 {
    background: url(/images/catalog-decor-hires-2.png) 0 0 no-repeat;
    background-size: contain;
}
#nft-catalog .section-header {
    position: relative;
    z-index: 3;
}
#nixie-slider .tile-extra-gold .tile-label {
    margin-top: 20px;
}
#nixie-slider .tile-extra-gold .tile-extra-inner p:first-child {
    margin-top: 15px;
}
#web3ton-slider .tile-value .tile-extra-inner p.tile-label {
    margin-top: -2px;
}
#ecosystem-tile-container:before {
    content: " ";
    display: block;
    width: 900px;
    height: 900px;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1;
    margin-top: -450px;
    margin-left: -450px;
    background: rgb(0,102,255);
    background: radial-gradient(circle, rgba(0,102,255,1) 0%, rgba(32,141,130,0) 60%, rgba(32,141,130,0) 100%);
    transform: rotate(38deg) skew(-20deg);
    -webkit-transform: rotate(38deg) skew(-20deg);
    -moz-transform: rotate(38deg) skew(-20deg);
    opacity: 0.25;
}
#scroll-to-top {
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 10;
    width: 56px;
    height: 56px;
    display: none;
    text-align: center;
    justify-content: center;
    align-items: center;
    border-radius: 28px;
    cursor: pointer;
    opacity: 0.6;
    background: #1e1f23;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
#scroll-to-top:after {
    content: " ";
    display: block;
    width: 40px;
    height: 40px;
    position: absolute;
    top: 8px;
    left: 8px;
    background-image: url("data:image/svg+xml,%3C!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3E%3Csvg width='100px' height='100px' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg' transform='rotate(270)' stroke='%232de6f9'%3E%3Cg id='SVGRepo_bgCarrier' stroke-width='0'/%3E%3Cg id='SVGRepo_tracerCarrier' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cg id='SVGRepo_iconCarrier'%3E%3Cpath d='M5 12H19M19 12L13 6M19 12L13 18' stroke='%232de6f9' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3C/svg%3E");
    background-size: contain;
}
#scroll-to-top:hover {
    opacity: 1;
    -moz-transform: scale(1.05) translate(0px, -3px);
    -webkit-transform: scale(1.05) translate(0px, -3px);
    -o-transform: scale(1.05) translate(0px, -3px);
    -ms-transform: scale(1.05) translate(0px, -3px);
    transform: scale(1.05) translate(0px, -3px);
}
.uc-item a,
.uc-item {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
}
.uc-item {
    margin-top: 15px;
}
.uc-item:first-child {
    margin-top: 0;
}
.uc-item a {
    color: #b4b7bc;
    text-decoration: none;
}
.uc-item.uc-disconnect span:hover,
.uc-item a:hover {
    color: #24dcff;
}
.uc-item a:hover,
.uc-item a:focus,
.uc-item a:active {
    text-decoration: none;
}
.uc-item.uc-disconnect span {
    cursor: pointer;
}
.uc-item i {
    display: block;
    width: 36px;
    height: 36px;
    opacity: 0.7;
}
.uc-item span {
    white-space: nowrap;
}
.icon-wallet {
    width: 32px !important;
    height: 32px !important;
    background: url(/images/icon-wallet.png) 0 0 no-repeat;
    background-size: contain;
    margin-right: 10px;
}
.icon-portfolio {
    background-image: url("data:image/svg+xml,%3Csvg fill='%23FFFFFF' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' width='64px' height='64px'%3E%3Cpath d='M 6.5 1 C 5.675781 1 5 1.675781 5 2.5 L 5 3 L 2.5 3 C 1.675781 3 1 3.675781 1 4.5 L 1 12.5 C 1 13.324219 1.675781 14 2.5 14 L 13.5 14 C 14.324219 14 15 13.324219 15 12.5 L 15 4.5 C 15 3.675781 14.324219 3 13.5 3 L 11 3 L 11 2.5 C 11 1.675781 10.324219 1 9.5 1 Z M 6.5 2 L 9.5 2 C 9.78125 2 10 2.21875 10 2.5 L 10 3 L 6 3 L 6 2.5 C 6 2.21875 6.21875 2 6.5 2 Z M 2.5 4 L 13.5 4 C 13.78125 4 14 4.21875 14 4.5 L 14 9 L 2 9 L 2 4.5 C 2 4.21875 2.21875 4 2.5 4 Z M 7 7 L 7 8 L 9 8 L 9 7 Z M 2 10 L 14 10 L 14 12.5 C 14 12.78125 13.78125 13 13.5 13 L 2.5 13 C 2.21875 13 2 12.78125 2 12.5 Z'/%3E%3C/svg%3E");
    background-size: contain;
    background-position: center center;
    margin-right: 6px;
    position: relative;
    left: -2px;
}
.icon-event {
    background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3C!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools --%3E%3Csvg width='64px' height='64px' viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23FFFFFF' d='m512 747.84 228.16 119.936a6.4 6.4 0 0 0 9.28-6.72l-43.52-254.08 184.512-179.904a6.4 6.4 0 0 0-3.52-10.88l-255.104-37.12L517.76 147.904a6.4 6.4 0 0 0-11.52 0L392.192 379.072l-255.104 37.12a6.4 6.4 0 0 0-3.52 10.88L318.08 606.976l-43.584 254.08a6.4 6.4 0 0 0 9.28 6.72L512 747.84zM313.6 924.48a70.4 70.4 0 0 1-102.144-74.24l37.888-220.928L88.96 472.96A70.4 70.4 0 0 1 128 352.896l221.76-32.256 99.2-200.96a70.4 70.4 0 0 1 126.208 0l99.2 200.96 221.824 32.256a70.4 70.4 0 0 1 39.04 120.064L774.72 629.376l37.888 220.928a70.4 70.4 0 0 1-102.144 74.24L512 820.096l-198.4 104.32z'/%3E%3C/svg%3E");
    background-size: contain;
    background-position: center center;
    margin-right: 6px;
    position: relative;
    left: -2px;
}
.icon-logout {
    width: 28px !important;
    height: 28px !important;
    background: url(/images/icon-logout.png) 0 0 no-repeat;
    background-size: contain;
    position: relative;
    left: 4px;
    margin-right: 14px;
}
#tile-rarityexp .btn-success-wrapper,
#tile-supply .btn-info-wrapper {
    min-width: 262px;
}
#tile-rarityexp .btn-success-wrapper .btn,
#tile-supply .btn-info-wrapper .btn {
    width: 100%;
}
.lang-en #web3ton-slider .tile-extra-gold .tile-extra-inner p {
    line-height: 1.1;
    margin-bottom: 5px;
}
.card-header {
    position: relative;
}
.card-header:after {
    content: " ";
    width: 28px;
    height: 28px;
    position: absolute;
    top: 50%;
    right: 26px;
    margin-top: -14px;
    z-index: -1;
    background-image: url("data:image/svg+xml,%3C!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3E%3Csvg width='100px' height='100px' viewBox='0 -4.5 20 20' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' fill='%23c0c1c2'%3E%3Cg id='SVGRepo_bgCarrier' stroke-width='0'/%3E%3Cg id='SVGRepo_tracerCarrier' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cg id='SVGRepo_iconCarrier'%3E%3Ctitle%3Earrow_down %5B%23c0c1c2%5D%3C/title%3E%3Cdesc%3ECreated with Sketch.%3C/desc%3E%3Cdefs%3E%3C/defs%3E%3Cg id='Page-1' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='Dribbble-Light-Preview' transform='translate(-180.000000, -6684.000000)' fill='%23c0c1c2'%3E%3Cg id='icons' transform='translate(56.000000, 160.000000)'%3E%3Cpath d='M144,6525.39 L142.594,6524 L133.987,6532.261 L133.069,6531.38 L133.074,6531.385 L125.427,6524.045 L124,6525.414 C126.113,6527.443 132.014,6533.107 133.987,6535 C135.453,6533.594 134.024,6534.965 144,6525.39' id='arrow_down-%5B%23c0c1c2%5D'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    background-size: contain;
    opacity: 1;
    transition: all 0.3s ease-in-out;
}
.card-header:before {
    content: " ";
    width: 28px;
    height: 28px;
    position: absolute;
    top: 50%;
    right: 26px;
    margin-top: -14px;
    z-index: 1;
    background-image: url("data:image/svg+xml,%3C!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3E%3Csvg width='100px' height='100px' viewBox='0 -4.5 20 20' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' fill='%23161d2c'%3E%3Cg id='SVGRepo_bgCarrier' stroke-width='0'/%3E%3Cg id='SVGRepo_tracerCarrier' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cg id='SVGRepo_iconCarrier'%3E%3Ctitle%3Earrow_down %5B%23c0c1c2%5D%3C/title%3E%3Cdesc%3ECreated with Sketch.%3C/desc%3E%3Cdefs%3E%3C/defs%3E%3Cg id='Page-1' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='Dribbble-Light-Preview' transform='translate(-180.000000, -6684.000000)' fill='%23161d2c'%3E%3Cg id='icons' transform='translate(56.000000, 160.000000)'%3E%3Cpath d='M144,6525.39 L142.594,6524 L133.987,6532.261 L133.069,6531.38 L133.074,6531.385 L125.427,6524.045 L124,6525.414 C126.113,6527.443 132.014,6533.107 133.987,6535 C135.453,6533.594 134.024,6534.965 144,6525.39' id='arrow_down-%5B%23c0c1c2%5D'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    background-size: contain;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}
.card-header:hover:after {
    opacity: 0;
}
.card-header:hover:before {
    opacity: 1;
}
.card-header.plus:before,
.card-header.plus:after {
    transform: rotate(180deg);
}
.btn.btn-link,
.card-header {
    padding-left: 0;
    padding-right: 0;
}
.card-header .btn.btn-link span {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding-left: 70px;
    padding-right: 70px;
}
.htb-2 .btn-warning-wrapper,
.htb-1 .btn-info-wrapper {
    width: 220px;
}
.htb-2 .btn-warning-wrapper .btn,
.htb-1 .btn-info-wrapper .btn {
    width: 100%;
}
#header + .section:not(#hero) {
    padding-top: 100px;
}
.hide {
    display: none;
}
#drop-curtain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(2,14,20,0.75);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 101;
}
#dc-preloader {
    width: 120px;
    height: 120px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -60px;
    margin-left: -60px;
    background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' style='margin: auto; background: none; display: block; shape-rendering: auto;' width='200px' height='200px' viewBox='0 0 100 100' preserveAspectRatio='xMidYMid'%3E%3Cg transform='rotate(0 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='-0.9166666666666666s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3Cg transform='rotate(30 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='-0.8333333333333334s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3Cg transform='rotate(60 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='-0.75s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3Cg transform='rotate(90 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='-0.6666666666666666s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3Cg transform='rotate(120 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='-0.5833333333333334s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3Cg transform='rotate(150 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='-0.5s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3Cg transform='rotate(180 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='-0.4166666666666667s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3Cg transform='rotate(210 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='-0.3333333333333333s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3Cg transform='rotate(240 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='-0.25s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3Cg transform='rotate(270 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='-0.16666666666666666s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3Cg transform='rotate(300 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='-0.08333333333333333s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3Cg transform='rotate(330 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='0s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3C/svg%3E");
    background-size: contain;
}
/* Rarity explorer */
.re-nft-type-list-row {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}
.re-nft-item,
.re-nft-type-list-item {
    width: 20%;
    padding-left: 10px;
    padding-right: 10px;
}
.re-nft-type-list-item {
    position: relative;
}
.re-item-link-cover {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.re-nft-type-list-row {
    margin-bottom: 50px;
}
.re-nft-item {
    margin-bottom: 30px;
    position: relative;
}
.re-nft-item-description {
    display: flex;
    flex-direction: column;
}
.re-list-item-name {
    font-size: 20px;
    font-weight: 800;
    text-align: center;
}
.re-nft-type-list-item .h3 span {
    color: #c0c1c2;
}
.re-nft-type-list-item a:hover,
.re-nft-type-list-item a:focus,
.re-nft-type-list-item a:active {
    text-decoration: none;
}
.re-nft-type-list-item a:hover .h3 span {
    color: #2de6f9;
}
#rarity-explorer-main-wrapper .section-header {
    margin-bottom: 20px;
}
.re-nft-items-list-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}
.re-nft-item,
.re-nft-type-list-item {
    width: 20%;
    padding-left: 10px;
    padding-right: 10px;
}
.re-nft-item,
.re-nft-type-list-item {
    width: 20%;
    padding-left: 10px;
    padding-right: 10px;
}
.re-list-item-name {
    font-size: 20px;
    font-weight: 800;
    text-align: center;
}
.re-nft-type-list-row {
    margin-bottom: 50px;
}
.re-nft-item {
    margin-bottom: 30px;
    position: relative;
}
.re-nft-item-description {
    display: flex;
    flex-direction: column;
}
.ocr-one-row,
.re-nft-item-description p {
    font-size: 14px;
    margin-bottom: 4px;
    line-height: 1.3;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    /*border-bottom: 1px dashed #373f4c;*/
}
.re-nft-item-description p span {
    color: #c5c5c5;
}
.re-nft-item a {
    display: block;
    color: #fff;
}
.section .re-nft-item a {
    text-decoration: none;
}
.re-nft-item a:hover,
.re-nft-item a:focus,
.re-nft-item a:active {
    text-decoration: none;
    color: #fff;
}
.re-nft-item-img {
    margin-bottom: 10px;
    min-height: 231px;
    background: url(/images/rarity-item-placeholder.jpg) 0 0 no-repeat;
    background-size: contain;
}
#re-item-main-description p strong.rcommon,
.re-nft-item-description p strong.rcommon {
    font-weight: 400;
    color: #00d2fd;
    text-transform: capitalize;
}
#br-item-rrank.rcommon {
    color: #00d2fd;
    text-transform: capitalize;
}
#re-item-main-description p strong.rrare,
.re-nft-item-description p strong.rrare {
    font-weight: 400;
    color: #d168ff;
    text-transform: capitalize;
}
#br-item-rrank.rrare {
    color: #d168ff;
    text-transform: capitalize;
}
#re-item-main-description p strong.rmythical,
.re-nft-item-description p strong.rmythical {
    font-weight: 400;
    color: #ffa31a;
    text-transform: capitalize;
}
#br-item-rrank.rmythical {color: #ffa31a;
    text-transform: capitalize;}
#re-item-main-description p strong.rcommon,
#re-item-main-description p strong.rrare,
#re-item-main-description p strong.rmythical {
    font-weight: 800;
    text-transform: capitalize;
}
.re-nft-item-description p span {
    color: #b5b8be;
}
.re-nft-item-description p.rnid-notmintedyet {
    text-align: center;
    justify-content: center;
    font-weight: 400;
    color: #caaeff;
}
.re-nft-item-description p.rnid-link a,
#re-item-main-description p.rimd-link a {
    text-decoration: none;
    display: flex;
    width: 100%;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    position: relative;
    top: 10px;
}
.re-nft-item-description p.rnid-link a {
    top: 1px;
}
.re-nft-item-description p.rnid-link a span,
#re-item-main-description p.rimd-link a span {
    color: #24dcff;
    line-height: 1.1;
    border-bottom: 1px solid #24dcff;
}
.re-nft-item-description p.rnid-link a:hover,
.re-nft-item-description p.rnid-link a:focus,
.re-nft-item-description p.rnid-link a:active,
#re-item-main-description p.rimd-link a:hover,
#re-item-main-description p.rimd-link a:focus,
#re-item-main-description p.rimd-link a:active {
    text-decoration: none;
}
.re-nft-item-description p.rnid-link a:hover span,
.re-nft-item-description p.rnid-link a:focus span,
.re-nft-item-description p.rnid-link a:active span,
#re-item-main-description p.rimd-link a:hover span,
#re-item-main-description p.rimd-link a:focus span,
#re-item-main-description p.rimd-link a:active span {
    border-bottom: 1px solid transparent;
}
.re-nft-item-description p.rnid-link a .icon-external,
#re-item-main-description p.rimd-link a .icon-external {
    display: block;
    width: 25px;
    height: 25px;
    margin-left: 5px;
    position: relative;
    top: -1px;
    background-image: url("data:image/svg+xml,%3Csvg fill='%2324dcff' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 128 128' width='64px' height='64px'%3E%3Cpath d='M 84 11 C 82.3 11 81 12.3 81 14 C 81 15.7 82.3 17 84 17 L 106.80078 17 L 60.400391 63.400391 C 59.200391 64.600391 59.200391 66.499609 60.400391 67.599609 C 61.000391 68.199609 61.8 68.5 62.5 68.5 C 63.2 68.5 63.999609 68.199609 64.599609 67.599609 L 111 21.199219 L 111 44 C 111 45.7 112.3 47 114 47 C 115.7 47 117 45.7 117 44 L 117 14 C 117 12.3 115.7 11 114 11 L 84 11 z M 24 31 C 16.8 31 11 36.8 11 44 L 11 104 C 11 111.2 16.8 117 24 117 L 84 117 C 91.2 117 97 111.2 97 104 L 97 59 C 97 57.3 95.7 56 94 56 C 92.3 56 91 57.3 91 59 L 91 104 C 91 107.9 87.9 111 84 111 L 24 111 C 20.1 111 17 107.9 17 104 L 17 44 C 17 40.1 20.1 37 24 37 L 69 37 C 70.7 37 72 35.7 72 34 C 72 32.3 70.7 31 69 31 L 24 31 z'/%3E%3C/svg%3E");
    background-size: cover;
}
.re-nft-item-description p.rnid-link a .icon-external {
    width: 15px;
    height: 15px;
}
#nft-items-loaded {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.nil-loader {
    content: " ";
    display: block;
    width: 60px;
    height: 60px;
    /*position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -40px;
    margin-left: -40px;*/
    background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' style='margin: auto; background: none; display: block; shape-rendering: auto;' width='200px' height='200px' viewBox='0 0 100 100' preserveAspectRatio='xMidYMid'%3E%3Cg transform='rotate(0 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='-0.9166666666666666s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3Cg transform='rotate(30 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='-0.8333333333333334s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3Cg transform='rotate(60 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='-0.75s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3Cg transform='rotate(90 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='-0.6666666666666666s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3Cg transform='rotate(120 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='-0.5833333333333334s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3Cg transform='rotate(150 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='-0.5s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3Cg transform='rotate(180 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='-0.4166666666666667s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3Cg transform='rotate(210 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='-0.3333333333333333s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3Cg transform='rotate(240 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='-0.25s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3Cg transform='rotate(270 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='-0.16666666666666666s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3Cg transform='rotate(300 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='-0.08333333333333333s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3Cg transform='rotate(330 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='0s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3C/svg%3E");
    background-size: contain;
}
.nil-loader-label {
    margin-top: -6px;
    color: #c5c5c5;
    font-size: 16px;
    line-height: 1.3;
}
.breadcrumbs-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 15px;
}
.section .breadcrumbs-wrapper a {
    color: #c5c5c5;
    font-size: 12px;
    text-decoration: none;
}

.breadcrumbs-wrapper a:hover,
.breadcrumbs-wrapper a:focus,
.breadcrumbs-wrapper a:active {
    color: #ffffff;
    text-decoration: none;
}
.breadcrumbs-wrapper a:hover {
    color: #2de6f9;
}
.breadcrumbs-wrapper strong {
    font-weight: 400;
    color: #ffffff;
    font-size: 12px;
}
.breadcrumbs-wrapper span {
    display: inline-block;
    padding-left: 5px;
    padding-right: 5px;
    position: relative;
    top: -1px;
    color: #686d6f;
    font-size: 17px;
}
.re-sub-header {
    text-align: center;
}
#page-controls {
    position: relative;
    margin-bottom: 40px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
#searchform {
    margin-left: 10px;
    margin-right: 10px;
}
#item-num-container {
    position: relative;
    max-width: 240px;
    background-image: repeating-radial-gradient(ellipse farthest-corner at left top, rgba(50,235,251,1) 0%, rgba(20,121,211,1) 29%, rgba(20,121,211,1) 40%, rgba(20,50,95,1) 60%, rgba(32,36,52,1) 80%, rgba(32,32,32,1) 100%);
    background-size: auto;
    background-position: 0% 0%;
    background-repeat: repeat;
    background-color: rgba(0,0,0,0);
    border-radius: 12px;
    padding: 6px;
    /*box-shadow: 0px 0px 67px 0px rgba(6,82,254,0.4);*/
}
#item-num-container:before {
    content: " ";
    display: block;
    position: absolute;
    top: 2px;
    left: 2px;
    z-index: 1;
    border-radius: 10px;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    background-color: #040c0f;
}
#item-num-container .form-control {
    background: transparent;
    border: 0;
    position: relative;
    z-index: 2;
    color: #ffffff;
    padding-right: 36px;
}
#item-num-submit {
    position: absolute;
    top: 6px;
    right: 6px;
    display: block;
    width: 36px;
    height: 36px;
    z-index: 3;
    cursor: pointer;
}
#item-num-submit:before {
    content: " ";
    display: block;
    width: 18px;
    height: 18px;
    position: absolute;
    top: 9px;
    right: 9px;
    background-image: url("data:image/svg+xml,%3Csvg class='svg-icon' style='width: 1em; height: 1em;vertical-align: middle;fill: %23fff;overflow: hidden;' viewBox='0 0 1024 1024' version='1.1' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M998.06736 877.29763 753.840166 632.729813c-2.788857-2.788857-5.939626-4.939044-8.941372-7.32341 41.087734-63.377297 65.101705-138.97447 65.101705-220.702869 0-223.619459-180.168649-404.703534-403.149439-404.703534-223.321414 0-404.490644 181.062786-404.490644 404.703534 0 223.960083 181.169231 404.980291 404.490644 404.980291 81.238753 0 156.708191-24.162994 219.915177-65.484906 2.277921 3.086902 4.406819 6.109938 7.238254 8.941372l243.631102 244.567817c16.669272 16.626694 38.426611 24.908108 60.205239 24.908108 21.73605 0 43.535967-8.323992 60.18395-24.86553C1031.235593 964.454719 1031.235593 910.572308 998.06736 877.29763M406.85106 682.013805c-152.599418 0-276.756757-124.199917-276.756757-277.288981 0-152.791019 124.157339-276.990936 276.756757-276.990936 152.429106 0 276.011642 124.199917 276.011642 276.990936C682.862703 557.813888 559.280166 682.013805 406.85106 682.013805' /%3E%3C/svg%3E");
    background-size: contain;
    opacity: 0.4;
}
#item-num-submit:hover:before {
    opacity: 1;
}
.form-control:focus {
    border: 0;
    outline: 0 !important;
    box-shadow: none !important;
}
#page-controls .form-group {
    margin-bottom: 0;
}
#sort-block,
#scale-block {
    height: 44px;
    display: inline-flex;
    align-items: center;
}
#scale-block {
    margin-right: 10px;
}
#sort-block strong,
#scale-block strong {
    font-weight: 400;
    color: #c5c5c5;
    display: inline-block;
    margin-right: 15px;
    font-size: 13px;
}
#sort-rarity {
    display: inline-block;
    position: relative;
    z-index: 1;
    height: 100%;
    line-height: 42px;
    padding-left: 15px;
    padding-right: 15px;
    margin-right: 15px;
    border-radius: 12px;
    color: #fff;
    font-weight: 400;
    background-image: repeating-radial-gradient(ellipse farthest-corner at left top, rgba(235,233,175,1) 0%, rgba(153,141,76,1) 28%, rgba(139,128,67,1) 40%, rgba(106,96,56,1) 60%, rgba(62,60,45,1) 80%, rgba(36,36,32,1) 100%);
    background-size: auto;
    background-position: 0% 0%;
    background-repeat: repeat;
    background-color: rgba(0,0,0,0);
}
#sort-item {
    display: inline-block;
    position: relative;
    z-index: 1;
    height: 100%;
    line-height: 42px;
    padding-left: 15px;
    padding-right: 15px;
    margin-right: 15px;
    border-radius: 12px;
    color: #fff;
    font-weight: 400;
    background-image: repeating-radial-gradient(ellipse farthest-corner at left top, rgba(50,253,252,1) 0%, rgba(20,231,217,1) 23%, rgba(20,183,157,1) 38%, rgba(20,115,96,1) 59%, rgba(31,62,55,1) 80%, rgba(31,35,35,1) 100%);
    background-size: auto;
    background-position: 0% 0%;
    background-repeat: repeat;
    background-color: rgba(0,0,0,0);
}
#sort-block span {
    cursor: pointer;
}
#sort-block span:not(.s-active):before {
    content: " ";
    display: block;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    position: absolute;
    top: 2px;
    left: 2px;
    background-color: #03080f;
    border-radius: 10px;
    z-index: -1;
}
#sort-block span:not(.s-active) {
    color: #ffffff !important;
}
#sort-block span:not(.s-active):hover {
    color: #ffffff !important;
}
#sort-block span:not(.s-active):hover:before {
    display: none;
}
.icon-sort {
    display: inline-block;
    width: 18px;
    height: 18px;
    position: relative;
    top: 4px;
    right: -3px;
}
.s-asc {
    background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3C!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3E%3C!-- Creator: CorelDRAW X7 --%3E%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' width='31.6mm' height='28.2mm' version='1.1' style='shape-rendering:geometricPrecision; text-rendering:geometricPrecision; image-rendering:optimizeQuality; fill-rule:evenodd; clip-rule:evenodd'%0AviewBox='0 0 3160 2820' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3Cstyle type='text/css'%3E%3C!%5BCDATA%5B .fil0 %7Bfill:white%7D %5D%5D%3E%3C/style%3E%3C/defs%3E%3Cg id='Слой_x0020_1'%3E%3Cmetadata id='CorelCorpID_0Corel-Layer'/%3E%3Cg id='_2044927310256'%3E%3Cpolygon class='fil0' points='704,2815 358,2465 12,2115 704,2115 704,2115 704,2814 '/%3E%3Crect class='fil0' x='1055' y='15' width='700' height='700'/%3E%3Crect class='fil0' x='1054' y='1065' width='1400' height='700'/%3E%3Crect class='fil0' x='1055' y='2115' width='2100' height='700'/%3E%3Cpolygon class='fil0' points='354,2415 354,15 704,15 704,2815 '/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}
#sort-block span:not(.s-active):hover .s-asc,
.s-active .s-asc {
    background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3C!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3E%3C!-- Creator: CorelDRAW X7 --%3E%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' width='31.6mm' height='28.2mm' version='1.1' style='shape-rendering:geometricPrecision; text-rendering:geometricPrecision; image-rendering:optimizeQuality; fill-rule:evenodd; clip-rule:evenodd'%0AviewBox='0 0 3160 2820' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3Cstyle type='text/css'%3E%3C!%5BCDATA%5B .fil0 %7Bfill:white%7D %5D%5D%3E%3C/style%3E%3C/defs%3E%3Cg id='Слой_x0020_1'%3E%3Cmetadata id='CorelCorpID_0Corel-Layer'/%3E%3Cg id='_2044984703216'%3E%3Cpolygon class='fil0' points='704,2815 358,2465 12,2115 704,2115 704,2115 704,2814 '/%3E%3Crect class='fil0' x='1055' y='15' width='700' height='700'/%3E%3Crect class='fil0' x='1054' y='1065' width='1400' height='700'/%3E%3Crect class='fil0' x='1055' y='2115' width='2100' height='700'/%3E%3Cpolygon class='fil0' points='354,2415 354,15 704,15 704,2815 '/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}
.s-desc {
    background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3C!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3E%3C!-- Creator: CorelDRAW X7 --%3E%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' width='31.6mm' height='28.2mm' version='1.1' style='shape-rendering:geometricPrecision; text-rendering:geometricPrecision; image-rendering:optimizeQuality; fill-rule:evenodd; clip-rule:evenodd'%0AviewBox='0 0 3160 2820' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3Cstyle type='text/css'%3E%3C!%5BCDATA%5B .fil0 %7Bfill:white%7D %5D%5D%3E%3C/style%3E%3C/defs%3E%3Cg id='Слой_x0020_1'%3E%3Cmetadata id='CorelCorpID_0Corel-Layer'/%3E%3Cg id='_2044927335120'%3E%3Crect class='fil0' x='1055' y='2115' width='700' height='700'/%3E%3Crect class='fil0' x='1054' y='1065' width='1400' height='700'/%3E%3Crect class='fil0' x='1055' y='15' width='2100' height='700'/%3E%3Cg%3E%3Cpolygon class='fil0' points='704,2815 358,2465 12,2115 704,2115 704,2115 704,2814 '/%3E%3Cpolygon class='fil0' points='354,2415 354,15 704,15 704,2815 '/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-size: contain;
}
#sort-block span:not(.s-active):hover .s-desc,
.s-active .s-desc {
    background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3C!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3E%3C!-- Creator: CorelDRAW X7 --%3E%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' width='31.6mm' height='28.2mm' version='1.1' style='shape-rendering:geometricPrecision; text-rendering:geometricPrecision; image-rendering:optimizeQuality; fill-rule:evenodd; clip-rule:evenodd'%0AviewBox='0 0 3160 2820' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3Cstyle type='text/css'%3E%3C!%5BCDATA%5B .fil0 %7Bfill:white%7D %5D%5D%3E%3C/style%3E%3C/defs%3E%3Cg id='Слой_x0020_1'%3E%3Cmetadata id='CorelCorpID_0Corel-Layer'/%3E%3Cg id='_2044978819536'%3E%3Crect class='fil0' x='1055' y='2115' width='700' height='700'/%3E%3Crect class='fil0' x='1054' y='1065' width='1400' height='700'/%3E%3Crect class='fil0' x='1055' y='15' width='2100' height='700'/%3E%3Cg%3E%3Cpolygon class='fil0' points='704,2815 358,2465 12,2115 704,2115 704,2115 704,2814 '/%3E%3Cpolygon class='fil0' points='354,2415 354,15 704,15 704,2815 '/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-size: contain;
}
.rs-filter {
    display: inline-block;
    font-weight: 800;
    text-transform: capitalize;
    margin-left: 4px;
    margin-right: 4px;
    line-height: 1.2;
    cursor: pointer;
}
.rs-mythical {
    color: #ffa31a;
    border-bottom: 1px dashed #ffa31a;
}
.rs-mythical:hover {
    text-shadow: 0 0 25px rgba(255, 163, 26, 0.7);
}
.ci-orange-td .rmythical {
    color: #ffa31a;
}
.rs-rare {
    color: #d168ff;
    border-bottom: 1px dashed #d168ff;
}
.rs-rare:hover {
    text-shadow: 0 0 25px rgba(209, 104, 255, 0.7);
}
.ci-orange-td .rrare {
    color: #d168ff;
}
.rs-common {
    color: #00d2fd;
    border-bottom: 1px dashed #00d2fd;
}
.rs-common:hover {
    text-shadow: 0 0 25px rgba(0, 210, 253, 0.7);
}
.ci-orange-td .rcommon {
    color: #00d2fd;
}
.rs-filter:hover,
.rs-filter:focus,
.rs-filter:active {
    border-bottom-color: transparent !important;
}
.rs-filter.rs-active {
    cursor: default !important;
    color: #ffffff !important;
    border-bottom-color: transparent !important;
    font-weight: 700 !important;
}
#mint-filter,
#mint-filter-no,
#sold-filter,
#sold-filter-no,
#airdrop-filter {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
#mint-filter span,
#mint-filter-no span,
#sold-filter span,
#sold-filter-no span,
#airdrop-filter span {
    font-weight: 400;
    color: #c5c5c5;
    display: inline-block;
    margin-right: 10px;
    font-size: 13px;
}
#mint-filter-no i,
#mint-filter i,
#sold-filter i,
#sold-filter-no i,
#airdrop-filter i {
    display: inline-block;
    width: 24px;
    height: 24px;
    position: relative;
    z-index: 1;
    border-radius: 12px;
    background-image: repeating-radial-gradient(ellipse farthest-corner at left top, rgba(195,113,240,1) 0%, rgba(86,52,170,1) 28%, rgba(72,45,139,1) 40%, rgba(46,33,86,1) 60%, rgba(52,42,73,1) 80%, rgba(36,32,36,1) 100%);
    background-size: auto;
    background-position: 0% 0%;
    background-repeat: repeat;
    background-color: rgba(0,0,0,0);
}
#mint-filter i.disabled,
#sold-filter i.disabled {
    background-image: repeating-radial-gradient(ellipse farthest-corner at left top, rgba(227,227,227,1) 0%, rgba(159,159,159,1) 28%, rgba(128,128,128,1) 40%, rgba(72,72,72,1) 60%, rgba(56,56,56,1) 80%, rgba(24,24,24,1) 100%);
}
#mint-filter i:not(.s-active):before,
#mint-filter-no i:not(.s-active):before,
#sold-filter i:not(.s-active):before,
#sold-filter-no i:not(.s-active):before,
#airdrop-filter i:not(.s-active):before {
    content: " ";
    display: block;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    position: absolute;
    top: 2px;
    left: 2px;
    background-color: #03080f;
    border-radius: 10px;
    z-index: -1;
}
#mint-filter i.s-active:before,
#mint-filter-no i.s-active:before,
#sold-filter i.s-active:before,
#sold-filter-no i.s-active:before,
#airdrop-filter i.s-active:before {
    content: " ";
    display: block;
    width: 14px;
    height: 14px;
    position: absolute;
    /*top: -5px;
    left: -4px;*/
    top: 50%;
    left: 50%;
    margin-top: -7px;
    margin-left: -7px;
    /*background-color: #fff;*/
    background-image: repeating-radial-gradient(ellipse farthest-corner at left top, rgba(227,227,227,1) 0%, rgba(219,219,219,1) 28%, rgba(190,190,190,1) 40%, rgba(161,161,161,1) 60%, rgba(150,150,150,1) 80%, rgba(110,110,110,1) 100%);
    /*background: rgb(194,194,194);
    background: linear-gradient(330deg, rgba(194,194,194,1) 0%, rgba(243,243,243,1) 100%);*/
    border-radius: 7px;
    z-index: -1;
    /*background-color: transparent;
    background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3C!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools --%3E%3Csvg width='32px' height='32px' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 13L10 16L17 9' stroke='%23FFFFFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: contain;*/
    box-shadow: 1px 1px 1px 1px rgba(0,0,0,0.75);
}
#checkbox-filter-block {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 15px 10px 0 10px;
}
#checkbox-filter-block-inner {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid #373f4c;
}
#checkbox-filter-block.pb15 {
    padding-bottom: 15px;
}
#checkbox-filter-block-inner > div {
    margin-left: 20px;
}
#checkbox-filter-block-inner > div:first-child {
    margin-left: 0;
}
#clear-filters.hidden {
    display: none;
}
#clear-filters {
    position: absolute;
    bottom: -22px;
    right: 10px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    cursor: pointer;
}
#clear-filters .icon-close {
    width: 24px;
    height: 24px;
}
#clear-filters span {
    font-size: 13px;
    display: inline-block;
    margin-right: 5px;
}
.icon-close {
    display: inline-block;
    width: 30px;
    height: 30px;
    background: url(/images/icon-close.svg) 0 0 no-repeat;
    background-size: contain;
}
#re-item-col-1 {
    padding-right: 40px;
}
#re-item-main-description {
    margin-top: 40px;
    position: relative;
    border-radius: 16px;
    padding: 30px;
    z-index: 1;
    background-image: repeating-radial-gradient(ellipse farthest-corner at left top, rgba(235,233,175,1) 0%, rgba(153,141,76,1) 28%, rgba(139,128,67,1) 40%, rgba(106,96,56,1) 60%, rgba(62,60,45,1) 80%, rgba(36,36,32,1) 100%);
    background-size: auto;
    background-position: 0% 0%;
    background-repeat: repeat;
    background-color: rgba(0,0,0,0);
}
#re-item-main-description:before {
    content: " ";
    display: block;
    position: absolute;
    top: 2px;
    left: 2px;
    z-index: 1;
    border-radius: 16px;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    background-color: #040c0f;
}
#re-item-main-description p {
    position: relative;
    z-index: 2;
    font-size: 22px;
    margin-bottom: 4px;
    margin-top: 4px;
    padding-top: 4px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    /*border-top: 1px dashed #373f4c;*/
}
#re-item-main-description p:first-child {
    border-top: 0;
    margin-top: 0;
    padding-top: 0;
}
#re-item-main-description p:last-child {
    margin-bottom: 0;
}
#re-item-main-description p span {
    font-weight: 400;
    color: #c5c5c5;
}
#re-item-col-2 {
    border-radius: 16px;
    padding: 30px;
    z-index: 1;
    position: relative;
    background-image: repeating-radial-gradient(ellipse farthest-corner at left top, rgba(50,253,252,1) 0%, rgba(20,231,217,1) 23%, rgba(20,183,157,1) 38%, rgba(20,115,96,1) 59%, rgba(31,62,55,1) 80%, rgba(31,35,35,1) 100%);
    background-size: auto;
    background-position: 0% 0%;
    background-repeat: repeat;
    background-color: rgba(0,0,0,0);
}
#re-item-col-2:before {
    content: " ";
    display: block;
    position: absolute;
    top: 2px;
    left: 2px;
    z-index: 1;
    border-radius: 16px;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    background-color: #040c0f;
}
#re-item-col-2 .table {
    position: relative;
    z-index: 3;
    border-top: 0;
    margin-bottom: 0;
}
#re-item-col-2 .table th {
    border-top: 0;
    border-top-color: transparent;
    color: #24e0fd;
}
.re-item-layer-name {
    font-weight: 400;
    color: #b5b8be;
    font-size: 14px;
    line-height: 24px;
}
.re-item-trait-name {
    font-weight: 400;
    color: #b5b8be;
    font-size: 14px;
    line-height: 24px;
}
.tdhm {
    display: none !important;
}
.table td {
    border-top: 1px solid #373f4c;
}
.table thead th {
    border-bottom: 2px solid #373f4c;
}
.table {
    color: #c0c1c2;
}
.re-item-trait-sum-descr {
    text-align: right;
    font-weight: 700;
}
.re-item-trait-sum-val {
    font-weight: 900;
}
#searchform .form-group {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
#searchform .form-group strong {
    font-weight: 400;
    display: inline-block;
    margin-right: 10px;
}
#searchform .form-group strong span {
    font-size: 17px;
    font-weight: 700;
    display: inline-block;
    margin-left: 4px;
}
#page-controls.centered {
    justify-content: center;
}
/* END Rarity explorer */

/* Airdrop History */
.portfolio-description {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}
.portfolio-description .error-icon {
    width: 40px;
    height: 35px;
    background-image: url("data:image/svg+xml,%3C!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3E%3Csvg width='200px' height='200px' viewBox='0 0 15 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='SVGRepo_bgCarrier' stroke-width='0'/%3E%3Cg id='SVGRepo_tracerCarrier' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cg id='SVGRepo_iconCarrier'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M8.4449 0.608765C8.0183 -0.107015 6.9817 -0.107015 6.55509 0.608766L0.161178 11.3368C-0.275824 12.07 0.252503 13 1.10608 13H13.8939C14.7475 13 15.2758 12.07 14.8388 11.3368L8.4449 0.608765ZM7.4141 1.12073C7.45288 1.05566 7.54712 1.05566 7.5859 1.12073L13.9798 11.8488C14.0196 11.9154 13.9715 12 13.8939 12H1.10608C1.02849 12 0.980454 11.9154 1.02018 11.8488L7.4141 1.12073ZM6.8269 4.48611C6.81221 4.10423 7.11783 3.78663 7.5 3.78663C7.88217 3.78663 8.18778 4.10423 8.1731 4.48612L8.01921 8.48701C8.00848 8.766 7.7792 8.98664 7.5 8.98664C7.2208 8.98664 6.99151 8.766 6.98078 8.48701L6.8269 4.48611ZM8.24989 10.476C8.24989 10.8902 7.9141 11.226 7.49989 11.226C7.08567 11.226 6.74989 10.8902 6.74989 10.476C6.74989 10.0618 7.08567 9.72599 7.49989 9.72599C7.9141 9.72599 8.24989 10.0618 8.24989 10.476Z' fill='%23fe1f1c'/%3E%3C/g%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 15px;
}
.portfolio-description .description-text p {
    margin-bottom: 0;
    line-height: 1.2;
    color: #fff1a5;
    font-size: 14px;
}
.portfolio-description .description-text p:first-child {
    margin-bottom: 5px;
}
#airdrop-history-item-img {
    width: 240px;
    text-align: center;
    margin: 20px auto 30px auto;
}
/* END Airdrop History */
/* Marga page */
.marga-rates {
    width: 360px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
    margin-bottom: 30px;
}
.marga-rates p.mr-item {
    font-size: 20px;
    margin-bottom: 4px;
    margin-top: 4px;
    padding-top: 4px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #373f4c;
}
.marga-rates p.mr-item:nth-child(1) {
    border-top: 0;
}
.mr-descr {
    font-size: 14px;
    line-height: 1.3;
    color: #c5c5c5;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 10px;
}
.mr-sign {
    font-size: 12px;
    line-height: 1.3;
    color: #697071;
    text-align: center;
    margin-bottom: -5px;
}
.marga-rates .tile-header {
    margin-bottom: 30px;
    font-size: 40px;
    line-height: 1.3;
}
.marga-logo {
    text-align: center;
    margin-top: 40px;
}
.marga-logo img {
    width: 340px;
    max-width: 100%;
}
/* END Marga page */
.tile-success .tile-extra-inner,
.tile-success,
.tile-warning .tile-extra-inner,
.tile-warning {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}
.tile-success .tile-extra-inner,
.tile-warning .tile-extra-inner {
    width: 100%;
}
.tile-warning .error-icon {
    width: 40px;
    min-width: 40px;
    height: 35px;
    background-image: url("data:image/svg+xml,%3C!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3E%3Csvg width='200px' height='200px' viewBox='0 0 15 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='SVGRepo_bgCarrier' stroke-width='0'/%3E%3Cg id='SVGRepo_tracerCarrier' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cg id='SVGRepo_iconCarrier'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M8.4449 0.608765C8.0183 -0.107015 6.9817 -0.107015 6.55509 0.608766L0.161178 11.3368C-0.275824 12.07 0.252503 13 1.10608 13H13.8939C14.7475 13 15.2758 12.07 14.8388 11.3368L8.4449 0.608765ZM7.4141 1.12073C7.45288 1.05566 7.54712 1.05566 7.5859 1.12073L13.9798 11.8488C14.0196 11.9154 13.9715 12 13.8939 12H1.10608C1.02849 12 0.980454 11.9154 1.02018 11.8488L7.4141 1.12073ZM6.8269 4.48611C6.81221 4.10423 7.11783 3.78663 7.5 3.78663C7.88217 3.78663 8.18778 4.10423 8.1731 4.48612L8.01921 8.48701C8.00848 8.766 7.7792 8.98664 7.5 8.98664C7.2208 8.98664 6.99151 8.766 6.98078 8.48701L6.8269 4.48611ZM8.24989 10.476C8.24989 10.8902 7.9141 11.226 7.49989 11.226C7.08567 11.226 6.74989 10.8902 6.74989 10.476C6.74989 10.0618 7.08567 9.72599 7.49989 9.72599C7.9141 9.72599 8.24989 10.0618 8.24989 10.476Z' fill='%23ffae00'/%3E%3C/g%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 10px;
}
.tile-warning .description-text {
    color: #fff1a5;
    flex-grow: 1;
}
.tile-success .done-icon {
    width: 40px;
    min-width: 40px;
    height: 35px;
    background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg width='200px' height='200px' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='10' stroke='%2340ee97' stroke-width='1.5'/%3E%3Cpath d='M8.5 12.5L10.5 14.5L15.5 9.5' stroke='%2340ee97' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 10px;
}
.tile-success .description-text {
    color: #3cf3b5;
    flex-grow: 1;
}
.list-item-sold-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.list-item-sold {
    display: inline-flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}
.list-item-sold .error-icon {
    width: 30px;
    min-width: 30px;
    height: 30px;
    background-image: url("data:image/svg+xml,%3C!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3E%3Csvg width='200px' height='200px' viewBox='0 0 15 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='SVGRepo_bgCarrier' stroke-width='0'/%3E%3Cg id='SVGRepo_tracerCarrier' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cg id='SVGRepo_iconCarrier'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M8.4449 0.608765C8.0183 -0.107015 6.9817 -0.107015 6.55509 0.608766L0.161178 11.3368C-0.275824 12.07 0.252503 13 1.10608 13H13.8939C14.7475 13 15.2758 12.07 14.8388 11.3368L8.4449 0.608765ZM7.4141 1.12073C7.45288 1.05566 7.54712 1.05566 7.5859 1.12073L13.9798 11.8488C14.0196 11.9154 13.9715 12 13.8939 12H1.10608C1.02849 12 0.980454 11.9154 1.02018 11.8488L7.4141 1.12073ZM6.8269 4.48611C6.81221 4.10423 7.11783 3.78663 7.5 3.78663C7.88217 3.78663 8.18778 4.10423 8.1731 4.48612L8.01921 8.48701C8.00848 8.766 7.7792 8.98664 7.5 8.98664C7.2208 8.98664 6.99151 8.766 6.98078 8.48701L6.8269 4.48611ZM8.24989 10.476C8.24989 10.8902 7.9141 11.226 7.49989 11.226C7.08567 11.226 6.74989 10.8902 6.74989 10.476C6.74989 10.0618 7.08567 9.72599 7.49989 9.72599C7.9141 9.72599 8.24989 10.0618 8.24989 10.476Z' fill='%23ffae00'/%3E%3C/g%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 8px;
}
.section a .list-item-sold-label {
    font-size: 18px;
    color: #fff1a5;
    flex-grow: 1;
}

/* профиль пользователя */
#future-box .section-header,
#tile-deal-wrapper,
#tile-personal-wrapper,
#personal-center .section-header {
    margin-bottom: 30px;
}
#tile-no-deal,
.tile-width,
#tile-pip-wrapper,
#tile-deposits-wrapper,
#tile-future-box-wrapper,
#tile-max-invest,
#tile-deal-controls,
#tile-deal,
#tile-deal-wrapper,
#tile-personal-wrapper + #tile-deal-wrapper + .tile-warning + .tile-warning,
#tile-personal-wrapper + #tile-deal-wrapper  + .tile-warning,
#tile-personal-wrapper + .tile-warning + .tile-warning,
#tile-personal-wrapper + .tile-warning,
#tile-deal-wrapper + .tile-warning,
#tile-personal-wrapper {
    width: 820px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}
#user-info .purchase-wallet {
    margin-top: 0;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px dashed #373f4c;
}
#user-info .purchase-wallet:first-child {
    margin-top: 0;
}
#user-info .purchase-wallet:last-child {
    margin-bottom: 0;
    border-bottom: 0;
    padding-bottom: 0;
}
#user-info .purchase-wallet p:first-child {
    color: #c0c1c2;
}
.purchase-wallet p:nth-child(1) {
    line-height: 1.2;
    font-size: 12px;
    margin-bottom: 6px;
}
.purchase-wallet p:nth-child(2) {
    line-height: 1.2;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 0;
    color: #ffffff;
}
.purchase-wallet p:nth-child(2) span {
    font-size: 16px;
    font-weight: 400;
    color: #697071;
}
#personal-center.section {
    padding-bottom: 0;
}
.pc-local-link {
    color: #24dcff;
}
#personal-center .re-nft-item a,
#personal-center + #rarity-explorer-main-wrapper .re-nft-item a {
    color: #c0c1c2;
}
.modal-content {
    border: 1px solid rgba(70,69,188,0.3 );
    border-radius: 0 !important;
    background-color: #0f1014;
    box-shadow: 0 0 65px 0 rgba(6,82,254,0.4);
}
.modal-content:before {
    content: " ";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}
.modal-header {
    border-bottom: 0;
}
.modal-header,
.modal-body,
.modal-footer {
    position: relative;
    z-index: 1;
}
.icon-close {
    display: inline-block;
    width: 30px;
    height: 30px;
    background: url(/images/icon-close.svg) 0 0 no-repeat;
    background-size: contain;
}
.modal-title {
    font-size: 23px;
    font-weight: 700;
}
.icon-marga-xs {
    display: inline-block;
    width: 19px;
    height: 19px;
    position: relative;
    top: 4px;
    margin-left: 3px;
}
.webpalpha .icon-marga-xs {
    background: url(/marga/marga_xs.webp) 0 0 no-repeat;
    background-size: contain;
}
.no-webpalpha .icon-marga-xs {
    background: url(/marga/marga_xs.png) 0 0 no-repeat;
    background-size: contain;
}
#airdrophistoryLabel {
    width: 100%;
    text-align: center;
}
#airdrophistory .modal-header {
    padding-bottom: 0;
    color: #2de6f9;
}
.adhr-link,
#adhistory-res p {
    margin-left: 40px;
    margin-right: 40px;
}
.adhr-link {
    margin-top: 30px;
    text-align: center;
}
.adhr-link a:focus,
.adhr-link a:active,
.adhr-link a {
    color: #24dcff;
    text-decoration: underline;
}
.adhr-link a:hover {
    color: #24dcff;
    text-decoration: none;
}
.adhr-hdr span {
    color: #ffffff;
}
/* END профиль пользователя */
.modal .close {
    float: none;
    text-shadow: none;
    opacity: .5;
    position: absolute;
    top: 15px;
    right: 15px;
}
.mb-30 {
    margin-bottom: 30px;
}
#sale-closed-img {
    text-align: center;
    margin-bottom: 40px;
}
#sale-closed-img img {
    width: 1000px;
    max-width: 100%;
}
.section a {
    color: #24dcff;
    text-decoration: underline;
}
.section a:hover {
    color: #24dcff;
    text-decoration: none;
}
.section a.btn:hover,
.section a.btn {
    color: #161d2c;
    text-decoration: none;
}
.section a.re-item-link {
    display: block;
}
.section a.re-item-link:hover,
.section a.re-item-link,
.section a.link-custom:hover,
.section a.link-custom {
    text-decoration: none;
}
.section a.buy-item-link {
    text-decoration: none;
}
.re-list-item-price {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.re-list-item-price span {
    font-weight: 400;
    color: #c0c1c2;
    font-size: 14px;
    display: block;
    margin-right: 8px;
}
.re-list-item-price strong {
    font-size: 24px;
    font-weight: 800;
    color: #3bf4ba;
}
#buy-wrapper .tile-warning {
    width: 560px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}
#buy-wrapper .section-header {
    margin-bottom: 20px;
}
#buy-image-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}
#pb-loading-tc,
#fb-pay-wrapper .btn-success-wrapper,
#buy-pay-btn .btn-success-wrapper {
    height: 66px;
    border-radius: 20px;
    display: block;
    width: 300px;
}
#buy-pay-btn {
    position: relative;
}
#pb-loading-tc {
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -150px;
    z-index: 2;
    border-radius: 18px;
    background: rgb(192,160,100);
    background: linear-gradient(45deg, rgba(192,160,100,1) 0%, rgba(255,241,165,1) 40%, rgba(198,166,98,1) 100%);
    padding: 2px;
}
#pb-loading-tc-inner .loading-icon {
    width: 50px;
    min-width: 50px;
    height: 50px;
    background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' style='margin: auto; background: none; display: block; shape-rendering: auto;' width='200px' height='200px' viewBox='0 0 100 100' preserveAspectRatio='xMidYMid'%3E%3Cg transform='rotate(0 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='-0.9166666666666666s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3Cg transform='rotate(30 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='-0.8333333333333334s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3Cg transform='rotate(60 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='-0.75s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3Cg transform='rotate(90 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='-0.6666666666666666s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3Cg transform='rotate(120 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='-0.5833333333333334s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3Cg transform='rotate(150 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='-0.5s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3Cg transform='rotate(180 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='-0.4166666666666667s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3Cg transform='rotate(210 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='-0.3333333333333333s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3Cg transform='rotate(240 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='-0.25s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3Cg transform='rotate(270 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='-0.16666666666666666s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3Cg transform='rotate(300 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='-0.08333333333333333s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3Cg transform='rotate(330 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='0s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    position: relative;
    margin-left: -10px;
}
#pb-loading-tc-inner .description-text {
    font-size: 13px;
    color: #fff1a5;
    line-height: 1.2;
}
#pb-loading-tc-inner {
    width: 100%;
    height: 100%;
    border-radius: 17px;
    background-color: rgb(11, 12, 16);
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    padding: 12px;
}
#fb-pay-wrapper .btn,
#buy-pay-btn .btn {
    width: 100%;
}
.buy-data-block {
    position: relative;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}
#buy-price > span,
#buy-price strong {
    display: block;
}
#buy-price > span {
    margin-right: 7px;
    font-size: 22px;
    font-weight: 400;
    color: #c0c1c2;
}
#buy-price strong {
    margin-left: 7px;
    font-size: 46px;
    font-weight: 800;
    color: #3cf3b5;
}
#acp-preloader,
#acp-preloader2 {
    width: 60px;
    height: 60px;
    background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' style='margin: auto; background: none; display: block; shape-rendering: auto;' width='200px' height='200px' viewBox='0 0 100 100' preserveAspectRatio='xMidYMid'%3E%3Cg transform='rotate(0 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='-0.9166666666666666s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3Cg transform='rotate(30 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='-0.8333333333333334s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3Cg transform='rotate(60 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='-0.75s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3Cg transform='rotate(90 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='-0.6666666666666666s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3Cg transform='rotate(120 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='-0.5833333333333334s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3Cg transform='rotate(150 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='-0.5s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3Cg transform='rotate(180 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='-0.4166666666666667s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3Cg transform='rotate(210 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='-0.3333333333333333s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3Cg transform='rotate(240 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='-0.25s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3Cg transform='rotate(270 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='-0.16666666666666666s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3Cg transform='rotate(300 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='-0.08333333333333333s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3Cg transform='rotate(330 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='0s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3C/svg%3E");
    background-size: contain;
}
#acp-preloader2.checked {
    width: 50px;
    height: 50px;
    margin-right: 15px;
    margin-top: 5px;
    margin-bottom: 5px;
    background-image: url("data:image/svg+xml,%3C!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3E%3Csvg width='200px' height='200px' viewBox='0 0 15 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='SVGRepo_bgCarrier' stroke-width='0'/%3E%3Cg id='SVGRepo_tracerCarrier' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cg id='SVGRepo_iconCarrier'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M7.49991 0.877045C3.84222 0.877045 0.877075 3.84219 0.877075 7.49988C0.877075 11.1575 3.84222 14.1227 7.49991 14.1227C11.1576 14.1227 14.1227 11.1575 14.1227 7.49988C14.1227 3.84219 11.1576 0.877045 7.49991 0.877045ZM1.82708 7.49988C1.82708 4.36686 4.36689 1.82704 7.49991 1.82704C10.6329 1.82704 13.1727 4.36686 13.1727 7.49988C13.1727 10.6329 10.6329 13.1727 7.49991 13.1727C4.36689 13.1727 1.82708 10.6329 1.82708 7.49988ZM10.1589 5.53774C10.3178 5.31191 10.2636 5.00001 10.0378 4.84109C9.81194 4.68217 9.50004 4.73642 9.34112 4.96225L6.51977 8.97154L5.35681 7.78706C5.16334 7.59002 4.84677 7.58711 4.64973 7.78058C4.45268 7.97404 4.44978 8.29061 4.64325 8.48765L6.22658 10.1003C6.33054 10.2062 6.47617 10.2604 6.62407 10.2483C6.77197 10.2363 6.90686 10.1591 6.99226 10.0377L10.1589 5.53774Z' fill='%233cf3b5'/%3E%3C/g%3E%3C/svg%3E");
}
#sending-await,
#transaction-await {
    width: 560px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
    display: none;
}
#transaction-await {
    margin-top: 0;
}
.acp-description2 {
    font-size: 14px;
    color: #ffffff;
    text-align: center;
}
#sending-await .tile-extra-inner,
#transaction-await .tile-extra-inner {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}
#buy-result {
    width: 500px;
    max-width: 100%;
    display: none;
    margin: 0 auto;
}
#buy-result .re-nft-item-description {
    margin: 20px 0 40px 0;
}
#buy-result .re-nft-item-description p {
    font-size: 18px;
}
.brc-item {
    margin-bottom: 15px;
}
.brc-item a {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border-radius: 20px !important;
    border: 2px solid #c0c1c2;
    height: 60px;
    font-size: 22px;
    color: #c0c1c2;
    text-decoration: none;
}
.brc-item a:hover {
    color: #24dcff;
    text-decoration: none;
    border-color: #24dcff;
}
.brc-item.brc-item-blue a {
    color: #161d2c;
    /*background: rgb(33,220,253);
    background: linear-gradient(90deg, rgba(33,220,253,1) 0%, rgba(48,250,254,1) 45%, rgba(48,250,254,1) 65%, rgba(32,186,240,1) 100%);*/
    background: rgb(173,100,233);
    background: linear-gradient(90deg, rgba(107,70,200,1) 0%, rgba(184,108,246,1) 50%, rgba(184,108,246,1) 60%, rgba(173,100,233,1) 100%);
    border-color: transparent;
    font-weight: 700;
}
.brc-item.brc-item-gold a {
    color: #161d2c;
    /*background: rgb(67,234,128);
    background: linear-gradient(90deg, rgba(67,234,128,1) 0%, rgba(56,248,212,1) 25%, rgba(56,248,212,1) 65%, rgba(67,234,128,1) 100%);*/
    background: rgb(177,139,74);
    background: linear-gradient(90deg, rgba(177,139,74,1) 0%, rgba(255,241,165,1) 50%, rgba(255,241,165,1) 60%, rgba(222,198,125,1) 100%);
    border-color: transparent;
    font-weight: 700;
}
.brc-back {
    margin-top: 30px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.section .brc-back a {
    color: #3bf4ba;
    text-decoration: none;
}
.section .brc-back a:hover {
    color: #ffffff;
    text-decoration: none;
}
#sending-await .tile-extra-inner,
#transaction-await .tile-extra-inner {
    padding: 22px 24px;
}
#tonconnect-root-wrapper {
    display: none;
    position: fixed;
    top: 80px;
    right: 0;
    z-index: 101;
}
#tc-widget-root + div {
    position: fixed;
    top: 100px;
    right: 0;
    z-index: 102;
}
.ht-logo img {
    width: 230px;
    max-width: 100%;
}
#comics-slider-container {
    position: relative;
    padding-bottom: 50px;
}
#comics-slider-controls {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
}
#future-box .section-header,
#comics-page .section-header {
    margin-bottom: 15px;
}
#comics-page #personal-orders-wrapper .section-header {
    margin-bottom: 30px;
}
#tile-future-box-wrapper,
.comics-detail {
    margin-top: 30px;
}
#prev-deposite-wrapper,
#prev-orders-wrapper {
    display: none;
    text-align: center;
}
#prev-deposite,
#prev-orders {
    display: inline-block;
    line-height: 1.05;
    color: #24dcff;
    border-bottom: 1px dashed #24dcff;
    cursor: pointer;
    font-size: 18px;
}
#prev-deposite:hover,
#prev-orders:hover {
    border-bottom-color: transparent;
}
.comics-description {
    color: #ffffff;
    margin-bottom: 30px;
}
#order-form-header {
    font-size: 20px;
    font-weight: 800;
    color: #2de6f9;
    margin-bottom: 16px;
}
#future-box-form .form-control,
#order-form .form-control {
    border: 0;
    background-color: #000;
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
}
#future-box-form label,
#order-form label {
    font-size: 14px;
    margin-bottom: 4px;
}
#order-form .form-control.field-error {
    border-color: #ce0000;
}
.form-input-wrapper {
    border-radius: 10px;
    padding: 1px;
    background: rgb(45,244,254);
    background: linear-gradient(45deg, rgba(45,244,254,1) 0%, rgba(60,115,202,1) 100%);
}
.form-input-wrapper.fiw-purple {
    border-radius: 10px;
    padding: 1px;
    background: rgb(131,86,218);
    background: linear-gradient(45deg, rgba(131,86,218,1) 0%, rgba(59,42,113,1) 100%);
}
.form-input-wrapper.disabled {
    background: rgb(192,193,194);
    background: linear-gradient(45deg, rgba(192,193,194,1) 0%, rgba(134,134,134,1) 100%);
}
.form-input-wrapper.field-error {
    background: rgb(236,34,30);
    background: linear-gradient(45deg, rgba(236,34,30,1) 0%, rgba(160,32,16,1) 100%);
}
.fg-pvz-btn-wrapper {
    margin-top: 12px;
    text-align: center;
}
#comics-slider-container .bx-wrapper {
    border-radius: 20px;
    overflow: hidden;
}
#order-form-btn {
    text-align: center;
}
.red {
    color: #ec221e;
}
/*#order-form .form-group:nth-child(3) {
    margin-bottom: 10px;
}*/
#order-form-btn .btn-info-wrapper,
.fg-pvz-btn-wrapper .btn-info-wrapper {
    width: 280px;
}
#order-form-btn .btn-info-wrapper .btn,
.fg-pvz-btn-wrapper .btn-info-wrapper .btn {
    width: 100%;
}
.store-price-wrapper,
#comics-price-wrapper {
    margin-top: 30px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}
.store-price-wrapper > span,
#comics-price-wrapper2 > span,
#comics-price-wrapper > span {
    margin-right: 5px;
    font-size: 20px;
    font-weight: 400;
    color: #c0c1c2;
}
.store-price-wrapper strong,
#comics-price-wrapper2 strong,
#comics-price-wrapper strong {
    margin-left: 5px;
    font-size: 36px;
    font-weight: 800;
    color: #3cf3b5;
}
#cdek-pvz-select .modal-body {
    padding: 0;
}
#cdek-pvz-select .modal-header {
    padding-bottom: 14px;
}
#order-form-header + .tile-extra {
    margin-bottom: 15px;
}
#of-pvz-field-wrapper {
    position: relative;
}
#of-pvz-field-cover {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    width: 100%;
    height: 100%;
}
.ocr-header {
    font-size: 22px;
    font-weight: 800;
    color: #2de6f9;
    margin-bottom: 20px;
}
.ocr-one-row2 {
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.3;
}
.ocr-one-row2 strong {

}
.ocr-one-row2 strong {
    font-size: 16px;
    display: block;
    margin-top: 5px;
    color: #ffffff;
}
#order-comics-result-pay .btn-success-wrapper {
    height: 66px;
    border-radius: 20px;
    display: block;
    width: 300px;
    margin-left: auto;
    margin-right: auto;
}
#order-comics-result-pay .btn {
    width: 100%;
}
#order-comics-result-pay {
    margin-top: 30px;
    text-align: center;
    display: none;
}
#comics-price-wrapper2 {
    /*display: flex;*/
    display: none;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}
.deposit-item-row,
.personal-order-header,
.personal-order-item-inner {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.pip-label,
.poi-label {
    display: none;
}
.poi-item {
    width: 20%;
    padding-left: 7px;
    padding-right: 7px;
    text-align: center;
}
.di-item {
    width: 25%;
    padding-left: 7px;
    padding-right: 7px;
    text-align: center;
}
.di-item:first-child {
    width: 40px;
}
.poi-header {
    color: #2de6f9;
}
.poi-val {
    font-size: 14px;
    color: #ffffff;
}
.deposit-item-row,
.personal-order-item {
    margin-bottom: 25px;
}
#personal-orders-wrapper {
    margin-top: 60px;
    display: none;
}
#order-comics-warning2,
#order-comics-warning,
#order-comics-result-container {
    display: none;
}
#order-comics-warning2 {
    width: 560px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.poi-pay-link {
    font-weight: 400;
    color: #2de6f9;
    border-bottom: 1px dashed #2de6f9;
    cursor: pointer;
    display: inline-block;
    margin-right: 5px;
}
.poi-pay-link.disabled {
    color: #b5b8be;
    border-bottom: 0;
}
.poi-del-link {
    font-weight: 400;
    color: #ec221e;
    border-bottom: 1px dashed #ec221e;
    cursor: pointer;
    display: inline-block;
    margin-left: 5px;
}
.poi-del-link:hover,
.poi-pay-link:hover {
    border-bottom-color: transparent;
}
#order-nftpass-loader,
#order-comics-loader {
    width: 100%;
    height: 66px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
#comic-book-image img {
    width: 360px;
    max-width: 100%;
}
#comic-book-image {
    text-align: right;
}
#comic-book-description {
    height: 100%;
    width: 560px;
    max-width: 100%;
    padding-left: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
#comic-book-description .h1 {
    margin-bottom: 40px;
}
.cbd-text {
    margin-bottom: 30px;
    font-size: 20px;
    line-height: 1.25;
    color: #c0c1c2;
}
#comic-book-description #comics-price-wrapper {
    margin-top: 0;
    justify-content: flex-start;
}
.cb-link {
    margin-top: 40px;
}
.cb-link .btn-info-wrapper {
    width: 200px;
}
.cb-link .btn-info-wrapper .btn {
    width: 100%;
}
.td-hdr {
    font-size: 24px;
    font-weight: 700;
    color: #2de6f9;
    margin-bottom: 25px;
    text-align: center;
}
.td-hdr span {
    font-size: 16px;
    color: #c0c1c2;
}
.td-hdr span strong {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
}
.re-nft-item-description.deal-description-table p {
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px dashed #373f4c;
}
.re-nft-item-description.deal-description-table p strong {
    color: #ffffff;
    font-size: 16px;
}
.td-controls-inner {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-end;
}
.ai-item,
.td-controls-inner .form-group-inline {
    width: 220px;
    margin-left: 20px;
}
.td-controls-inner .form-group-inline {
    width: 50%;
}
.td-controls-inner .form-group {
    width: 100%;
    margin-bottom: 0;
}
.ai-item,
.td-controls-inner .form-group-inline:first-child {
    margin-left: 0;
}
.td-controls-inner .form-control {
    border: 0;
    background-color: #000;
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
}
.td-controls-inner label {
    font-size: 14px;
    margin-bottom: 6px;
}
.td-controls-inner .btn-success-wrapper {
    height: 66px;
    border-radius: 20px;
    display: block;
    width: 220px;
    margin-left: auto;
    margin-right: auto;
}
.td-controls-inner .btn-success-wrapper .btn {
    width: 100%;
}
#already-invested,
#user-deal-result,
#user-deal-controls {
    margin-top: 25px;
}
#countdown-container,
#user-deal-controls {
    min-height: 160px;
}
.urd-header,
.td-controls-header {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}
.td-controls-header {
    padding-left: 22px;
}
.urd-header {
    text-align: center;
}
#deal-pay-btn-wrapper {
    position: relative;
}
#deal-pay-balance-warning {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    border-radius: 18px;
    background: rgb(192,160,100);
    background: linear-gradient(45deg, rgba(192,160,100,1) 0%, rgba(255,241,165,1) 40%, rgba(198,166,98,1) 100%);
    padding: 2px;
    display: none;
}
#deal-pay-balance-warning-inner {
    width: 100%;
    height: 100%;
    border-radius: 17px;
    background-color: rgb(11, 12, 16);
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    padding: 12px;
}
#deal-pay-balance-warning .description-text {
    font-size: 13px;
    color: #fff1a5;
    line-height: 1.2;
}
#deal-pay-balance-warning .error-icon {
    width: 30px;
    min-width: 30px;
    height: 26px;
    background-image: url("data:image/svg+xml,%3C!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3E%3Csvg width='200px' height='200px' viewBox='0 0 15 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='SVGRepo_bgCarrier' stroke-width='0'/%3E%3Cg id='SVGRepo_tracerCarrier' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cg id='SVGRepo_iconCarrier'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M8.4449 0.608765C8.0183 -0.107015 6.9817 -0.107015 6.55509 0.608766L0.161178 11.3368C-0.275824 12.07 0.252503 13 1.10608 13H13.8939C14.7475 13 15.2758 12.07 14.8388 11.3368L8.4449 0.608765ZM7.4141 1.12073C7.45288 1.05566 7.54712 1.05566 7.5859 1.12073L13.9798 11.8488C14.0196 11.9154 13.9715 12 13.8939 12H1.10608C1.02849 12 0.980454 11.9154 1.02018 11.8488L7.4141 1.12073ZM6.8269 4.48611C6.81221 4.10423 7.11783 3.78663 7.5 3.78663C7.88217 3.78663 8.18778 4.10423 8.1731 4.48612L8.01921 8.48701C8.00848 8.766 7.7792 8.98664 7.5 8.98664C7.2208 8.98664 6.99151 8.766 6.98078 8.48701L6.8269 4.48611ZM8.24989 10.476C8.24989 10.8902 7.9141 11.226 7.49989 11.226C7.08567 11.226 6.74989 10.8902 6.74989 10.476C6.74989 10.0618 7.08567 9.72599 7.49989 9.72599C7.9141 9.72599 8.24989 10.0618 8.24989 10.476Z' fill='%23ffae00'/%3E%3C/g%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 10px;
    position: relative;
    top: 2px;
    left: 3px;
}
#deal-pay-loading {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    background-color: rgba(11, 12, 16, 0.9);
    display: none;
}
#deal-pay-loading:before {
    content: " ";
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -30px;
    margin-left: -30px;
    display: block;
    width: 60px;
    height: 60px;
    background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' style='margin: auto; background: none; display: block; shape-rendering: auto;' width='200px' height='200px' viewBox='0 0 100 100' preserveAspectRatio='xMidYMid'%3E%3Cg transform='rotate(0 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='-0.9166666666666666s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3Cg transform='rotate(30 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='-0.8333333333333334s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3Cg transform='rotate(60 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='-0.75s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3Cg transform='rotate(90 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='-0.6666666666666666s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3Cg transform='rotate(120 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='-0.5833333333333334s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3Cg transform='rotate(150 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='-0.5s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3Cg transform='rotate(180 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='-0.4166666666666667s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3Cg transform='rotate(210 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='-0.3333333333333333s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3Cg transform='rotate(240 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='-0.25s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3Cg transform='rotate(270 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='-0.16666666666666666s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3Cg transform='rotate(300 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='-0.08333333333333333s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3Cg transform='rotate(330 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='0s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3C/svg%3E");
    background-size: contain;
}
#user-deal-result {
    display: none;
}

.ai-val,
.ai-header {
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
}
.ai-val {
    text-align: center;
}
.ai-header {
    color: #b5b8be;
}
.ai-row {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px dashed #373f4c;
}
.ai-row:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}
.ai-cell {
    width: 33.33%;
}
.ai-cell.ai-val-total {
    width: 66.66%;
    text-align: center;
}
#tile-deposits-wrapper,
#tile-max-invest,
#tile-deal-controls {
    margin-top: 40px;
}
#create-deal-wrapper,
#tile-deal {
    margin-top: 30px;
}
#tile-max-invest .tile-header,
#tile-deal-controls .tile-header,
#tile-deal .tile-header {
    font-size: 28px;
    text-align: center;
    margin-bottom: 30px;
}
#tile-deal-controls .td-controls-inner,
#tile-deal .td-controls-inner {
    justify-content: center;
    margin-bottom: 20px;
}
.save-deal-button-wrapper {
    text-align: center;
    margin-top: 50px;
}
#tile-deal-controls .td-controls-inner .btn-success-wrapper {
    display: inline-block;
    height: 44px;
    border-radius: 22px;
}
#tile-deal-controls .td-controls-inner {
    width: 100%;
    min-width: 100%;
    align-items: flex-start;
}
#tile-deal-controls .td-controls-inner .form-group-inline {
    width: 33.33%;
    padding-left: 12px;
    padding-right: 12px;
    margin-left: 0;
}
#tile-deal-controls .td-controls-inner .form-group-inline .btn-info-wrapper,
#tile-deal-controls .td-controls-inner .form-group-inline .btn-success-wrapper,
#tile-deal-controls .td-controls-inner .form-group-inline .btn-warning-wrapper {
    display: block;
    width: 100%;
}
#tile-deal-controls .td-controls-inner .form-group-inline .btn-info-wrapper .btn,
#tile-deal-controls .td-controls-inner .form-group-inline .btn-success-wrapper .btn,
#tile-deal-controls .td-controls-inner .form-group-inline .btn-warning-wrapper .btn {
    width: 100%;
}
.tdc-info {
    margin-top: 15px;
    font-size: 12px;
    text-align: center;
    height: 24px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.tdc-info a {
    font-size: 18px;
}
.tdc-info.hidden {
    display: none;
}
#create-deal-wrapper {
    text-align: center;
}
.cb-img-wrapper .h1 {
    display: none;
}
#faq-drop-count,
#faq-drop-amount {
    font-style: normal;
}
#td-hdr-extra {
    display: block;
    margin-top: 5px;
    font-weight: 700;
    font-size: 22px;
    color: #ffffff;
}
#tile-max-invest .td-controls-inner {
    justify-content: center;
}
#tile-max-invest .btn-danger-wrapper {
    position: relative;
    top: 6px;
    width: 100%;
}
#tile-max-invest .btn-danger-wrapper .btn {
    width: 100%;
}
#current-invest-percent-wrapper {
    font-size: 13px;
    text-align: center;
    margin-top: -10px;
    margin-bottom: 15px;
}
#current-invest-percent {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
}
#dtBox {
    display: block !important;
}
.dtpicker-mobile {
    position: static;
}
.dtpicker-cont {
    border: 0;
}
.dtpicker-bg {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}
.dtpicker-components .dtpicker-compButton,
.dtpicker-content {
    background-color: transparent;
}
.dtpicker-close {
    display: none;
}
.dtpicker-header .dtpicker-title {
    font-size: 14px;
    font-weight: 400;
    color: #c0c1c2;
}
.dtpicker-header .dtpicker-value {
    color: #ffffff;
}
.dtpicker-components .dtpicker-comp > * {
    color: #2de6f9;
}
a.dtpicker-compButton {
    text-decoration: none;
}
a.dtpicker-compButton:hover {
    color: #2de6f9;
}
.dtpicker-components .dtpicker-compValue {
    border: 0;
    background-color: #000;
    color: #fff;
    font-size: 18px;
    padding: 0.375rem 0.75rem;
}
.dtpicker-components .dtpicker-comp .dtpicker-compValue {
    height: 48px;
    margin-top: 0;
    margin-bottom: 0;
    border-radius: 10px;
    text-align: center;
    padding-bottom: 16px;
}
.dtpicker-components .dtpicker-comp .dtpicker-compButton:hover,
.dtpicker-components .dtpicker-comp .dtpicker-compValue:hover {
    color: #ffffff;
}
.dtpicker-components .dtpicker-compOutline {
    padding-left: 5px;
    padding-right: 5px;
}
.dtpicker-buttonClear {
    display: none !important;
}
.dtpicker-components .dtpicker-comp .form-input-wrapper {
    height: auto;
}
.dtpicker-components .dtpicker-comp .dtpicker-compButton.increment {
    margin-bottom: 5px;
}
.dtpicker-components .dtpicker-comp .dtpicker-compButton.decrement {
    margin-top: 5px;
}
.dtpicker-twoButtons .dtpicker-buttonSet {
    float: none;
}
.dtpicker-buttonCont.dtpicker-twoButtons {
    text-align: center;
    display: none;
}
.dtpicker-comp .form-input-wrapper {
    position: relative;
}
.dtp-field-label {
    display: block;
    width: 100%;
    position: absolute;
    bottom: 3px;
    left: 0;
    font-size: 11px;
    color: #969696;
    line-height: 1.1;
    text-align: center;
}
#datetime-field-container {
    display: none;
}
#tile-deposits .tile-header,
#tile-future-box .tile-header {
    text-align: center;
}
.dtpicker-header {
    margin: 0;
}
.dtpicker-content {
    padding-bottom: 0;
}
.dtpicker-twoButtons {
    min-height: 50px;
}
.dtpicker-components {
    margin-top: 10px;
    margin-bottom: 10px;
}
.dtpicker-buttonCont {
    overflow: inherit;
}
#future-box-form .form-group {
    width: 300px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}
#fb-pay-wrapper {
    margin-top: 40px;
}
#future-box-form .form-group {
    text-align: center;
}
#future-box-form .form-group label {
    margin-bottom:10px;
}
#fb-amount {
    text-align: center;
}
#future-box-form .btn-info-wrapper {
    width: 300px;
}
#future-box-form .btn-info-wrapper .btn {
    width: 100%;
}
#btn-xx {
    display: none;
}
#fb-amount-wrapper {
    position: relative;
}
#fb-amount-warning,
#fb-deadline-warning {
    position: absolute;
    bottom: -109px;
    left: 0;
    display: none;
    z-index: 2;
}
#fb-amount-warning .tile-extra-inner,
#fb-deadline-warning .tile-extra-inner {
    padding-top: 15px;
    padding-bottom: 15px;
}
.deposit-item-row.deposit-item-header {
    margin-bottom: 0;
}
.di-item:not(.dih-item) {
    color: #ffffff;
}
.dih-item {
    color: #2de6f9;
}
#tile-deposits .tile-header {
    margin-bottom: 40px;
}
#deposit-footer-inner,
#deposites-header,
.deposit-item-row-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.deposit-item-row:not(.deposit-item-header) {
    display: inline-flex;
    margin-top: 10px;
    margin-bottom: 0;
    padding-top: 10px;
    border-top: 1px dashed #373f4c;
}
.deposit-item-row-container:first-child .deposit-item-row {
    border-top: 2px solid #373f4c;
}
.di-item {
    min-width: 186px;
}
.di-item:first-child {
    min-width: 50px;
}
#deposites-container {
    margin-bottom: 30px;
}
.di-label {
    display: none;
}
#deposit-footer-inner {
    width: 608px;
    max-width: 100%;
    border-top: 2px solid #373f4c;
    margin-top: -20px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 10px;
}
#deposit-footer-inner strong {
    padding-left: 10px;
    color: #ffffff;
}
.dtpicker-compButton.increment {
    font-size: 0;
    text-indent: -1000px;
    background-image: url("data:image/svg+xml,%3C!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3E%3Csvg width='200px' height='200px' viewBox='0 0 48 48' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='SVGRepo_bgCarrier' stroke-width='0'/%3E%3Cg id='SVGRepo_tracerCarrier' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cg id='SVGRepo_iconCarrier'%3E%3Crect width='48' height='48' fill='white' fill-opacity='0.01'/%3E%3Cpath d='M13 30L25 18L37 30' stroke='%23fff1a5' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.dtpicker-compButton.decrement {
    font-size: 0;
    text-indent: -1000px;
    background-image: url("data:image/svg+xml,%3C!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3E%3Csvg width='200px' height='200px' viewBox='0 0 48 48' fill='none' xmlns='http://www.w3.org/2000/svg' transform='rotate(180)'%3E%3Cg id='SVGRepo_bgCarrier' stroke-width='0'/%3E%3Cg id='SVGRepo_tracerCarrier' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cg id='SVGRepo_iconCarrier'%3E%3Crect width='48' height='48' fill='white' fill-opacity='0.01'/%3E%3Cpath d='M13 30L25 18L37 30' stroke='%23fff1a5' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
#infowidjet {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.personal-order-item {
    margin-bottom: 0;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed #373f4c;
}
.personal-order-item:nth-child(2) {
    border-top: 2px solid #373f4c;
}
#personal-orders-container {
    margin-bottom: 30px;
}
.nf-404-logo img {
    width: 230px;
    max-width: 100%;
}
.nf-404-logo {
    margin-top: 50px;
}
.nf-404-container > div {
    width: 560px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    line-height: 1.2;
}
.nf-404-description h1 {
    text-align: center;
    font-size: 32px;
}
.nf-404-code {
    font-size: 190px;
    font-weight: 800;
    line-height: 1 !important;
    color: #636363;
}
#debug-tool {
    background-color: #505050;
    width: 100%;
    height: 36px;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 100;
}
#debug-tool.red {
    background-color: #b7100c;
}
#debug-tool.green {
    background-color: #049c0b;
}
#pay-btn-clicked {
    background-color: #b7100c;
    width: 100%;
    height: 80px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 18;
    display: none;
}
#test-res {
    font-weight: 400;
    font-size: 16px;
    color: #ffffff;
    text-align: center;
}
#test-res.green {
    color: #049c0b;
}
#test-res.red {
    color: #b7100c;
}
#debug-tool-inner,
#pay-btn-clicked-inner {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
#pay-btn-clicked-inner span {
    font-weight: 700;
    font-size: 18px;
    color: #ffffff;
}
#debug-tool-inner span {
    font-weight: 400;
    font-size: 12px;
    color: #ffffff;
    text-shadow: 1px 1px 0px rgba(0,0,0,0.75);
    line-height: 1.2;
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: center;
}
#user-icon.hidden {
    display: none;
}
#buy-item-result-description {
    margin-top: 40px;
    margin-bottom: 40px;
}
#pip-header,
.purchase-in-progress-item {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.pip-header,
.pip-item {
    width: 25%;
    padding-left: 7px;
    padding-right: 7px;
    text-align: center;
    font-size: 14px;
}
.pip-header {
    color: #fff1a5;
}
.pip-item {
    color: #ffffff;
}
.purchase-in-progress-item {
    margin-bottom: 0;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed #373f4c;
}
.purchase-in-progress-item:first-child {
    border-top: 2px solid #373f4c;
}
#last-purchase-wrapper,
#tile-pip-wrapper {
    position: relative;
}
#last-purchase-wrapper {
    margin-bottom: 20px;
}
#last-purchase-wrapper.loading {
    width: 100%;
    min-height: 84px;
}
#last-purchase-wrapper.loading:before,
#tile-pip-wrapper.loading:before {
    content: " ";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(11, 12, 16, 0.8);
    z-index: 5;
}
#last-purchase-wrapper.loading:after,
#tile-pip-wrapper.loading:after {
    content: " ";
    display: block;
    width: 80px;
    height: 80px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -40px;
    margin-left: -40px;
    background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' style='margin: auto; background: none; display: block; shape-rendering: auto;' width='200px' height='200px' viewBox='0 0 100 100' preserveAspectRatio='xMidYMid'%3E%3Cg transform='rotate(0 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='-0.9166666666666666s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3Cg transform='rotate(30 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='-0.8333333333333334s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3Cg transform='rotate(60 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='-0.75s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3Cg transform='rotate(90 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='-0.6666666666666666s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3Cg transform='rotate(120 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='-0.5833333333333334s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3Cg transform='rotate(150 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='-0.5s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3Cg transform='rotate(180 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='-0.4166666666666667s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3Cg transform='rotate(210 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='-0.3333333333333333s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3Cg transform='rotate(240 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='-0.25s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3Cg transform='rotate(270 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='-0.16666666666666666s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3Cg transform='rotate(300 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='-0.08333333333333333s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3Cg transform='rotate(330 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='0s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3C/svg%3E");
    background-size: contain;
    z-index: 6;
}
#personal-refresh-wrapper {
    text-align: center;
    margin-top: 30px;
}
.re-nft-item-img.ios-fix {
    position: relative;
}
.re-nft-item-img.ios-fix .nft-item-img-link-fix {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
#buy-pay-btn2 {
    margin-top: 40px;
}
.pay-test {
    height: 66px;
    width: 300px;
    border-radius: 19px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    border: 1px solid #c0c1c2;
    cursor: pointer;
}
#pay-test.hidden {
    display: none !important;
}
.test-blocks-wrapper {
    width: 300px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
}
.test-blocks-item {
    text-align: center;
    margin-bottom: 40px;
}
#test-block-1 {
    width: 100%;
    height: 66px;
    font-size: 28px;
    font-weight: 700;
}
#test-block-5,
#test-block-4,
#test-block-3,
#test-block-2 {
    font-size: 28px;
    font-weight: 700;
}
#test-block-1.tst-done {
    background-color: #39f7cf;
}
.test-blocks-item.tst-done {
    background-color: #39f7cf;
}
.test-blocks-item.tst-done a {
    color: #161d2c;
}
.test-main-pay .btn-success-wrapper {
    height: 66px;
    border-radius: 20px;
    display: block;
    width: 200px;
}
#pay-test-main {
    width: 196px;
}

.test-main-pay {
    margin-top: 40px;
}
#pip-body-cover {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(11, 12, 16, 0.9);
    z-index: 6;
    border-radius: 25px;
}
#pip-body-cover-inner {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 100%;
}
#pip-body-cover-inner .icon-loading {
    display: inline-block;
    width: 60px;
    height: 60px;
    background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' style='margin: auto; background: none; display: block; shape-rendering: auto;' width='200px' height='200px' viewBox='0 0 100 100' preserveAspectRatio='xMidYMid'%3E%3Cg transform='rotate(0 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='-0.9166666666666666s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3Cg transform='rotate(30 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='-0.8333333333333334s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3Cg transform='rotate(60 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='-0.75s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3Cg transform='rotate(90 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='-0.6666666666666666s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3Cg transform='rotate(120 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='-0.5833333333333334s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3Cg transform='rotate(150 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='-0.5s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3Cg transform='rotate(180 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='-0.4166666666666667s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3Cg transform='rotate(210 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='-0.3333333333333333s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3Cg transform='rotate(240 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='-0.25s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3Cg transform='rotate(270 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='-0.16666666666666666s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3Cg transform='rotate(300 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='-0.08333333333333333s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3Cg transform='rotate(330 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='0s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3C/svg%3E");
    background-size: contain;
}
#pip-body-cover-inner span {
    font-size: 18px;
    color: #ffffff;
}
.icon-invest {
    background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3C!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools --%3E%3Csvg width='64px' height='64px' viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23FFFFFF' d='m512 747.84 228.16 119.936a6.4 6.4 0 0 0 9.28-6.72l-43.52-254.08 184.512-179.904a6.4 6.4 0 0 0-3.52-10.88l-255.104-37.12L517.76 147.904a6.4 6.4 0 0 0-11.52 0L392.192 379.072l-255.104 37.12a6.4 6.4 0 0 0-3.52 10.88L318.08 606.976l-43.584 254.08a6.4 6.4 0 0 0 9.28 6.72L512 747.84zM313.6 924.48a70.4 70.4 0 0 1-102.144-74.24l37.888-220.928L88.96 472.96A70.4 70.4 0 0 1 128 352.896l221.76-32.256 99.2-200.96a70.4 70.4 0 0 1 126.208 0l99.2 200.96 221.824 32.256a70.4 70.4 0 0 1 39.04 120.064L774.72 629.376l37.888 220.928a70.4 70.4 0 0 1-102.144 74.24L512 820.096l-198.4 104.32z'/%3E%3C/svg%3E");
    background-size: contain;
    background-position: center center;
    margin-right: 6px;
    position: relative;
    left: -2px;
}
#tc-self {
    cursor: pointer;
}
.re-nft-type-list-item > a:hover + a.buy-item-link > p.re-list-item-name > span,
.re-nft-type-list-item > a:hover + a.re-item-link > p > span {
    color: #2de6f9;
}
#buy-item-result-description.tile-warning .description-text {
    flex-grow: unset;
}
#tile-no-deal {
    margin-bottom: 40px;
}
#user-deal-container {
    position: relative;
}
/* таймер обратного отсчета */
#tp-cdown,
#cdown {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    width: 410px;
    margin-left: auto;
    margin-right: auto;
}
.countdown-time {
    font-size: 60px;
    color: #fff;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 70px;
    text-align: center;
    font-weight: 700;
}
.countdown-time-wrapper {
    width: 100px;
    height: 70px;
}
.countdown-number {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}
.countdown-number strong {
    font-size: 15px;
    font-weight: 800;
    color: #feedaf;
    text-align: center;
    text-transform: uppercase;
}
.countdown-separator {
    display: none;
}
.countdown-time-wrapper span {
    color: #feedaf;
}
#countdown-container .td-hdr {
    margin-bottom: 10px;
    color: #ffffff;
}
#countdown-container {
    width: 100%;
    min-height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
    border-radius: 20px;
    background-image: repeating-linear-gradient(-45deg, rgb(0, 0, 0), rgb(0, 0, 0) 25px, rgb(29, 31, 38) 25px, rgb(29, 31, 38) 50px);
    -webkit-animation:progress 2s linear infinite;
    -moz-animation:progress 2s linear infinite;
    -ms-animation:progress 2s linear infinite;
    animation:progress 2s linear infinite;
    background-size: 150% 100%;
}
#countdown-container-inner {
    padding: 15px;
}
@-webkit-keyframes progress{
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: -75px 0px;
    }
}
@-moz-keyframes progress{
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: -75px 0px;
    }
}
@-ms-keyframes progress{
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: -75px 0px;
    }
}
@keyframes progress{
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: -70px 0px;
    }
}
/* END таймер обратного отсчета */
#ecosystem-img img {
    max-width: 585px;
}
#hero-img img {
    max-width: 632px;
}
.faq-text-separator {
    margin-top: 30px;
    margin-bottom: 30px;
    width: 100%;
    height: 1px;
    border-top: 2px solid #373f4c;
}
#comics-slider-dots .owl-dot,
#nixie-slider-dots .owl-dot,
#web3ton-slider-dots .owl-dot {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 0;
    display: inline-block;
    width: 22px;
    height: 22px;
    border-radius: 11px;
    background-color: #757575;
    margin-left: 12px;
}
#comics-slider-dots .owl-dot:first-child,
#nixie-slider-dots .owl-dot:first-child,
#web3ton-slider-dots .owl-dot:first-child {
    margin-left: 0;
}
#comics-slider-dots .owl-dot.active,
#nixie-slider-dots .owl-dot.active,
#web3ton-slider-dots .owl-dot.active {
    background: rgb(34,215,248);
    background: linear-gradient(90deg, rgba(34,215,248,1) 0%, rgba(51,250,254,1) 40%, rgba(28,151,225,1) 100%);
}
#comics-slider-dots {
    position: relative;
    top: 5px;
}
#buy-wrapper #buy-soldout-cover .tile-warning {
    display: inline-flex;
    width: auto;
    margin-top: 30px;
    margin-bottom: 30px;
}
#buy-soldout-cover {
    text-align: center;
}
#buy-wrapper #buy-soldout-cover .tile-warning p {
    font-size: 18px;
}
#buy-wrapper #buy-soldout-cover .tile-warning .tile-extra-inner {
    padding-right: 24px;
}
#wsc-prev,
#wsc-next,
#nsc-prev,
#nsc-next {
    display: none;
}
.owl-nav {
    width: 600px;
    position: absolute;
    bottom: 0;
    right: 50px;
    height: 35px;
    z-index: 12;
}
.owl-nav .owl-prev {
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -162px;
}
.owl-nav .owl-next {
    position: absolute;
    top: 0;
    right: 50%;
    margin-right: -162px;
}
#nixie-slider-controls,
#web3ton-slider-controls {
    width: 158px;
    bottom: 6px;
    right: 272px;
}
.owl-next,
.owl-prev {
    transition: all 0.2s ease-in-out;
}
.owl-prev:hover {
    -moz-transform: scale(1.01) translate(-3px, 0px);
    -webkit-transform: scale(1.01) translate(-3px, 0px);
    -o-transform: scale(1.01) translate(-3px, 0px);
    -ms-transform: scale(1.01) translate(-3px, 0px);
    transform: scale(1.01) translate(-3px, 0px);
}
.owl-next:hover {
    -moz-transform: scale(1.01) translate(3px, 0px);
    -webkit-transform: scale(1.01) translate(3px, 0px);
    -o-transform: scale(1.01) translate(3px, 0px);
    -ms-transform: scale(1.01) translate(3px, 0px);
    transform: scale(1.01) translate(3px, 0px);
}
/*#tile-supply-wrapper:after {
    transition: all 0.3s ease-in-out;
}
#tile-supply-wrapper:hover:after {
    -moz-transform: translate(-5px, 0px);
    -webkit-transform: translate(-5px, 0px);
    -o-transform: translate(-5px, 0px);
    -ms-transform: translate(-5px, 0px);
    transform: translate(-5px, 0px);
}*/
#accordion .card-header {
    background-color: transparent;
    transition: all 0.3s ease-in-out;
}
#accordion .card-header .btn.btn-link {
    transition: all 0.3s ease-in-out;
}
#accordion .card-header:hover {
    background-color: #24dcff;
    border-color: transparent;
}
#accordion .card-header:hover .btn.btn-link {
    color: #161d2c;
}
#comic-book-image img {
    transition: all 0.3s ease-in-out;
}
#comic-book-image img:hover {
    -moz-transform: scale(1.03);
    -webkit-transform: scale(1.03);
    -o-transform: scale(1.03);
    -ms-transform: scale(1.03);
    transform: scale(1.03);
}
.social-item,
.social-item .social-item-text,
.social-item .social-icon-wrapper {
    transition: all 0.3s ease-in-out;
}
.social-item:hover .social-item-text {
    color: #24dcff;
    text-shadow: 0 0 10px rgba(36, 220, 255, 0.8);
}
/* Новый год
#header-logo-link img {
	position:relative;
	top: -5px;
}
END Новый год */

.store-separator {
    margin-top: 40px;
    margin-bottom: 40px;
    height: 1px;
    border-top: 1px dashed #373f4c;
}
.store-item-wrapper img {
    max-width: 100%;
    width: 300px;
    margin: 0 auto;
}
.store-item-wrapper .h1 {
    font-size: 22px;
    text-align: center;
    margin-bottom: 20px;
}
.store-list-wrapper {
    margin-top: 50px;
    margin-bottom: 50px;
}
.store-item-wrapper .h1 + span {
    text-align: center;
    display: inline-block;
    width: 100%;
}
.store-price-wrapper {
    margin-top: 20px;
}
.store-item-wrapper .cb-link {
    margin-top: 20px;
    text-align: center;
}
.re-nft-item-description p strong {
	color: #c0c1c2;
}
.lp-scan-wrapper {
    position: relative;
    min-height: 144px;
    margin-bottom: 30px;
}
#last-purchase-header.hidden,
#last-purchase-wrapper.hidden {
    display: none;
}
#lp-scan-loader {
    display: block;
    height: 144px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.lp-scan-loader-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 820px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    border-radius: 19px;
    padding: 10px 20px 24px 20px;
    background-color: rgba(11, 12, 16, 0.9);
    border: 3px solid #606060;
}
.lp-scan-loader-icon {
    display: inline-block;
    width: 80px;
    height: 80px;
    background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' style='margin: auto; background: none; display: block; shape-rendering: auto;' width='200px' height='200px' viewBox='0 0 100 100' preserveAspectRatio='xMidYMid'%3E%3Cg transform='rotate(0 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='-0.9166666666666666s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3Cg transform='rotate(30 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='-0.8333333333333334s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3Cg transform='rotate(60 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='-0.75s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3Cg transform='rotate(90 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='-0.6666666666666666s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3Cg transform='rotate(120 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='-0.5833333333333334s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3Cg transform='rotate(150 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='-0.5s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3Cg transform='rotate(180 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='-0.4166666666666667s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3Cg transform='rotate(210 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='-0.3333333333333333s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3Cg transform='rotate(240 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='-0.25s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3Cg transform='rotate(270 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='-0.16666666666666666s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3Cg transform='rotate(300 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='-0.08333333333333333s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3Cg transform='rotate(330 50 50)'%3E%3Crect x='49' y='24' rx='0' ry='0' width='2' height='12' fill='%23ffffff'%3E%3Canimate attributeName='opacity' values='1;0' keyTimes='0;1' dur='1s' begin='0s' repeatCount='indefinite'%3E%3C/animate%3E%3C/rect%3E%3C/g%3E%3C/svg%3E");
    background-size: contain;
}
.lp-scan-loader-container span {
    text-align: center;
}
#event-description {
    margin-top: 30px;
}
.np-separator-ue,
.np-separator {
    height: 1px;
    margin-top: 40px;
    margin-bottom: 30px;
    border-top: 2px solid #373f4c;
}
.np-separator-ue {
    width: 1020px;
    max-width: 100%;
    margin: 0 auto;
}
#nft-pass-buy-price {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}
#nft-pass-buy-price > span {
    margin-right: 5px;
    font-size: 20px;
    font-weight: 400;
    color: #c0c1c2;
}
#nft-pass-buy-price strong {
    margin-left: 5px;
    font-size: 36px;
    font-weight: 800;
    color: #3cf3b5;
}
#nftpass-pay-btn-wrapper {
    margin-top: 30px;
    text-align: center;
    display: none;
}
#nftpass-pay-btn-wrapper.btn-success-wrapper {
    height: 66px;
    border-radius: 20px;
    width: 300px;
}
#nftpass-pay-btn-wrapper .btn {
    width: 100%;
}
#order-nftpass-warning {
    width: 405px;
    max-width: 100%;
    margin-top: 30px;
    display: none;
}
.npi-image-horizontal {
    width: 400px;
    max-width: 100%;
}
.fotorama__wrap {
    margin-left: auto;
    margin-right: auto;
}
#event-description + .np-separator {
    margin-bottom: -30px;
}
.ed-cover-wrapper {
    text-align: center;
    margin-top: 30px;
}
#owner-nft-pass-section .section-header-center {
    text-align: center;
    margin-bottom: 30px;
}
#owned-nft-pass {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}
.onp-item img {
    max-width: 100%;
}
.onp-item {
    padding-bottom: 20px;
}
#owner-nft-pass-section .np-separator-ue {
    position: relative;
    top: 25px;
}
#owner-nft-pass-section.section {
    padding-bottom: 25px;
    display: none;
}
#order-nftpass-loader {
    justify-content: flex-start;
}
.read-more {
    margin-bottom: 0;
    margin-top: 20px;
    text-align: center;
}
#nftpass-buy-result-wrapper {
    display: none;
}
#soldout-nftpass-warning {
    width: 290px;
    margin: 0 auto;
}
.store-item-wrapper {
    margin-bottom: 50px;
}
.comics-description {
    font-size: 15px;
    line-height: 1.4;
}

/* %%% */












@media (min-width: 1600px){
    #header .container {
        max-width: 1568px;
    }
}
@media (min-width: 1400px){
    .container {
        max-width: 1306px;
    }
}



@media (max-width: 1599px) {
    #header .container {
        max-width: 100%;
    }
}
@media (max-width: 1499px) {
    .hero-text-wrapper {
        left: 0;
        padding-right: 15px;
    }
    #hero-img {
        left: 0;
    }
    #hero h1 {
        padding-right: 40px;
    }
    #header-logo {
        width: 256px;
        min-width: 256px;
    }
}
@media (max-width: 1399px) {
    .container {
        max-width: 100%;
    }
    #header-logo {
        width: 129px;
        min-width: 129px;
        justify-content: flex-end;
    }
    .hero-text-wrapper {
        padding-left: 50px;
    }

}
@media (max-width: 1299px) {
    #ecosystem-decor-container {
        display: none;
    }
    #ecosystem-tile-container {
        width: 1000px;
        min-width: 1000px;
        max-width: 100%;
        padding-left: 15px;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-img-wrapper {
        order: 1;
        width: 456px;
        max-width: 456px;
        min-width: 456px;
        height: 660px;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-text-wrapper {
        order: 2;
        width: 100%;
        min-width: 100%;
    }
    .hero-text-wrapper {
        padding-left: 15px;
        padding-top: 50px;
        padding-bottom: 0;
    }
    .hero-text-wrapper > div {
        width: 600px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    .ht-logo {
        left: 0;
    }
    .ht-logo img {
        margin-left: 0;
    }
    .ht-description-2,
    .ht-description-1,
    #hero h1 {
        padding-right: 0;
        text-align: center;
    }
    .ht-buttons-wrapper > div {
        width: 50%;
    }
}
@media (min-width: 1200px) and (max-width: 1299px) {
    .catalog-item-img {
        width: 500px;
    }
    .catalog-item-description {
        width: calc(100% - 500px);
    }
    .catalog-tile {
        height: 100%;
    }
    .catalog-item-wrapper {
        height: 634px;
        padding-top: 25px;
    }
    .catalog-item-description > p,
    .catalog-item-description > div {
        width: 577px;
        margin-left: auto;
        margin-right: auto;
    }
    /*#nixie-slider-controls,
    #web3ton-slider-controls {
        width: calc(100% - 500px);
        bottom: 0;
    }*/

}
@media (min-width: 1200px) and (max-width: 1399px) {

}
@media (min-width: 1200px) and (max-width: 1299px) {
    .nav-link {
        font-size: 16px;
    }
}
@media (max-width: 1199px) {
    /* анимация кнопки меню */
    .animated-icon1, .animated-icon2, .animated-icon3 {
        width: 30px;
        height: 20px;
        position: relative;
        margin: 0px;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: .5s ease-in-out;
        -moz-transition: .5s ease-in-out;
        -o-transition: .5s ease-in-out;
        transition: .5s ease-in-out;
        cursor: pointer;
    }

    .animated-icon1 span, .animated-icon2 span, .animated-icon3 span {
        display: block;
        position: absolute;
        height: 3px;
        width: 100%;
        border-radius: 9px;
        opacity: 1;
        left: 0;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: .25s ease-in-out;
        -moz-transition: .25s ease-in-out;
        -o-transition: .25s ease-in-out;
        transition: .25s ease-in-out;
    }
    .animated-icon1 span {
        background: #ffffff;
    }
    .animated-icon2 span {
        background: #e3f2fd;
    }
    .animated-icon3 span {
        background: #f3e5f5;
    }
    .animated-icon1 span:nth-child(1) {
        top: 0px;
    }
    .animated-icon1 span:nth-child(2) {
        top: 10px;
    }
    .animated-icon1 span:nth-child(3) {
        top: 20px;
    }
    .animated-icon1.open span:nth-child(1) {
        top: 11px;
        -webkit-transform: rotate(135deg);
        -moz-transform: rotate(135deg);
        -o-transform: rotate(135deg);
        transform: rotate(135deg);
    }
    .animated-icon1.open span:nth-child(2) {
        opacity: 0;
        right: -60px;
    }
    .animated-icon1.open span:nth-child(3) {
        top: 11px;
        -webkit-transform: rotate(-135deg);
        -moz-transform: rotate(-135deg);
        -o-transform: rotate(-135deg);
        transform: rotate(-135deg);
    }
    .navbar-toggler.first-button:hover,
    .navbar-toggler.first-button:focus,
    .navbar-toggler.first-button:active {
        outline: none !important;
    }
    /* END анимация кнопки меню */
    #mobile-menu-toggler {
        display: block;
        margin-top: -3px;
    }
    .catalog-item {
        flex-direction: column;
    }
    .catalog-item-img {
        width: 400px;
        max-width: 400px;
        position: relative;
        left: 30px;
    }
    .catalog-item-description {
        width: 100%;
    }
    .catalog-item-description .h2 {
        text-align: center !important;
        margin-top: 30px;
    }
    .catalog-item-text {
        width: 515px;
        margin-left: auto;
        margin-right: auto;
    }
    #catalog-wrapper .catalog-container {
        height: 1055px;
    }
    .catalog-item-tile-wrapper {
        width: 600px;
        margin-left: auto;
        margin-right: auto;
        justify-content: center;
    }
    .catalog-tile-inner {
        padding-bottom: 85px;
    }
    #nixie-slider-controls, #web3ton-slider-controls {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
        width: 158px;
        position: absolute;
        bottom: -58px;
        right: 50%;
        margin-right: -79px;
    }
    .cit-1, .cit-3 {
        left: 0;
        margin-right: 20px;
    }
    .et-tile-wrapper {
        max-width: 624px;
        margin-left: auto;
        margin-right: auto;
    }
    #ecosystem-tile-wrapper > .row > .col-12:first-child {
        margin-bottom: 60px;
    }
    #catalog-decor-1 {
        top: -64px;
        left: -70px;
        width: 500px;
        height: 563px;
    }
    #catalog-decor-2 {
        top: -60px;
        right: -40px;
        width: 398px;
        height: 517px;
    }
    #header-menu {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: rgba(11, 12, 16, 0.9);
    }
    #main-nav {
        flex-direction: column;
        margin-bottom: 15px;
    }
    #main-nav .nav-item {
        width: 100%;
    }
    #main-nav .nav-item .nav-link {
        text-align: right;
    }
    #buy-btn-wrapper .btn {
        white-space: nowrap;
    }
    #header-controls {
        width: 410px;
        min-width: 410px;
        margin-right: 40px;
    }
    #header-logo {
        width: auto;
        min-width: auto;
        justify-content: flex-start;
        flex-grow: 1;
        padding-left: 40px;
    }
    #header .container .row {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    #header-menu {
        padding-right: 60px;
    }
    #mobile-menu-toggler {
        padding-left: 0;
        padding-right: 0;
        margin-left: 25px;
    }
    #auth-wrapper {
        margin-left: 30px;
    }
    #nft-catalog.section {
        padding-top: 80px;
    }
    .card-body {
        padding: 40px 40px 0 40px;
    }
    /* Rarity explorer */
    .re-nft-item,
    .re-nft-type-list-item {
        width: 25%;
    }
    #re-item-col-1 {
        padding-right: 15px;
    }
    #re-item-main-description {
        margin-top: 15px;
    }
    .re-list-item-name {
        font-size: 16px;
    }
    /* END Rarity explorer */
    .ht-header h1 br {
        display: none;
    }
    #comics-slider-wrapper,
    #comics-controls-wrapper,
    #order-wrapper {
        width: 560px;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    #comics-slider-wrapper,
    #comics-controls-wrapper {
        margin-bottom: 50px;
    }
    #order-comics-warning {
        width: 420px;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    #comics-price-wrapper2 {
        display: flex;
    }
    #comic-book-description {
        padding-left: 20px;
    }
    .owl-nav {
        width: 600px;
        position: absolute;
        bottom: -64px;
        right: 50%;
        margin-right: -300px;
        height: 35px;
        z-index: 12;
    }
}
/* END 1199 */

@media (max-width: 1099px) {
    #checkbox-filter-block-inner {
        flex-wrap: wrap;
        justify-content: center;
        padding-top: 10px;
        padding-bottom: 10px;
    }
    #checkbox-filter-block-inner > div > span {
        white-space: nowrap;
    }
    #checkbox-filter-block-inner > div:first-child,
    #checkbox-filter-block-inner > div {
        margin-left: 10px;
        margin-right: 10px;
        padding-top: 5px;
        padding-bottom: 5px;
    }
}
@media (max-width: 1015px) {
    #ecosystem-tile-container {
        width: 100%;
        min-width: 100%;
        max-width: 100%;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .catalog-item-description .h2 {
        margin-bottom: 0;
    }
    #nft-catalog.section {
        padding-bottom: 15px;
    }
    /* Rarity explorer */
    .list-page #item-num-container {
        max-width: 160px;
    }
    .list-page #sort-block strong,
    .list-page #scale-block strong {
        font-size: 12px;
        margin-right: 10px;
    }
    .list-page #airdrop-filter span {
        font-size: 12px;
    }

    .lang-ru .list-page #sort-block strong,
    .lang-ru .list-page #scale-block strong {
        font-size: 11px;
    }
    .lang-ru .list-page #airdrop-filter span {
        font-size: 11px;
    }

    .list-page #sort-rarity,
    .list-page #sort-item {
        font-size: 14px;
    }
    .list-page #sort-rarity {
        margin-right: 6px;
    }
    .list-page .rs-filter {
        font-size: 14px;
    }
    /* END Rarity explorer */
}
@media (max-width: 991px) {
    .hero-img-wrapper {
        order: 1;
        width:303px;
        max-width: 303px;
        min-width: 303px;
        height: 463px;
        margin-left: auto;
        margin-right: auto;
    }
    #hero-img {
        width: 421px;
        height: 493px;
    }
    #hero-img img {
        max-width: 100%;
    }
    .htb-2 .btn-warning-wrapper,
    .htb-1 .btn-info-wrapper {
        min-width: 214px;
    }
    .htb-2 .btn-warning-wrapper .btn,
    .htb-1 .btn-info-wrapper .btn {
        width: 100%;
        text-align: center;
    }
    #catalog-decor-1 {
        top: 10px;
        left: -90px;
        width: 376px;
        height: 423px;
    }
    #catalog-decor-2 {
        top: 14px;
        right: -45px;
        width: 299px;
        height: 389px;
    }
    #hero:before {
        left: 50%;
        margin-top: -500px;
        margin-left: -500px;
    }
    #footer > .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    .powered-wrapper {
        font-size: 16px;
        padding-left: 15px;
    }
    .ton-symbol {
        display: inline-block;
        width: 40px;
        height: 40px;
        position: relative;
        top: 16px;
        margin-left: 5px;
        margin-right: 5px;
    }
    /* Rarity explorer */
    .re-nft-item,
    .re-nft-type-list-item {
        width: 33.33%;
    }
    #page-controls {
        flex-direction: column;
    }
    #searchform {
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 20px;
    }
    #sort-item {
        margin-right: 0;
    }
    #item-num-container {
        max-width: 302px;
        width: 302px;
    }
    #sort-block {
        margin-bottom: 5px;
    }
    #clear-filters {
        bottom: -34px;
        right: 50%;
        margin-right: -57px;
    }
    .re-sup-header {
        font-size: 32px;
    }
    #re-item-image .img-fluid {
        max-width: 460px;
    }
    #re-item-image {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        margin-bottom: 30px;
    }
    #re-item-main-description {
        width: 460px;
        margin: 0 auto 30px auto;
    }
    #re-item-col-2 {
        max-width: 460px;
        margin-left: auto;
        margin-right: auto;
    }
    #re-item-col-2 .table thead {
        display: none;
    }
    #re-item-col-2 .table tbody tr {
        display: flex;
        flex-direction: column;
        border-top: 2px solid #373f4c;
        padding-top: 15px;
        padding-bottom: 15px;
    }
    #re-item-col-2 .table tbody tr td {
        border-top: 1px solid #373f4c;
    }
    #re-item-col-2 .table tbody tr td.re-item-trait-sum-val {
        border-top: 0;
        font-size: 24px;
        padding-top: 0;
    }
    #re-item-col-2 .table tbody tr td:first-child {
        border-top: 0;
    }
    #re-item-col-2 .table tbody tr:first-child {
        border-top: 0;
        padding-top: 0;
    }
    #re-item-col-2 .table tbody tr:last-child {
        padding-bottom: 0;
    }
    .re-item-trait-percent span.tdhm,
    .tdhm {
        display: block !important;
        line-height: 1.1;
        font-size: 11px;
        color: #2de6f9;
    }
    .re-item-trait-sum-descr {
        text-align: left;
    }
    .re-nft-type-list-item {
        width: 33.33%;
        margin-bottom: 25px;
    }
    .re-nft-type-list-row {
        justify-content: center;
        flex-wrap: wrap;
    }
    .re-list-item-name {
        font-size: 20px;
    }
    .ci-green-end th,
    .ci-green-end td {
        height: 82px;
    }
    #compare-items-table.cols1 {
        min-width: 420px;
    }
    #compare-items-table.cols2 {
        min-width: 630px;
    }
    #compare-items-table.cols3 {
        min-width: 840px;
    }
    #compare-items-table.cols4 {
        min-width: 990px;
    }
    #page-controls {
        margin-bottom: 50px;
    }
    .item-page #page-controls {
        margin-bottom: 10px;
    }
    /* END Rarity explorer */
    .personal-order-header {
        display: none;
    }
    .personal-order-item-inner {
        flex-direction: column;
    }
    .poi-item {
        width: 560px;
        max-width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        margin-bottom: 4px;
    }
    .poi-label {
        display: inline-block;
        text-align: left;
    }
    .poi-val {
        font-size: 16px;
        text-align: right;
    }
    #comic-book-image {
        text-align: center;
    }
    #comic-book-description {
        padding-left: 0;
        margin-left: auto;
        margin-right: auto;
    }
    .cb-link,
    .cbd-text,
    #comic-book-description .h1 {
        text-align: center;
    }
    .cb-img-wrapper {
        margin-bottom: 40px;
    }
    #comic-book-description #comics-price-wrapper {
        justify-content: center;
    }
    #comic-book.section {
        padding-bottom: 100px;
    }
    .cb-img-wrapper .h1 {
        display: block;
        margin-bottom: 40px;
        text-align: center;
    }
    #comic-book-description .h1 {
        display: none;
    }
    #nftpass-pay-btn-wrapper.btn-success-wrapper {
        margin-left: auto;
        margin-right: auto;
    }
    #nftpass-buy-result,
    #order-nftpass-warning {
        margin-left: auto;
        margin-right: auto;
    }
}
/* END 991 */
@media (max-width: 849px) {
    #ecosystem-tile-container {
        display: flex;
        flex-direction: column;
    }
    .e-tile-wrapper {
        width: 500px;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    #faq.section {
        padding-bottom: 50px;
    }
}

@media (max-width: 767px) {
    .hero-text-wrapper > div {
        width: 100%;
        max-width: 100%;
    }
    .ht-buttons-wrapper {
        display: flex;
        flex-direction: column;
    }
    .ht-buttons-wrapper > div {
        width: 100%;
    }
    .htb-2 {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 15px;
    }
    .htb-2 .btn-warning-wrapper, .htb-1 .btn-info-wrapper {
        width: 280px;
        max-width: 280px;
        min-width: 280px;
    }
    .hero-text-wrapper {
        padding-left: 50px;
        padding-right: 50px;
    }
    .social-wrapper {
        order: 1;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        margin-bottom: 10px;
    }
    .powered-wrapper {
        order: 2;
        text-align: center;
    }
    #footer {
        height: 200px;
    }
    #main-wrapper {
        padding-bottom: 200px;
    }
    .social-item:first-child {
        margin-left: 0;
        margin-right: 7px;
    }
    .social-item {
        margin-left: 7px;
    }
    .powered-wrapper {
        font-size: 14px;
    }
    .powered-wrapper strong {
        display: inline-block;
        /*width: 126px;*/
        white-space: nowrap;
    }
    .powered-wrapper strong:first-child {
        text-align: right;
    }
    .mobile-lang-swither {
        display: list-item;
    }
    #desktop-lang-swither {
        display: none;
    }
    #catalog-decor-1,
    #catalog-decor-2 {
        display: none;
    }
    #catalog-wrapper:before {
        top: 0;
        margin-top: -430px;
    }
    .catalog-item-tile-wrapper {
        width: 300px;
    }
    .cit-1,
    .cit-3 {
        width: 300px;
        margin-right: 0;
    }
    .catalog-item-header {
        font-size: 32px;
        margin-top: 25px;
        margin-bottom: 15px;
    }
    .catalog-item-text {
        font-size: 14px;
        min-height: 100px;
        margin-bottom: 10px;
        text-align: center;
    }
    #catalog-wrapper .catalog-container {
        height: 1272px;
    }
    .cit-3,
    .cit-1,
    .cit-2 {
        margin-bottom: 20px;
    }
    #nft-catalog-controls-wrapper {
        padding-bottom: 90px;
    }
    .et-tile-wrapper:after {
        width: 160px;
        height: 172px;
        bottom: -80px;
        right: -60px;
    }
    #nft-catalog.section {
        padding-top: 60px;
    }
    #faq.section {
        padding-bottom: 10px;
    }
    .mobile-lang-swither .lang-switcher .icon-lang {
        margin-right: -1px;
        margin-left: 3px;
    }
    .catalog-item-text {
        min-height: 110px;
    }
    /* Rarity explorer */
    .re-nft-item,
    .re-nft-type-list-item {
        width: 50%;
    }
    /* END Rarity explorer */
    .purchase-wallet-value, .plc-t-hash {
        word-break: break-all;
    }
    .store-item-wrapper {
        margin-top: 50px;
    }
    .store-item-wrapper:first-child {
        margin-top: 0;
    }
    .store-item-wrapper .h1 {
        font-size: 26px;
    }
    .store-item-wrapper {
        margin-bottom: 0;
    }
}
/* END 767 */
@media (max-width: 635px) {
    #header-logo {
        padding-left: 15px;
        flex-grow: 0;
    }
    #header-controls {
        width: auto;
        min-width: auto;
        margin-right: 0;
        flex-grow: 1;
    }
    #mobile-menu-toggler {
        margin-right: 15px;
    }
}
@media (max-width: 593px) {
    .item-page #searchform .form-group {
        flex-direction: column;
    }
    .item-page #searchform .form-group strong {
        margin-right: 0;
        margin-bottom: 10px;
    }
}
@media (max-width: 575.98px) {
    #mobile-menu-toggler {
        margin-right: 0;
    }
    #header-logo {
        padding-left: 0;
    }
    #auth-wrapper,
    #mobile-menu-toggler {
        margin-left: 15px;
    }
    #header-controls-inner .btn {
        font-size: 18px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .hero-img-wrapper {
        width: 260px;
        max-width: 260px;
        min-width: 260px;
        height: 390px;
    }
    #hero-img {
        width: 360px;
        height: 422px;
    }
    .ht-header h1 {
        font-size: 30px;
    }
    .e-tile-wrapper {
        width: 100%;
    }
    #faq .section-header {
        margin-bottom: 42px;
    }
    #services .section-header {
        margin-bottom: 40px;
    }
    #ecosystem .section-header {
        margin-bottom: 21px;
    }
    .section:not(#hero) {
        padding-top: 35px;
        padding-bottom: 35px;
    }
    #personal-center.section {
        padding-bottom: 0 !important;
    }
    .btn.btn-link {
        font-size: 20px;
        line-height: 1.3;
    }
    #nixie-slider .cit-2 {
        height: 125px;
        min-height: 125px;
    }
    #nixie-slider .tile-extra-gold .tile-label {
        margin-top: 0px;
    }
    #nixie-slider .tile-extra-gold .tile-extra-inner p:first-child {
        margin-top: 0;
    }
    .s-tile .tile-inner {
        padding: 40px 35px 100px 35px;
    }
    #tile-supply-wrapper,
    #tile-rarityexp-wrapper {
        padding-left: 10px;
        padding-right: 10px;
    }
    #nft-catalog {
        position: relative;
        z-index: 2;
    }
    #services {
        position: relative;
        z-index: 3;
    }
    #ecosystem-tile-wrapper > .row > .col-12:first-child {
        margin-bottom: 50px;
    }
    #header-menu {
        padding-right: 33px;
    }
    .ncc-item,
    .ncc-item-inner {
        width: 160px;
    }
    .ncc-item-btn {
        font-size: 22px;
    }
    .card-body {
        padding: 40px 20px 0 20px;
    }
    .catalog-item-img {
        left: 20px;
    }
    #tile-supply-wrapper:before,
    #tile-rarityexp-wrapper:before {
        margin-top: -350px;
        margin-left: -350px;
        transform: none;
    }
    .card-header .btn.btn-link span {
        padding-left: 60px;
        padding-right: 60px;
    }
    .btn.btn-link {
        font-size: 18px;
        line-height: 1.2;
    }
    #user-controls-wrapper {
        padding-top: 0;
        left: auto;
        right: 0;
        top: 80px;
        margin-left: 0;
        width: 100%;
    }
    #user-controls-container {
        padding-right: 30px;
        padding-top: 8px;
        border-radius: 0;
    }
    .uc-item a,
    .uc-item {
        flex-direction: row-reverse;
    }
    .uc-item i {
        margin-right: 0;
        margin-left: 10px;
    }
    .icon-portfolio {
        left: 2px;
    }
    .icon-logout {
        left: 1px;
    }
    .uc-item i.icon-portfolio {
        margin-left: 7px;
    }
    .uc-item i.icon-logout {
        margin-left: 14px;
    }
    #hero {
        padding-bottom: 35px;
    }
    .catalog-item-text {
        min-height: 128px;
    }
    #catalog-wrapper .catalog-container {
        height: 1250px;
    }
    .catalog-item-img {
        width: 364px;
        max-width: 364px;
        left: 15px;
    }
    #nixie-slider .cit-2, #nixie-slider .cit-3 {
        margin-bottom: 30px;
    }
    /* Rarity explorer */
    .re-nft-item,
    .re-nft-type-list-item {
        width: 320px;
    }
    .re-nft-items-list-row {
        justify-content: center;
    }
    .re-sup-header {
        font-size: 28px;
    }
    #re-item-image .img-fluid {
        max-width: 100%;
    }
    #re-item-main-description {
        width: 100%;
    }
    #re-item-col-2 {
        width: calc(100% - 30px);
        max-width: calc(100% - 30px);
    }
    .re-nft-item-img {
        min-height: 300px;
    }
    /* END Rarity explorer */
    #adhistory-res p span {
        position: relative;
        top: 2px;
    }
    #buy-image-container video {
        width: 100% !important;
        height: auto !important;
    }
    #acp-preloader2 {
        margin-right: 10px;
        min-width: 60px;
        margin-left: -10px;
    }
    #acp-preloader2.checked {
        min-width: 50px;
    }
    .acp-description2 {
        text-align: left;
        display: inline;
        width: min-content;
    }
    #comics-price-wrapper2 {
        display: flex;
    }
    .ocr-one-row2 strong,
    .ocr-one-row2 span,
    .poi-label,
    .poi-val {
        font-size: 14px;
        font-weight: 400;
        display: inline-block;
        line-height: 1.2;
    }
    .ocr-one-row2 span {
        text-align: left;
    }
    .ocr-one-row2 strong {
        text-align: right;
        margin-top: 0;
    }
    .ocr-one-row2 span,
    .poi-label {
        white-space: nowrap;
        padding-right: 15px;
    }
    .poi-item {
        margin-bottom: 10px;
    }
    .personal-order-item {
        margin-top: 15px;
        padding-top: 20px;
    }
    #comics-slider-wrapper, #comics-controls-wrapper {
        margin-bottom: 35px;
    }
    .ocr-header,
    #order-form-header {
        text-align: center;
    }
    .ocr-one-row2 {
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }
    #faq.section {
        padding-bottom: 15px !important;
    }
    .cbd-text {
        font-size: 18px;
    }
    .td-description .re-nft-item-description p {
        flex-direction: column;
    }
    .td-description .re-nft-item-description p span {
        display: inline-block;
        margin-bottom: 3px;
        font-size: 12px;
    }
    .td-description .re-nft-item-description.deal-description-table p {
        margin-bottom: 12px;
        padding-bottom: 12px;
    }
    .td-hdr,
    .td-controls-header {
        text-align: center;
    }
    .td-controls-inner {
        flex-direction: column;
        align-items: center;
    }
    .td-controls-inner .form-group,
    .td-controls-inner .form-group-inline {
        margin-left: 0;
        margin-bottom: 15px;
    }
    #deal-pay-btn-wrapper {
        margin-bottom: 0 !important;
        margin-top: 15px;
    }
    #already-invested .description-text {
        flex-direction: column;
    }
    .ai-item {
        width: 100%;
        margin-top: 10px;
        text-align: center;
    }
    .ai-item:first-child {
        margin-top: 0;
    }
    .ai-row {
        flex-wrap: wrap;
    }
    .ai-cell {
        width: 50%;
    }
    .ai-cell.ai-header {
        width: 100%;
        margin-bottom: 6px;
        font-size: 13px;
        text-align: center;
    }
    .ai-cell.ai-val-total {
        width: 100%;
    }
    #tile-deal-controls .td-controls-inner,
    #tile-deal .td-controls-inner {
        flex-direction: column;
    }
    #tile-deal .td-controls-inner {
        margin-bottom: 0;
    }
    #tile-deal-controls .td-controls-inner .form-group-inline {
        width: 240px;
    }
    #tile-deal-controls .td-controls-inner {
        align-items: center;
    }
    .save-deal-button-wrapper {
        margin-top: 10px;
    }
    #admin-update-deal.btn,
    #admin-save-deal.btn,
    #admin-create-deal.btn,
    #admin-start-deal.btn,
    #admin-stop-deal.btn,
    #admin-excel-deal.btn {
        font-size: 18px;
    }
    .dtpicker-cont {
        position: static !important;
    }
    .deposit-item-row {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    .di-item {
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        margin-bottom: 10px;
    }
    .di-label {
        font-size: 14px;
        font-weight: 400;
        display: inline-block;
        line-height: 1.2;
        color: #c0c1c2;
    }
    .di-item:first-child {
        min-width: 100%;
    }
    #deposites-header {
        display: none;
    }
    .deposit-item-row-container:first-child .deposit-item-row {
        border-top: 0;
    }
    .nf-404-logo img {
        width: 160px;
        max-width: 100%;
    }
    .nf-404-code {
        font-size: 140px;
    }
    .nf-404-container > div {
        margin-bottom: 30px;
    }
    .nf-404-description h1 {
        font-size: 24px;
    }
    #auth-wrapper {
        position: static;
    }
    #auth-wrapper.loading:before {
        left: auto;
        right: 55px;
        margin-left: 0;
    }
    #pip-header {
        display: none;
    }
    .purchase-in-progress-item {
        flex-direction: column;
    }
    .purchase-in-progress-item:first-child {
        border-top: none;
        margin-top: 0;
        padding-top: 0;
    }
    .pip-item {
        width: 100%;
        text-align: left;
        margin-top: 6px;
    }
    .pip-item:first-child {
        margin-top: 0;
    }
    .pip-item .pip-label {
        display: block;
        font-size: 12px;
        color: #b5b8be;
    }
    .pip-item .pip-value {
        display: block;
        font-size: 14px;
        color: #ffffff;
    }
    .test-main-pay .btn-success-wrapper {
        margin-left: auto;
        margin-right: auto;
    }
    .countdown-time {
        font-size: 40px;
    }
    .countdown-number strong {
        font-size: 11px;
        font-weight: 700;
    }
    .countdown-time-wrapper,
    .countdown-time {
        width: 66px;
        height: 50px;
    }
    .countdown-separator {
        display: block;
        font-size: 20px;
        color: #feedaf;
        font-weight: 700;
        position: relative;
        top: -8px;
    }
    #countdown-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .td-hdr span strong {
        white-space: nowrap;
    }
    .td-controls-header {
        padding-left: 0;
    }
    .td-controls-inner .form-group-inline {
        width: 100%;
    }
    #header-controls-inner .btn span {
        top: 0;
    }
    .store-separator {
        margin-top: 30px;
        margin-bottom: 30px;
    }
    .onp-item {
        padding-bottom: 0;
    }
    #rarity-explorer-main-wrapper.section {
        padding-bottom: 50px;
    }
    #owner-nft-pass-section.section {
        padding-top: 50px;
    }
    .np-separator-ue {
        width: 320px;
        max-width: 100%;
        margin: 0 auto;
    }
}
/* END 575.98 */
@media (max-width: 560px) {
    .dtpicker-components {
        margin-left: auto;
        margin-right: auto;
        width: 252px;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    .dtpicker-compOutline {
        min-width: 83px;
    }
    .dtpicker-components .dtpicker-compOutline {
        float: none;
    }
    .dtpicker-components .dtpicker-compOutline:nth-child(4),
    .dtpicker-components .dtpicker-compOutline:nth-child(5) {
        margin-top: 10px;
    }
    .dtpicker-value {
        font-size: 18px !important;
    }
}

@media (min-width: 411px) and (max-width: 499px) {
    .catalog-tile-inner {
        padding-left: 15px;
        padding-right: 15px;
    }
    .catalog-item-img {
        width: 320px;
        max-width: 320px;
        position: relative;
        left: 10px;
    }
    #catalog-wrapper .catalog-container {
        height: 1210px;
    }
    .catalog-item-text {
        line-height: 1.2;
        min-height: 119px;
    }
    #nft-catalog.section {
        padding-bottom: 0;
    }
}
@media (max-width: 490px) {
    #checkbox-filter-block-inner > div:first-child,
    #checkbox-filter-block-inner > div {
        margin-left: 0;
        margin-right: 0;
        width: 174px;
    }
    #mint-filter,
    #mint-filter-no,
    #sold-filter,
    #sold-filter-no,
    #airdrop-filter {
        justify-content: flex-end;
    }
    #checkbox-filter-block.pb15 {
        padding-bottom: 5px;
    }
    #clear-filters {
        bottom: -32px;
        right: 50%;
        margin-right: -75px;
    }
}
@media (max-width: 460px) {
    /* Rarity explorer */
    #re-item-main-description p {
        font-size: 16px;
    }
    .lang-ru #sort-block strong,
    .lang-ru #scale-block strong {
        font-size: 11px;
    }
    .lang-ru #sort-rarity,
    .lang-ru #sort-item {
        font-size: 14px;
    }
    /* END Rarity explorer */
    .purchase-wallet p:nth-child(2) span {
        font-size: 14px;
        white-space: nowrap;
    }
    .lp-scan-wrapper,
    #lp-scan-loader {
        height: 168px;
    }
}
@media (max-width: 410px) {
    .hero-text-wrapper {
        padding-left: 15px;
        padding-right: 15px;
    }
    .ht-header h1 {
        font-size: 28px;
    }
    .ht-description-1 {
        font-size: 18px;
    }
    .ht-description-2 {
        font-size: 15px;
    }
    .htb-description {
        font-size: 12px;
    }
    h2, .h2 {
        font-size: 28px;
    }
    h2.buy-collection-name,
    .h2.buy-collection-name {
        font-size: 36px;
    }
    .e-tile-wrapper {
        padding-left: 0;
        padding-right: 0;
    }
    .tile-inner {
        padding: 30px 25px;
    }
    .s-tile .tile-inner {
        padding: 30px 25px 100px 25px;
    }
    .et-tile-wrapper:after {
        width: 160px;
        height: 172px;
        bottom: -90px;
        right: 50%;
        margin-right: -90px;
    }
    #tile-supply-wrapper .btn,
    #tile-rarityexp-wrapper .btn {
        font-size: 18px;
    }
    #tile-supply-wrapper .btn span,
    #tile-rarityexp-wrapper .btn span {
        top: 0;
    }
    #tile-rarityexp .btn-success-wrapper, #tile-supply .btn-info-wrapper {
        min-width: 220px;
    }
    .catalog-tile-inner {
        padding: 0 20px 85px 20px;
    }
    .catalog-item-img {
        width: 280px;
        max-width: 280px;
        position: relative;
        left: 15px;
    }
    .catalog-item-text {
        min-height: 165px;
    }
    #comics-slider-dots .owl-dot,
    #nixie-slider-dots .owl-dot,
    #web3ton-slider-dots .owl-dot {
        margin-left: 8px;
    }
    .catalog-item-tile-wrapper .btn-info-wrapper {
        box-shadow: none;
    }
    #catalog-wrapper .catalog-container {
        height: 1200px;
    }
    #nixie-slider .cit-2,
    #nixie-slider .cit-3 {
        margin-bottom: 30px;
    }
    #nft-catalog.section {
        padding-bottom: 25px;
    }
    .brc-item a {
        font-size: 20px;
    }
    .cb-img-wrapper .h1,
    #comic-book-description .h1 {
        font-size: 28px;
    }
    .cb-img-wrapper,
    .cb-img-wrapper .h1,
    #comic-book-description .h1 {
        margin-bottom: 30px;
    }
    .cb-link {
        margin-top: 30px;
    }
    .cbd-text {
        margin-bottom: 25px;
    }
    #tile-supply .tile-inner, #tile-rarityexp .tile-inner {
        padding-bottom: 140px;
    }
    #tile-supply .tile-inner > .tile-button-wrapper,
    #tile-rarityexp .tile-inner > .tile-button-wrapper {
        bottom: 75px;
    }
    #ecosystem-tile-wrapper > .row > .col-12:first-child {
        margin-bottom: 70px;
    }
    #tile-future-box .tile-header,
    #tile-deposits .tile-header {
        font-size: 32px;
    }
    #fb-pay-wrapper .btn-success-wrapper,
    #future-box-form .form-group,
    #future-box-form .form-group {
        width: 236px;
    }
    #fb-amount-wrapper {
        margin-top: 10px;
    }
    #deposit-footer-inner {
        flex-direction: column;
    }
    #tile-deposits .tile-header {
        margin-bottom: 10px;
    }
    .owl-nav {
        width: 308px;
        position: absolute;
        bottom: -64px;
        right: 50%;
        margin-right: -154px;
        height: 35px;
        z-index: 12;
    }
    .owl-nav .owl-prev {
        margin-left: -154px;
    }
    .owl-nav .owl-next {
        margin-right: -154px;
    }
}
@media (max-width: 390px) {
    #nft-catalog.section {
        padding-bottom: 0;
    }
}
@media (max-width: 389px) {
    #nft-catalog.section {
        padding-bottom: 25px;
    }
    .card-header:after {
        right: 10px;
    }
    .card-body {
        padding-left: 15px;
        padding-right: 15px;
    }
    #header-controls-inner .btn {
        font-size: 16px;
    }
    .tile-purple .tile-inner:after,
    #tile-airdrop .tile-inner:after {
        width: 94px;
        height: 126px;
    }
    #tile-invest .tile-inner:after {
        width: 94px;
        height: 91px;
    }
    #tile-fortuna .tile-inner:after {
        width: 100px;
        height: 50px;
    }
    .tbrt-label,
    .tile-text {
        font-size: 15px;
    }
    .tbrt-value {
        font-size: 24px;
    }
    .tile-inner .tile-bottom-link {
        left: 20px;
    }
    .e-tile-wrapper {
        min-height: 290px;
    }
    #tile-supply-wrapper, #tile-rarityexp-wrapper {
        padding-left: 0;
        padding-right: 0;
    }
    .catalog-item-tile-wrapper {
        width: 264px;
    }
    .tile-extra-inner {
        border-radius: 19px;
        padding: 15px 10px 15px 15px;
        background-color: #060b15;
        height: 100%;
    }
    .catalog-item-description .h2 {
        font-size: 24px;
    }
    .catalog-item-text {
        min-height: 182px;
    }
    .custom-next {
        margin-left: 8px;
    }
    .custom-prev {
        margin-right: 8px;
    }
    .custom-pager-item {
        margin-left: 5px;
    }
    .catalog-item-header {
        margin-bottom: 5px;
    }
    #x1-eshop {
        font-size: 12px;
    }
    .cit-1, .cit-2 {
        height: 155px;
        min-height: 155px;
    }
    .catalog-item-img {
        width: 244px;
        max-width: 244px;
        position: relative;
        left: 10px;
    }
    #catalog-wrapper .catalog-container {
        height: 1125px;
    }
    #nixie-slider .tile-extra-gold .tile-label {
        margin-top: 18px;
    }
    .lang-ru #sort-block strong,
    .lang-ru #scale-block strong {
        display: none;
    }
    /* Marga page */
    .marga-rates {
        width: 100%;
    }
    .marga-rates .tile-header {
        margin-bottom: 16px;
    }
    /* END Marga page */
    .brc-item a {
        font-size: 18px;
    }
    .ai-val {
        font-size: 14px;
    }
    .countdown-time {
        font-size: 36px;
    }
    .countdown-time-wrapper, .countdown-time {
        width: 60px;
    }
    .countdown-number strong {
        font-size: 10px;
    }
    .owl-nav {
        width: 300px;
        position: absolute;
        bottom: -64px;
        right: 50%;
        margin-right: -150px;
        height: 35px;
        z-index: 12;
    }
    .owl-nav .owl-prev {
        margin-left: -150px;
    }
    .owl-nav .owl-next {
        margin-right: -150px;
    }
}
@media (max-width: 359px) {
    #header-logo-link img {
        width: 80px;
    }
    #header-controls-inner .btn {
        font-size: 15px;
        padding-left: 12px;
        padding-right: 12px;
    }
    #hero-img {
        width: 320px;
        height: 375px;
    }
    .hero-img-wrapper {
        width: 232px;
        max-width: 232px;
        min-width: 232px;
        height: 350px;
    }
    .tile-header {
        font-size: 32px;
    }
    .tile-inner {
        padding: 25px 20px;
    }


    .e-tile-wrapper {
        min-height: 280px;
    }

    .s-tile .tile-inner {
        padding-left: 20px;
        padding-right: 20px;
    }


    .card-header .btn.btn-link span {
        padding-left: 50px;
        padding-right: 50px;
    }
    .btn.btn-link {
        font-size: 16px;
        line-height: 1.3;
    }
    .card {
        margin-bottom: 15px;
    }
    .card-body {
        padding-top: 30px;
    }
    .adhr-link, #adhistory-res p {
        margin-left: 15px;
        margin-right: 15px;
    }
}