@import url('https://fonts.googleapis.com/css2?family=Dosis:wght@300;400;500;600;700&family=Fira+Sans:wght@200;300;400;500;600&family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* 
====== 
Variables 
======
*/

:root {
    --primaryLightColor: #d4e6a5;
    --primaryColor: #1A203C;
    --primaryDarkColor: #c02c03;
    --mainWhite: #fff;
    --offWhite: #F1F1F1;
    --mainBackground: #f1f5f8;
    --mainOverlay: rgba(35, 10, 36, 0.4);
    --mainBlack: #222;
    --mainGrey: #bfbebe;
    --darkGrey: #afafaf;
    --mainRed: #bd0303;
    --mainTransition: all 0.3s linear;
    --mainSpacing: 0.3rem;
    --lightShadow: 2px 5px 3px 0px rgba(0, 0, 0, 0.5);
    --darkShadow: 4px 10px 5px 0px rgba(0, 0, 0, 0.5);
    --mainBorderRadius: 0.25rem;
    --smallWidth: 85vw;
    --maxWidth: 40rem;
    --fullWidth: 1170px;
}


/* 
  ====== 
  Global Styles 
  ======
  */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: url('../images/bg-img.png') no-repeat center center fixed;
    width: 100%;
    height: 100vh;
    background-size: 100% 100%;
    line-height: 1.4;
    font-size: 1rem;
    font-family: 'Dosis', sans-serif !important;
}

.dropdown {
    cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 1.25rem;
    color: var(--mainWhite);
    /* letter-spacing: var(--mainSpacing); */
}

p {
    margin-bottom: 1.25rem;
}

ul {
    list-style-type: none;
}

a {
    text-decoration: none;
    color: var(--mainBlack);
}

svg {
    color: var(--mainWhite);
}

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

.cursor-pointer {
    cursor: pointer;
}

.text-sm {
    font-size: 10px;
}

button:focus {
    outline: none !important;
    /* border: none !important; */
    box-shadow: none !important;
}

.btn-white {
    background: var(--mainWhite) !important;
}

.select-btn .btn:hover {
    background: rgb(240, 237, 237) !important;
    transition: background .4s;
    border: none;
}

.font-weight-light-1 {
    font-weight: 300 !important;
}

.font-2 {
    font-family: 'Inter'
}

.fontBold {
    font-weight: bold;
}

.head-title {
    background: var(--offWhite);
    padding: .5rem 1.25rem;
    display: inline-block;
    border-radius: 15px;
    box-shadow: var(--lightShadow);
}

.bgColor {
    background: var(--primaryColor);
}

.head-title h2 {
    font-weight: 700;
    text-transform: uppercase;
    color: var(--mainBlack) !important;
    letter-spacing: 1px;
}

.back-btn {
    float: left;
    display: flex;
    margin-top: 7.3rem;
}

.back-btn svg {
    width: 40px;
    height: 40px;
    color: var(--mainWhite);
}

.mt-10 {
    margin-top: 1rem;
}

.w-100 {
    width: 100px;
}

.badge-item-stat-video {
    width: 300px !important;
}

.w-100 {
    width: 100px;
}

.home {
    margin-top: 30px;
}

.top-heading {
    text-align: center;
    margin-bottom: 20px;
    color: var(--mainWhite);
}

a {
    text-decoration: none !important;
}

.ual-auth-icon {
    height: 40px;
}


/*=== Scrolling style  ====*/

.scroll {
    height: 450px;
    overflow-y: auto;
}

.scroll::-webkit-scrollbar {
    width: 4px;
    /* display: none; */
}


/* Track */


/* .scroll::-webkit-scrollbar-track {
    background: wheat;
    width: 1px;

} */


/* Handle */

.scroll::-webkit-scrollbar-thumb {
    background: transparent;
    height: 2px !important;
    border-radius: 20px;
}


/* ::-webkit-scrollbar {
    opacity: 0;
    background: transparent;
}

::-webkit-scrollbar:hover {
    opacity: 1;
} */

.scroll:hover::-webkit-scrollbar-thumb {
    background: #766640;
}

.scroll::-webkit-scrollbar-thumb:hover {
    background: #7b61ff;
}


/* Handle on hover */

.scroll::-webkit-scrollbar-thumb:hover {
    background: #555;
    border-right: none;
    border-left: none;
}

.scroll::-webkit-scrollbar-track-piece:end {
    background: transparent;
    margin-bottom: 22px;
}

.scroll::-webkit-scrollbar-track-piece:start {
    background: transparent;
    margin-top: 28px;
}


/*=== Scrolling style End  ====*/


/*====== Modal style Start  ======*/

.modal-wrapper .modal-content {
    background: var(--primaryColor) !important;
    width: 760px !important;
    opacity: 0.9;
    border-radius: 46px !important;
    border: none !important;
    margin: auto;
    /* height: 613px; */
}

.modal-title {
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
}


/*===== Modal style End  ======*/

.animation-bottom {
    position: absolute;
    text-align: center;
    padding-left: 1em;
    padding-right: 1em;
    width: 100%;
    top: 50%;
    left: 50%;
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease-in-out 0s;
}

.card:hover .animation-bottom {
    top: 50%;
    left: 50%;
    opacity: 1;
}

.fadeIn-bottom {
    top: 80%;
}

.card {
    transition: all 0.4s;
    border: none !important;
    cursor: pointer;
}

.inventory-page .card:hover {
    transform: translateY(-10px);
}

.card .content-overlay {
    background: rgba(0, 0, 0, 0.7);
    position: absolute;
    height: 97%;
    width: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    transition: all 0.4s ease-in-out 0s;
    /* border-radius: 0 0 6px 6px !important; */
}

.card:hover .content-overlay {
    opacity: 1;
}


/*======== Login page ===============*/

.lostSailor-logo {
    position: relative;
    z-index: 20;
    width: 654px;
}

.rpc-server-wrapper {
    position: relative;
    z-index: 20;
    top: 80px;
}

.lostSailor-logo img {
    width: 100%;
}

.pulse {
    --color: #ef6eae;
    --hover: #ef8f6e;
}

.login {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 37vh;
    position: relative;
    z-index: 20;
    flex-direction: column;
}

.loginBtn {
    font-weight: bold;
    color: var(--mainWhite);
    border-radius: 10px;
    border: 2px solid;
    font: inherit;
    line-height: 1;
    margin: 0.5em;
    padding: .5em 2em;
    font-size: 22px;
    letter-spacing: 2px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.pulse:hover,
.pulse:focus {
    -webkit-animation: pulse 1s;
    animation: pulse 1s;
    box-shadow: 0 0 0 2em rgba(255, 255, 255, 0);
    color: var(--mainWhite);
    transform: translateY(-5px);
    transition: transform .3s ease-in-out;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 var(--hover);
    }
}


/*======== Login page End===============*/


/*======== header page Start===============*/

.top-header {
    z-index: 100;
}

.navbar .navbar-brand .logo {
    width: 44px;
    height: 44px;
}

.nav-menu,
.navbar-toggler {
    margin-left: auto;
}

.progress-wrapper {
    display: flex !important;
    position: relative;
}

.progress-wrapper img,
.user-wrapper img {
    width: 40px;
    height: 35px;
    object-fit: contain;
}

.progress-wrapper .coin-img,
.progress-wrapper .wheel-img {
    width: 42px;
    height: 38px;
    margin-top: 4px;
}

.progress-wrapper .progress-cont {
    display: flex;
    align-items: center;
    line-height: 0.8;
    font-weight: 600;
    color: #fff;
    width: 110px;
}

.progress-wrapper .progress-cont .progress__bar {
    width: 11px;
    height: 17px;
    background-color: var(--mainWhite);
    margin-left: 1px;
}

.mgt-5 {
    margin-top: 5px;
}

.progress-wrapper .progress-cont .progress__bar:nth-child(1) {
    border-radius: 4px 0 0 4px;
}

.progress-wrapper .progress-cont .progress__bar:last-child {
    border-radius: 0 4px 4px 0;
}

.progress-title {
    position: absolute;
    top: 19px;
    left: 45px;
}

.progress-title span {
    font-size: 12px;
    font-weight: bold;
    color: var(--mainWhite);
}

.progress-title .add-balance {
    font-weight: 800;
    font-size: 20px;
    margin-top: 9px;
    width: 20px;
    height: 20px;
    text-align: right;
}

.add-balance svg {
    width: 15px;
    height: 15px;
}

.progress-border {
    width: 125px;
    height: 14px;
    border: 1px solid var(--mainWhite);
}

.user-wrapper {
    display: flex;
    align-items: center;
    margin-top: 4px;
}

.user-wrapper h4 {
    color: var(--mainWhite);
    font-size: 17px;
    padding: 0 8px;
    margin-top: 5px;
}


/*======== header page End===============*/


/*======== Home page start===============*/

.home-section {
    margin-top: 2rem;
}

.home-section .lostSailor-logo {
    margin: auto;
}

.home-section .home-content {
    width: var(--smallWidth);
    margin-top: 3rem;
}

.section {
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-section .home-content .inventory-page {
    background: var(--mainWhite);
    border: 2px solid var(--mainBlack);
    border-radius: 13px;
    box-shadow: var(--darkShadow);
    width: 222px;
    height: 220px;
    position: relative;
    transition: all .3s;
    margin-right: 2.5rem;
    padding: 10px;
}

.home-content .inventory-page .inventory-page_icon {
    width: 115px;
    /* height: 100px; */
    margin: auto;
}

.home-content .inventory-page .inventory-page_icon img {
    width: 100%;
}

.inventory-page .inventory-page_title {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 2rem;
    margin-top: 10px;
    color: var(--mainBlack);
}

.home-content .inventory-page:hover {
    transform: translateY(-10px);
}

.home-content .btn-banner {
    width: 350px;
    margin: 3rem auto;
    position: relative;
}

.home-content .btn-banner img {
    width: 100%;
}

.footer-section {
    position: absolute;
    right: 4px;
    bottom: 20px;
    text-align: center;
}

.footer-section .leaderBoard img {
    width: 54px;
    height: 54px;
    /* object-fit: contain; */
}

.footer-section .leaderBoard p {
    font-size: .8rem;
    color: var(--mainWhite);
    text-transform: capitalize;
    font-weight: bold;
}

.footer-section .logout .btn-black {
    background: var(--mainBlack) !important;
    color: var(--mainWhite);
}

.footer-section .logout .btn {
    border: none !important;
    padding: 2px 4px !important;
    text-transform: capitalize;
    font-size: 0.7rem !important;
    font-weight: bold;
}


/*======== Home page End===============*/


/*======== Inventory page start===============*/

.inventory-section .search-input {
    background: var(--mainWhite);
    border-radius: 20px;
    width: 200px;
    height: 40px;
    box-shadow: var(--lightShadow);
    display: flex;
    align-items: center;
}

.inventory-section .search-input svg {
    width: 30px;
    height: 30px;
    font-weight: bold;
    margin-left: 10px;
    color: var(--mainBlack);
}

.inventory-section .search-input input {
    border: none;
    text-align: center;
    padding: 5px 0;
    /* font-size: 1.6rem; */
}

.inventory-section .search-input input:focus {
    border: none;
    outline: none;
}

.inventory-section .search-input input::placeholder {
    font-size: 20px;
    color: var(--mainBlack);
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: var(--mainSpacing);
}

.btn-container {
    margin-top: 2rem;
    text-align: center;
    transition: all .3s;
}

.btn-container .md-btn {
    display: block;
    margin: auto;
    width: 165px;
    border: 4px solid var(--mainWhite);
    border-radius: 20px;
    color: var(--mainWhite);
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
}

.btn-container .md-btn.selected {
    border: 4px solid #f2f298;
    color: #f2f298;
}

.btn-container .md-btn:not(:first-child) {
    margin-top: 2.34rem;
}

.inventory-card .card {
    display: inline-block;
    text-align: left;
    position: relative;
    background: var(--primaryColor);
    cursor: pointer;
    margin: 10px 15px;
    border-radius: 10px;
    max-width: 100%;
    max-height: 100%;
    width: 200px;
    height: auto;
    border: 2px solid var(--mainWhite) !important;
}

.inventory-card .card img {
    padding: 5px 5px 0;
}

.inventory-card .card .card-body {
    padding: 0 .7rem !important;
    color: var(--mainWhite);
}

.inventory-card .card .card-body .card-text {
    color: #00E25B;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.inventory-card .card .card-body .card-text span {
    color: var(--mainWhite);
    margin-left: 2px;
}

.inventory-card .card .card-body .buttons .small-btn {
    width: calc(50% - 15px);
}

.inventory-card .card .card-body .buttons .small-btn:not(:last-child) {
    margin-right: 10px;
}

.inventory-card .card .card-body .buttons .btn {
    display: inline-block;
    font-size: 9px;
    margin: 5px;
    padding: 8px 13px;
    white-space: nowrap;
}

.inventory-card .card .card-body .buttons .small-btn {
    background: transparent;
    border: 2px solid var(--mainWhite);
    border-radius: 30px;
    color: var(--mainWhite);
    font-weight: 700;
    transition: all .4s;
}

.inventory-card .card .card-body .small-btn:hover {
    color: rgb(114, 103, 103);
    box-shadow: var(--lightShadow);
}

.inventory-card .card .card-body .asset-name {
    font-size: 1rem !important;
    font-weight: bold !important;
}


/*======== Inventory page End===============*/


/*======== marketPlace page start===============*/

.market .back-btn {
    margin-top: 0;
    float: right;
}

.marketPlace-section .btn-container .md-btn:not(:first-child) {
    margin-top: 2rem;
}

.market .marketPlace-section .btn-container .md-btn {
    font-size: .9rem;
    padding: 3px 3px;
}

.img-wrapper {
    height: 205px;
}

.img-position {
    display: block;
    width: 100%;
    height: 100%;
}

.single-pic {
    padding: 10px;
}

.img-prev {
    position: relative;
    width: 100%;
    height: 100%;
}

.img-prev img {
    position: absolute;
    width: auto;
    height: auto;
    max-height: 100%;
    max-width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


/*======== marketPlace page End===============*/


/*======== Details page Start===============*/

.details-section .card {
    /* width: 270px; */
    background: #083255;
    border-radius: 20px;
    box-shadow: var(--lightShadow);
    /* margin-left: auto; */
    padding: 5px;
    float: left;
}

.details-section .card .card-body .asset-name,
.card-title,
.card-text,
span,
.details-title {
    color: var(--mainWhite);
}

.details-section .card .card-body .card-title,
.card-text,
.ship-price,
.details-title {
    text-transform: uppercase !important;
    font-weight: 700;
}

.details-section .card .card-body .asset-name {
    font-weight: 700;
    text-transform: capitalize;
}

.details-section .card .card-body .card-title {
    font-weight: bold;
    font-size: 1.34rem;
}

.details-section .card .card-body .card-text {
    font-size: 1.12rem;
}

.details-section .card .card-body .ship-price {
    font-size: 1.8rem;
    color: #00E25B;
}

.details-section .card .card-body span {
    font-size: 1.15rem;
}

.details-section .card .card-body .details-title {
    font-size: 1.9rem;
}

.details-section .ship-info .container {
    text-align: left;
}

.details-section .ship-info {
    width: 95%;
    background: #083255;
    border-radius: 20px;
}

.small-text {
    margin-top: 13px;
}

.details-section .ship-info .small-text .grey-color {
    color: var(--mainGrey);
    font-size: .7rem;
    text-transform: capitalize;
}

.details-section .ship-info .small-text h2 {
    color: var(--mainWhite);
    font-weight: bold;
    text-transform: capitalize;
    letter-spacing: normal;
}

.light-red {
    color: #ea923e;
}

.owner-name a {
    font-size: 1.5rem;
}

.details-section .ship-info .small-text .owner-name,
.font-weight-bold {
    font-weight: bold !important;
}

.small-text svg {
    width: 20px;
    height: 20px;
    color: #00E25B;
    margin-right: 4px;
}

.details-section .links {
    margin-top: 1rem;
}

.details-section .links a {
    margin: 0 10px;
}

.details-section .links a i {
    font-size: 20px;
}

.total-price {
    margin-top: 3rem;
    font-size: 20px;
}

.bg-color {
    margin-top: 1rem;
    background: #14192e;
}

.bg-color.rounded {
    border-radius: 20px !important;
}

.accountName img {
    width: 20px;
    height: 20px;
    margin: 0 10px;
    object-fit: contain;
}

.details-section .btn {
    border-radius: 100px;
    font-size: 16px;
    font-weight: 700;
}

.details-section .price-color {
    color: #42ba67;
}

.details-section .btn-primary {
    background-color: #ea923e !important;
    border-color: #ea923e;
}


/*======== Details page End===============*/


/* ====== Leader Board Section Start ==== */

.leaderBoard-wrapper {
    height: 82%;
    margin: auto;
    width: 75%;
    background: #1A203C;
    border: 3px solid var(--offWhite);
    text-align: center;
    box-sizing: border-box;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 37px;
}

.leaderBoard-title {
    background: var(--primaryColor);
    color: var(--mainWhite);
    text-transform: uppercase;
    box-sizing: border-box;
    text-align: center;
    display: inline-block;
    font-size: inherit;
    font-weight: bold;
    font-size: 30px;
    padding: 2px 30px;
    margin-top: -20px;
    border: 4px solid var(--mainWhite);
    border-radius: 8px;
}

.leaderBoard-body {
    padding: 3px 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.leaderBoard-content {
    display: flex;
    align-items: center;
    margin-top: 20px;
    /* justify-content: center; */
}

.leaderBoard-reward {
    margin-right: 10px;
}

.leaderBoard-reward h6 {
    font-size: .8rem;
    text-transform: uppercase;
    font-weight: bold;
}

.leaderBoard-reward img {
    width: 40px;
    height: 40px;
}

.leaderBoard-userImg img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 22px;
}

.leaderBoard-info {
    background: linear-gradient(to left, #233275 100%, #00A3FF 28%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 503px;
    height: 54px;
    padding: 14px;
    border-radius: 8px;
    margin-left: 10px;
    box-shadow: var(--lightShadow);
}

.leaderBoard-info .username,
.total-reward {
    color: var(--mainWhite);
    font-size: 18px;
    margin-top: 6px;
    text-transform: capitalize;
}

.leaderBoard-reward h4 {
    color: var(--mainWhite);
    font-size: 18px;
    width: 40px;
    text-align: center;
}

.leaderBoard-wrapper .back {
    text-align: right;
    margin-right: 1rem;
    font-size: 2.22rem;
    color: var(--mainWhite)
}


/* ====== Leader Board Section  End ==== */


/* ====== Discover Page StART ==== */

.card-selection-wrapper .card {
    background-color: transparent;
    width: 200px;
    height: 250px;
    margin: auto;
    border: 6px solid var(--mainWhite) !important;
    border-radius: 15px;
}

.card-selection-wrapper .card .card-body,
.card-1 .card-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.card-selection-wrapper .card .card-body .fa-plus,
.card-1 .fa-plus {
    font-size: 4rem;
    color: var(--mainWhite);
    margin-bottom: 10px;
}

.card-selection-wrapper .card .card-body h1 {
    font-size: 2.45rem;
}

.card-selection-wrapper .btn {
    text-transform: uppercase;
    color: var(--mainWhite);
    width: 15%;
    font-size: 1.4rem;
    padding: 0 0.75rem;
    transition: all .4s;
}

.card-selection-wrapper .btn:hover {
    transform: translateY(-10px);
    box-shadow: var(--lightShadow);
    color: var(--mainWhite);
}

.btn-outline {
    border: 1px solid var(--mainWhite) !important;
    border-radius: 10px !important;
}

.card-1 {
    background-color: transparent;
    width: 150px;
    height: 200px;
    margin: 0 10px;
    border: 1px solid var(--mainWhite) !important;
    border-radius: 15px;
}

.select-btn {
    text-align: right;
    margin-top: -1.5rem;
    margin-right: 1rem;
}

.select-btn .btn {
    text-transform: uppercase;
    font-weight: bold;
    display: inline-block;
    width: 100%;
    height: 50px;
    background-color: var(--mainWhite);
    border-radius: 27px;
    color: #000 !important;
    padding: 0 34px 8px !important;
    font-size: 1.6rem;
    line-height: 1.8;
}

.select-btn span {
    font-size: .7rem;
    margin-top: -10px;
}


/* ====== Discover Page End ==== */


/* ====== Waiting Page Start ==== */

.waitingBlock {
    width: 73%;
    margin: 1rem auto;
    border: 3px solid var(--mainWhite);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 30px;
    padding: 1rem 1rem .5rem;
}

.waitingBlock .img img {
    width: 80px;
    height: 80px;
    margin: auto;
}

.waitingBlock .img {
    display: flex;
    height: 100%;
}

.waitingBlock .card {
    width: 150px;
    height: 200px;
    border: 3px solid var(--mainWhite) !important;
}

.waitingBlock .card-1 {
    width: 110px;
    height: 150px;
    border: 2px solid var(--mainWhite) !important;
}

.waitingBlock .card-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.waitingBlock .fa-angle-left {
    float: right;
    color: var(--mainWhite);
    font-size: 3rem;
    margin-top: -3rem;
}

.waitingBlock .w-70 {
    width: 580px;
}

.waitingBlock .btn {
    width: 22%;
    margin-left: 30px;
}

.waitingBlock .ml-6 {
    margin-left: 20px;
}


/* ====== Waiting Page End ==== */


/* ====== Continent Page start ==== */


/* .wrapper{
    background: url('../images/wm.png') no-repeat;
    width: 100%;
    height: 100vh;
    background-size: cover;
    position: relative;
    z-index: 1000;
} */

.map-wrapper {
    background: url('../images/wm.png') no-repeat;
    width: 855px;
    height: 416px;
    margin: auto;
    position: relative;
    background-size: cover;
    z-index: 1000;
    background-position: center;
    margin-top: -20px;
}

.map-wrapper .markLocation {
    display: inline-block;
    position: absolute;
    top: 31%;
    left: 153px;
}

.map-wrapper .markLocation:nth-child(2) {
    top: 263px;
    left: 218px;
}

.map-wrapper .markLocation:nth-child(3) {
    top: 31%;
    left: 50%;
}

.map-wrapper .markLocation:nth-child(4) {
    top: 235px;
    left: 50%;
}

.map-wrapper .markLocation:nth-child(5) {
    top: 31%;
    left: 65%;
}

.map-wrapper .markLocation:nth-child(6) {
    top: 78%;
    right: 169px;
    display: inline-block;
    text-align: right;
}

.map-wrapper .markLocation img {
    width: 17px;
    height: 24px;
    object-fit: contain;
}

.map-wrapper .markLocation a {
    color: #e91e63;
    white-space: nowrap;
    font-weight: bold;
}

.card-body {
    padding: 10px !important;
}

.map-wrapper .markLocation a:after {
    font-family: 'Dosis';
    text-align: center;
    white-space: normal;
}

.map-wrapper .markLocation span:focus {
    outline: none;
}


/*== start of code for tooltips ==*/

.map-wrapper .markLocation .toolTipInHover {
    cursor: help;
    position: relative;
}


/*== common styles for both parts of.map-wrapper .markLocation  toolTipInHover tip ==*/

.map-wrapper .markLocation .toolTipInHover::before,
.map-wrapper .markLocation .toolTipInHover::after {
    left: 50%;
    opacity: 0;
    position: absolute;
    z-index: -100;
}

.map-wrapper .markLocation .toolTipInHover:hover::before,
.map-wrapper .markLocation .toolTipInHover:focus::before,
.map-wrapper .markLocation .toolTipInHover:hover::after,
.map-wrapper .markLocation .toolTipInHover:focus::after {
    opacity: 1;
    transform: scale(1) translateY(0);
    z-index: 100;
}


/*== pointer tip ==*/

.map-wrapper .markLocation .toolTipInHover::before {
    border-style: solid;
    border-width: 1em 0.75em 0 0.75em;
    border-color: var(--mainBlack) transparent transparent transparent;
    outline-color: var(--mainWhite) transparent transparent transparent;
    bottom: 100%;
    content: "";
    margin-left: -0.5em;
    transition: all .65s cubic-bezier(.84, -0.18, .31, 1.26), opacity .65s .5s;
    transform: scale(.6) translateY(-90%);
}

.map-wrapper .markLocation .toolTipInHover:hover::before,
.map-wrapper .markLocation .toolTipInHover:focus::before {
    transition: all .65s cubic-bezier(.84, -0.18, .31, 1.26) .2s;
}


/*== speech bubble ==*/

.map-wrapper .markLocation .toolTipInHover::after {
    background: #C4C4C4;
    border-radius: .25em;
    bottom: 180%;
    color: var(--mainBlack);
    content: attr(data-tip);
    margin-left: -6em;
    padding: .7rem 0;
    transition: all .65s cubic-bezier(.84, -0.18, .31, 1.26) .2s;
    transform: scale(.6) translateY(50%);
    width: 7.5em;
    word-wrap: break-word;
    border: 1px solid var(--mainBlack);
    text-transform: uppercase;
    line-height: 1.2;
}

.map-wrapper .markLocation .toolTipInHover:hover::after,
.map-wrapper .markLocation .toolTipInHover:focus::after {
    transition: all .65s cubic-bezier(.84, -0.18, .31, 1.26);
}

.content .txtBlock .txtBlock-title {
    font-weight: bold;
    font-size: 26px;
    line-height: 18px;
    letter-spacing: 0.15em;
}

.txtBlock-title-1 {
    font-size: 26px
}

.content img {
    width: 100px;
    height: 117px;
    float: left;
}

.content .txtBlock h2 {
    float: left;
}


/* ====== Continent Page End ==== */


/*=== Staking Page Start ===*/

.staking .input_filter-box {
    width: 200px;
    margin: 2rem auto;
}

.staking .input_filter-box select:focus {
    outline: none;
    box-shadow: none;
}

.staking .staking-card_details .large-card {
    display: inline-block;
    position: relative;
    height: fit-content;
    border-radius: 20px;
    margin-right: 10px;
    width: 205px;
    max-width: 100%;
    max-height: 100%;
    box-shadow: 0 3px 20px rgb(0, 0, 0, 40%);
    /* width: 270px; */
    background: var(--primaryColor);
}

.staking .btn {
    letter-spacing: 1px;
    font-weight: 500;
    border: 1px solid var(--mainWhite);
    border-radius: 20px;
    margin: 8px 0;
    transition: all .4s;
}

.staking .btn-stake {
    color: var(--mainWhite);
}

.staking .btn-stake:hover {
    background-color: var(--mainWhite);
    color: var(--mainBlack);
    /* border: none; */
}


/*=== Staking Page End ===*/


/* ======== Media Query Start
======= */

@media (max-width:2560px) {
    .home-section .home-content {
        width: 100%;
        margin: 3rem auto;
    }
    .modal-content {
        width: 100% !important;
    }
    .select-btn {
        /* text-align: center; */
        /* margin-top: 2rem; */
    }
}

@media (max-width:1440px) {
    .home-section .home-content {
        width: 100%;
        margin: 3rem auto;
    }
    .footer-section {
        position: absolute;
        right: 4px;
        bottom: 1rem;
    }
    /* .map-wrapper{
        width: 100%;
        height: 100vh;
        
    } */
    /* .map-wrapper .markLocation {
        top: 31%;
        left: 232px;
    }
   
    .map-wrapper .markLocation:nth-child(2) {
        top: 67%;
        left: 21.3em;
    }
    .map-wrapper .markLocation:nth-child(3) {
        top: 34%;
        left: 50%;
    }
    .map-wrapper .markLocation:nth-child(4) {
        top: 57.6%;
        left: 50%;
        display: inline-block;
    }
    .map-wrapper .markLocation:nth-child(5) {
        top: 33%;
        left: 65%;
    } */
}

@media (max-width:1192px) {
    .waitingBlock .w-70 {
        width: 500px;
    }
    .waitingBlock .btn {
        width: 23%;
    }
}

@media (max-width:1024px) {
    .marketPlace-section .inventory-card {
        margin-left: 3rem;
    }
    .waitingBlock .w-70 {
        width: 506px;
    }
    .select-btn {
        text-align: right;
        margin-top: -3.3rem;
        margin-right: 1rem;
    }
    .select-btn .btn {
        width: 16%;
    }
}

@media (max-width:992px) {
    .rpc-server-wrapper {
        top: 50px !important;
    }
    .home-content .btn-wrapper .button .btn-inner_title {
        top: 17px !important;
        font-size: 1.5rem !important;
    }
    .inventory-card .card .card-body .buttons .small-btn {
        font-size: 12px;
        width: calc(55% - 15px);
    }
    .inventory-section .inventory-card {
        margin-left: 3rem;
    }
    .details-section .card {
        width: 216px;
    }
    .details-section .ship-info {
        width: 100%;
    }
    .marketPlace-section .inventory-card {
        margin-left: 5rem;
    }
    .inventory-card .card {
        height: 100%;
        /* margin: 10; */
    }
    .waitingBlock .card {
        width: 123px;
        height: 176px;
        border: 3px solid var(--mainWhite) !important;
    }
    .waitingBlock .w-70 {
        width: 389px;
    }
    .waitingBlock .ml-6 {
        margin-left: 40px;
    }
    .waitingBlock .btn {
        width: 29%;
    }
    .map-wrapper .markLocation {
        top: 32%;
        left: 109px;
    }
    .map-wrapper {
        width: 100%;
        height: 65vh;
    }
    .map-wrapper .markLocation img {
        width: 15px;
        height: 18px;
    }
    .map-wrapper .markLocation:nth-child(2) {
        top: 64%;
        left: 11.5em;
    }
    .map-wrapper .markLocation:nth-child(6) {
        top: 78%;
        right: 122px;
    }
    .attack-info .info-content,
    .header-content {
        flex-direction: column;
    }
    .attack-info .inner-content,
    .header-content .header-content-box {
        margin-bottom: 15px;
    }
    .header-content .header-content-box {
        margin-right: 0 !important;
    }
}

@media (max-width:768px) {
    .lostSailor-logo {
        width: 514px;
    }
    .lostSailor-logo {
        position: relative;
        z-index: 100;
        width: 514px;
    }
    .home-content .section {
        flex-direction: column;
    }
    .home-content .section .marketplace-section {
        margin: 20px 0;
    }
    .btn-wrapper .button {
        margin: 1rem auto;
        width: 100%;
    }
    .home-content .button {
        width: 100% !important;
        margin: 1rem auto !important;
    }
    .home-content .btn-wrapper .button .btn-inner_title {
        top: 25px !important;
        font-size: 2.5rem !important;
    }
    .btn-wrapper {
        flex-direction: column;
    }
    .inventory-card,
    .marketPlace-section .inventory-card {
        margin-left: 3rem;
    }
    .marketPlace-section .inventory-card {
        margin-left: 5rem;
    }
    .inventory-card .card,
    .marketPlace-section .card,
    .staking-section .card {
        width: 200px;
        height: 100%;
    }
    .inventory-card .card .card-body .buttons .small-btn {
        font-size: 12px;
        width: calc(59% - 15px);
    }
    .marketPlace-section .buttons .small-btn {
        font-size: 12px;
        width: calc(57% - 15px) !important;
    }
    .leaderBoard-wrapper .leaderBoard-info {
        width: 290px;
        height: 45px;
    }
    .leaderBoard-wrapper .leaderBoard-reward img {
        width: 35px;
        height: 35px;
    }
    .leaderBoard-wrapper .leaderBoard-userImg img {
        width: 40px;
        height: 40px;
    }
    .leaderBoard-info .username,
    .total-reward {
        font-size: 15px;
    }
    .details-section .card {
        width: 223px;
    }
    .waitingBlock .w-70 {
        width: 398px;
    }
    .waitingBlock .btn {
        width: 29%;
        margin-left: 30px;
    }
    .waitingBlock .card {
        width: 130px;
        height: 183px;
    }
    .waitingBlock .ml-6 {
        margin-left: 49px;
    }
    .waitingBlock .img img {
        margin-left: 20px;
    }
    .card-selection-wrapper .btn {
        width: 17%;
    }
    .select-btn {
        text-align: center;
        margin-top: 1.3rem;
        margin-bottom: 1rem;
    }
    .select-btn .btn {
        width: 24%;
    }
}

@media (max-width:750px) {
    .inventory-card .card .card-body .buttons .small-btn {
        font-size: 12px;
        width: calc(55% - 15px) !important;
    }
    .inventory-card {
        margin-left: 0;
    }
    .marketPlace-section .inventory-card {
        margin-left: 0;
    }
    .inventory-card .card {
        height: 100%;
        /* margin: 10; */
    }
    .inventory-section .search-input {
        margin: auto;
    }
    .inventory-card .col-md-4 {
        margin-bottom: 10px;
    }
    .back-btn {
        margin-top: 0;
    }
    .details-section .ship-info,
    .details-section .card {
        width: 100%;
        margin-top: 1rem;
    }
    .card-selection-wrapper .waitingBlock .d-none {
        display: block !important;
    }
    .dNone {
        display: none;
    }
    .waitingBlock .img img {
        margin-left: auto;
    }
    .waitingBlock .btn {
        width: 100%;
        margin: auto;
    }
    .waitingBlock .w-70 {
        width: 180px;
    }
    /* .waitingBlock .card-container{
        flex-direction: column;
    } */
    .waitingBlock .card-container .card-1:not(:first-child) {
        margin-top: 10px;
    }
    .card-selection-wrapper .card {
        margin-top: 10px;
    }
    .card-selection-wrapper .btn {
        width: 30%;
    }
    .map-wrapper .markLocation img {
        width: 15px;
        height: 18px;
    }
    .map-wrapper .markLocation {
        top: 116px;
        left: 92px;
    }
    .map-wrapper .markLocation:nth-child(2) {
        top: 191px;
        left: 130px;
    }
    .map-wrapper .markLocation:nth-child(3) {
        top: 32%;
        left: 49%;
    }
    .map-wrapper .markLocation:nth-child(4) {
        top: 176px;
        left: 50%;
    }
    .map-wrapper .markLocation:nth-child(5) {
        top: 114px;
        left: 327px;
    }
    .map-wrapper .markLocation:nth-child(6) {
        top: 232px;
        right: 93px;
        display: inline-block;
        width: 100px;
        margin-left: auto;
    }
}

@media (max-width:530px) {
    .map-wrapper .markLocation:nth-child(5) {
        top: 114px;
        left: 307px;
    }
    .map-wrapper .markLocation:nth-child(6) {
        top: 228px;
        right: 87px;
    }
    .content .txtBlock h1,
    h2 {
        font-size: 19px;
    }
    .content .txtBlock h2 {
        font-size: 16px;
    }
}

@media only screen and (max-width: 476px) {
    #ual-modal-selection-content {
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
        transform: translate(0, 0) !important;
    }
    #ual-modal {
        position: relative !important;
    }
    #ual-authenticators-list {
        flex-direction: column !important;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
    }
    #ual-modal #ual-modal-selection-content .ual-auth-button {
        width: 100% !important;
        height: 64px !important;
    }
    #ual-modal #ual-modal-selection-content .ual-auth-icon-wrapper {
        padding: 13px 10px 8px 10px;
    }
    .ual-auth-button {
        align-items: center;
    }
    .btn-wrapper {
        width: 82% !important;
        flex-direction: column;
        margin: 0 auto !important;
    }
}

@media (max-width:425px) {
    .nav-menu {
        flex-direction: column;
    }
    /* #ual-modal-selection-content {
        height: 0 !important;
        left: 28%;
    }
    #ual-authenticators-list {
        flex-direction: column;
    } */
    .home-section .section {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .home-section {
        margin: auto !important;
    }
    .card-selection-wrapper .btn {
        width: 36%;
    }
    .card-selection-wrapper .card {
        margin: 10px auto;
    }
    .select-btn .btn {
        width: 42%;
    }
    .home-section .home-content .inventory-page {
        margin: 10px auto !important;
    }
    .lostSailor-logo {
        width: 345px;
    }
    .inventory-section .inventory-card {
        margin-left: 0;
    }
    .inventory-card .col-md-4 {
        margin-bottom: 10px;
    }
    .inventory-section .search-input {
        margin: auto;
    }
    .inventory-card .card {
        margin: 20px 0 0;
        height: 100%;
    }
    .details-section .card {
        width: 100%;
    }
    .details-section .ship-info {
        width: 100%;
        margin-top: 1rem;
    }
    .inventory-section .inventory-card .card .card-body .buttons .small-btn {
        font-size: 12px;
        width: calc(55% - 15px) !important;
    }
    .leaderBoard-wrapper .leaderBoard-title {
        padding: 2px 11px;
        font-size: 25px;
    }
    .leaderBoard-wrapper .leaderBoard-content {
        flex-direction: column;
    }
    .leaderBoard-wrapper .leaderBoard-info {
        width: 150px;
        height: 45px;
        margin-top: 10px;
    }
    .leaderBoard-wrapper .scroll {
        height: 100%;
    }
    .leaderBoard-wrapper .leaderBoard-reward {
        margin-right: 0;
    }
    .back-btn {
        margin-top: 0;
    }
    .card-selection-wrapper .waitingBlock .d-none {
        display: block !important;
    }
    .dNone {
        display: none;
    }
    .waitingBlock .img img {
        margin-left: auto;
    }
    .waitingBlock .btn {
        width: 100%;
        margin: auto;
    }
    .waitingBlock .w-70 {
        width: 180px;
    }
    .waitingBlock .card-container {
        flex-direction: column;
    }
    .waitingBlock .card-container .card-1:not(:first-child) {
        margin-top: 10px;
    }
    .modal-wrapper .modal-title {
        font-size: 1.4rem;
        margin: 10px 0;
    }
    .modal-wrapper .close-modal {
        font-size: 50px;
    }
    .modal-wrapper .mdScroll {
        height: 397px;
        overflow-y: scroll;
    }
    .modal-wrapper .mdScroll::-webkit-scrollbar {
        width: 4px;
    }
    .modal-wrapper .mdScroll::-webkit-scrollbar-thumb {
        background: transparent;
        height: 2px !important;
        border-radius: 20px;
    }
    .modal-wrapper .mdScroll:hover::-webkit-scrollbar-thumb {
        background: #766640;
    }
    .modal-wrapper .mdScroll::-webkit-scrollbar-thumb:hover {
        background: #7b61ff;
    }
    /* Handle on hover */
    .modal-wrapper .mdScroll::-webkit-scrollbar-thumb:hover {
        background: #555;
        border-right: none;
        border-left: none;
    }
    .modal-wrapper .mdScroll::-webkit-scrollbar-track-piece:end {
        background: transparent;
        margin-bottom: 22px;
    }
    .modal-wrapper .mdScroll::-webkit-scrollbar-track-piece:start {
        background: transparent;
        margin-top: 28px;
    }
}

@media (max-width: 320px) {
    .overlay {
        height: 120vh;
    }
    .ual-auth-button {
        width: 64% !important;
    }
    #ual-modal-selection-content {
        height: 0 !important;
        left: 100px;
    }
    .head-title {
        margin-top: 1.5rem;
    }
    .home-section .home-content {
        width: 100%;
        margin: 1rem auto;
    }
    .lostSailor-logo {
        width: 319px;
        margin: auto !important;
    }
    .home-section {
        margin: auto !important;
    }
    .home-section .home-content .inventory-page {
        margin: 10px auto !important;
    }
    .card-selection-wrapper .card-container {
        flex-direction: column;
    }
    .card-selection-wrapper .card-container .card-1 {
        margin-top: 10px;
    }
    .select-btn .btn {
        width: 56%;
    }
    .footer-section {
        position: fixed;
    }
}