.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 {
    background: black;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
    margin-left: 10px;
    margin-top: 6px;
    height: 8px;
    width: 8px;
    transform: scale(1);
    animation: pulse-black 2s infinite;
}

.blob.green {
    background: rgba(51, 217, 178, 1);
    box-shadow: 0 0 0 0 rgba(51, 217, 178, 1);
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(51, 217, 178, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(51, 217, 178, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(51, 217, 178, 0);
    }
}
