@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700;800;900&display=swap");

@import url("https://cdn.jsdelivr.net/gh/hung1001/font-awesome-pro@4cac1a6/css/all.css");

.montserrat {
    font-family: 'Montserrat', sans-serif;
    font-size: small;
}

img {
    pointer-events: none !important;
}

.icon-color {
    --fa-primary-color: #DB2F69;
    --fa-secondary-color: #F5F5F5;
    --fa-primary-opacity: 0.80;
    --fa-secondary-opacity: 0.80;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

a {
    color: #DB2F69 !important;
    text-decoration: none !important;
}

a.btn:hover {
    text-decoration: none !important;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

a:hover {
    text-decoration: none !important;
    color: #D84315;
}

#custom-loader {
    min-height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    position: fixed;
    bottom: 0;
    left: 0;
    top: 0;
    right: 0;
    z-index: 999999
}

#app-loader-bg {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 20vh;
    width: 80vw
}

@media(min-width:992px) {
    #app-loader-bg {
        height: 50vh;
        width: 50vw
    }
}

#app-loader-bg::before {
    content: "";
    background-image: url(/public/img/map-bg.png);
    background-size: cover;
    object-fit: fill;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: .15
}

.app-loader-child-one,
.app-loader-child-three,
.app-loader-child-five {
    display: inline-block;
    background: #DB2F69;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    margin: 0 5px;
    -webkit-animation: my-bounce .5s linear infinite;
    animation: my-bounce .5s linear infinite;
}

.app-loader-child-two,
.app-loader-child-four,
.app-loader-child-six {
    display: inline-block;
    border: 5px solid #DC4C7F;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    margin: 0 5px;
    -webkit-animation: my-bounce .8s linear infinite;
    animation: my-bounce .8s linear infinite;
}

@keyframes my-bounce {
    0%,
    20% {
        transform: scale(1, 1) translateX(0);
    }
    25% {
        transform: scale(.9, 1.1) translateX(20px);
    }
    30% {
        transform: scale(1.05, .95) translateX(0);
    }
    35% {
        transform: scale(1, 1) translateX(10px);
    }
    40% {
        transform: scale(1, 1) translateX(0);
    }
    50%,
    100% {
        transform: scale(1, 1) translateX(0);
    }
}

.full-page-containter {
    min-height: 85vh
}

.auth-bg {
    background: #f3f6fa;
}

.custom-nav-bg {
    background-color: #ffffff;
    box-shadow: 0 5px 10px rgba(100, 100, 100, 0.03);
    border-bottom: solid 3px #DB2F69;
}

.nav-img {
    border-radius: 100%;
    width: 35px;
    height: 35px;
}

#app-wrapper {
    display: flex;
    align-items: stretch;
    min-height: 100vh;
}

#app-sidebar {
    min-width: 55%;
    max-width: 55%;
    min-height: 100vh !important;
    max-height: 100vh !important;
    background-color: #4C4743;
    display: none;
    position: fixed;
    padding-bottom: 100px;
    overflow-x: scroll !important;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

#app-sidebar::-webkit-scrollbar {
    width: 0;
    height: 0;
}

@media (min-width: 768px) {
    #app-sidebar {
        min-width: 25%;
        max-width: 25%;
        display: block !important;
    }
    #app-content {
        margin-left: 25%;
        min-width: 75%;
        max-width: 75%;
    }
}

@media (min-width: 992px) {
    #app-sidebar {
        min-width: 25%;
        max-width: 25%;
        display: block !important;
    }
    #app-content {
        margin-left: 25%;
        min-width: 75%;
        max-width: 75%;
    }
}

#app-sidebar.active {
    display: block;
    position: fixed;
    min-height: 100vh;
    top: 0;
    left: 0;
    z-index: 9999;
}

#app-sidebar-overlay {
    display: none;
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 998;
    opacity: 0;
    transition: all 1.5s ease-in-out;
}

#app-sidebar-overlay.active {
    display: block;
    opacity: 1;
}

#app-content {
    width: 100%;
    min-height: 100vh;
    padding-bottom: 80px;
    background-color: #FAFAFE;
}

#app-header-nav {
    background-color: #fff;
    padding: 15px;
}

.sidebar-header {
    padding: 15px;
    color: #BDBDBD !important;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 4px;
    font-weight: 500;
}

.app-sidebar-links {
    margin-top: 30px;
}

.app-sidebar-link {
    padding: 15px;
    box-sizing: border-box;
    display: block;
    border-bottom: solid #433E3A 2px;
    color: #F5F5F5 !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    margin-top: 2px;
}

.app-sidebar-link:hover {
    text-decoration: none;
    margin-top: 2px;
    background-color: #433E3A;
    border-bottom: none !important;
    border-bottom: solid #433E3A 2px !important;
    text-decoration: none !important;
}

.app-sidebar-link:last-child {
    border-bottom: none !important;
}

.app-sidebar-link.active-link {
    border-right: solid 2px #DB2F69;
    background-color: #433E3A;
    border-bottom: none !important;
    color: #FBE9E7;
}

.sidebar-names {
    color: #f4f4f4;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: small;
}

.sidebar-sub {
    color: #f4f4f4;
    font-family: 'Montserrat', sans-serif;
    font-size: x-small;
}

.custom-container {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.custom-container-dark {
    background-color: #383E54;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.custom-container-bg {
    background-color: #FAFAFE;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.page-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: medium;
    color: #424242;
}

.content-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: small;
    color: #616161;
}

.content-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: small;
    color: #757575;
}

.mapbg {
    position: relative;
    min-height: 450px;
}

.mapbg table {
    z-index: 9999 !important;
}

.mapbg:before {
    content: "";
    display: block;
    background-image: url('../img/map-bg.png');
    background-size: cover;
    background-position: 50% 0;
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    opacity: 0.15;
    z-index: 1;
}

.btn-deposit {
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    color: #616161;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    border-radius: 0.25rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.copy-btn {
    height: calc(3.0rem + 2px);
    padding: 1rem 0.75rem;
}

.payment-container {
    border: solid #DB2F69 1px;
}

.btn-deposit:focus {
    outline: none;
    color: #212121;
    border: solid #DB2F69 1px;
}

.asterisk::before {
    content: "*";
    margin-right: 5px;
    color: red;
}

.mgname {
    font-family: 'Sonsie One', cursive;
}

.sidebar-currency {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: medium;
    color: #00E676;
}

.sidebar-currency-btc {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: medium;
    color: #FE413C !important;
}

.mgm {
            border-radius: 5px;
            position: fixed;
            z-index: 90;
            bottom: 25%;
            right: 30px;
            background: #fff;
            padding: 10px 27px;
            box-shadow: 0px 5px 13px 0px rgba(0, 0, 0, .3);
        }

        .mgm a {
            font-weight: 700;
            display: block;
            color: #2962FF;
        }

        .mgm a,
        .mgm a:active {
            transition: all .2s ease;
            color: #2962FF;
        }
        
.notification {
    padding: 10px;
    z-index: 9999999999;
    position: fixed;
    font-size: 12px;
    font-family: Verdana, sans-serif;
    display: none;
    border-style: solid;
}
.notification-block {
    position: relative;
    width: 100%;
    float: left;
    min-height: 1px;
    white-space: normal;
}
.notification-img,
.notification-text-block {
    float: left;
    min-height: 1px;
    white-space: normal;
    display: inline-block;
    vertical-align: middle;
}
.notification-img {
    height: 60px;
    width: 60px;
    text-align: center;
    font-size: 40px !important;
    line-height: 40px;
}
.notification-imgimg {
    width: 100%;
    height: auto;
}
.notification-text-block {
    width: 200px;
    padding-left: 10px;
    padding-right: 10px;
    line-height: 1.3;
}
.notification-title {
    font-weight: bold;
}
        
        
.goog-te-banner-frame.skiptranslate { display: none !important;} 
body { top: 0px !important; }
#goog-gt-tt {display: none !important; top: 0px !important; } 
.goog-tooltip skiptranslate{display: none !important; top: 0px !important; } 
.activity-root { display: hide !important;} 
.status-message { display: hide !important;}
.started-activity-container { display: hide !important;}

.animate {
  animation: blinker 2s linear infinite;
  }

  @keyframes blinker {
  80% {
    opacity: 0;
  }
  }