.mobile-menu {
    display: none;
}
@media screen and (max-width: 767px) {
    .mobile-menu {
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
    }
    .mobile-menu.opened svg .st0 {
        fill: #7d7d7d;
    }
    .sidebar-menu {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-in-out, margin-top .1s ease-out, opacity .4s ease-in;
        opacity: 0;
    }
    .sidebar-menu.visible {
        margin-top: 1rem;
    }
    .mobile-menu.opened ~ .sidebar-menu {
        max-height: 900px;
        opacity: 1;
    }
    .card .card-body{
        padding: 20px;
    }
    .mailbox-menu ul > li:not(:last-child){
        margin-bottom: 10px;
    }
    .mailbox-menu ul li a{
        padding: .75rem 1.5rem;
    }
}

.banner-container{
    display: flex;
    justify-content: center;
}
.banner-container .banner{
    position: relative;
    border: 1px solid #b9b9b9;
}
.banner-container .banner:hover .hover-element{
    display: block;
}
.banner-container .banner .hover-element{
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    padding: 0 1rem 2px 1rem;
    background: #b9b9b9;
    font-size: 14px;
    z-index: 100;
    border-bottom-left-radius: 5px;
}
.banner-container .banner .hover-element a{
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}
.banner-container .banner img{
    width: 100%;
    height: 100%;
}
.banner-container .banner .banner-image{
    width: 100%;
    height: 100%;
    /*overflow-x: auto;*/
}
.banner-container .banner-468{
    max-width: calc(468px + 4px);
    height: calc(60px + 4px);
}
.banner-container .banner-728{
    max-width: calc(728px + 4px);
    height: calc(90px + 4px);
}
@media (min-width: 489px) {
    .banner-container .banner.banner-468[data-position="2"]{
        display: none;
    }
}
@media (max-width: 488px) {
    .banner-container .banner.banner-728[data-position="1"]{
        display: none;
    }
}

.context-advertising{
    padding: 0.5rem;
    border-bottom: 1px solid #bdbdbd;
    border-top: 1px solid #bdbdbd;
    text-align: center;
}
.context-advertising a{
    color: #000;
    text-decoration: none;
}
.context-advertising a.active{
    color: goldenrod;
}
.context-advertising a:hover{
    text-decoration: underline;
}

.custom-modal{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
    background: rgba(33, 35, 49, 0.5);
    color: #838383;
}
.custom-modal .custom-modal-dialog{
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}
.custom-modal .custom-modal-content{
    background: #fff;
    margin: 2.5rem 1rem 0 1rem;
    padding: 1rem;
    border-radius: .5rem;
    opacity: 1;
    -webkit-box-shadow: 0px 0px 8px 0px rgba(34, 60, 80, 0.5);
    -moz-box-shadow: 0px 0px 8px 0px rgba(34, 60, 80, 0.5);
    box-shadow: 0px 0px 8px 0px rgba(34, 60, 80, 0.5);
}
.custom-modal .custom-modal-content > div:not(div:last-child){
    margin-bottom: 1rem;
}
.custom-modal .custom-modal-header{

}
.custom-modal .custom-modal-header .close-btn{
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    color: #838383;
    transition: color .1s ease-in-out;
}
.custom-modal .custom-modal-header .close-btn:hover{
    color: #ea5455;
    transition: color .1s ease-in-out;
}

.history-pay-method-img{
    width: 24px;
    height: 24px;
    margin-right: .3rem;
}
.history-pay-method-img img{
    width: 100%;
}
.history-sum{
    font-size: 14px;
    font-weight: 600;
}

.blob {
    position: absolute;
    background: black;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
    height: 8px;
    width: 8px;
    transform: scale(1);
    animation: pulse-black 2s infinite;
    right: -15px;
    top: 0;
}

.blob.green {
    background: rgb(255, 220, 96);
    box-shadow: 0 0 0 0 rgb(255, 220, 96);
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 220, 96, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(255, 220, 96, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 220, 96, 0);
    }
}

.online{
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.page-title{
    position: relative;
    margin-bottom: 1.5rem;
}
.page-title::before{
    content: "";
    position: absolute;
    bottom: -8px;
    height: 4px;
    width: 26px;
    background: #454545;
    left: 0;
    border-radius: 2px;
}

.guest-surfing-links{
    display: flex;
    flex-direction: column;
    gap: .5rem;
}
.guest-surfing-links div.item{
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 26px;
    box-shadow: -1px 1px 14px 0px rgba(73, 73, 73, 0.2);
    border: 1px solid #e1e1e1;
}

.chat-icon-right-side{
    position: fixed;
    bottom: 30px;
    right: 30px;
}
.chat-icon-right-side a{
    width: 56px;
    display: flex;
    height: 56px;
    background: #efefef;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0px 0px 6px -2px rgba(0, 0, 0, 1);
}
.chat-icon-right-side img{
    width: 36px;
}

.surfing-office .surfing-block{
    border: 1px solid #e6e6e6;
    border-radius: 10px;
 
}
.surfing-office .surfing-block .surfing-block-footer{
    font-size: 12px;
    background: #37373724;
    color: #4b4b4b !important;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}
.surfing-office .surfing-block .surfing-block-footer .item{
    text-align: center;
    white-space: nowrap;
    padding: .5rem;
}

.page-surfing .surfing-block{
    position: relative;
    border: 1px solid #e6e6e6;
    border-radius: 10px;
 
}
.page-surfing .surfing-block .banner{
    border: 1px solid #c3c3c3;
    max-width: calc(468px + 2px);
    max-height: calc(60px + 2px);
    border-radius: 8px;
}
.page-surfing .surfing-block .banner img{
    width: 100%;
    height: 100%;
    border-radius: 4px;
}
.page-surfing .surfing-block .surfing-block-footer{
    font-size: 12px;
    background: #37373724;
    color: #4b4b4b !important;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}
.page-surfing .surfing-block .surfing-block-footer .item{
    text-align: center;
    white-space: nowrap;
    padding: .5rem;
}
.page-surfing .surfing-block.highlight{
    background: #c7edff;
}
.page-surfing .surfing-block.vip{
    border: 1px solid #e9c616;
}
.page-surfing .surfing-block.vip::before{
    content: "VIP";
    position: absolute;
    top: 0;
    left: 0;
    background: #e9c616;
    color: #fff;
    padding: 0 1.25rem;
    font-size: 10px;
    font-family: sans-serif;
    border-top-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.bank-card {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 8px;
    padding: .75rem 1.25rem;
    cursor: pointer;
    box-shadow: 0px 0px 20px 0px rgb(0 0 0 / 8%);
    height: 100%;
    color: #686868;
    border: 1px solid transparent;
}
.bank-card .img{
    width: 34px;
}
.bank-card .img img{
    width: 100%;
    height: 100%;
}
.bank-card:hover{
    border: 1px solid #ffdc60;
    color: #eaaf3d;
}
.bank-card.active .name{
    color: #3d74ea !important;
}
.bank-card .preloader{
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 8px;
    background: #dfdfdf;
    opacity: .5;
}
.pay-system{
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 99;
    width: 24px;
    height: 24px;
    border-radius: 100%;
}
.pay-system img{
    height: 24px;
    width: 24px;
}

.payment-inputs .img,
.payout-inputs .img{
    width: 68px;
    background: #ececec;
    padding: .5rem;
    height: 68px;
    border-radius: 22px;
    border: 1px solid #d2d2d2;
    box-shadow: 0px 0px 4px 2px rgba(133, 133, 133, 0.3);
}