*{
    box-sizing: border-box;
}

* { padding: 0; margin: 0; }
html, body, #fullheight {
    min-height: 100% !important;
    height: 100%;
}
body {
    
    background: #000;
    min-height: 100vh;

}
a {
    text-decoration: none;
    color: #000;
}
span {
    text-decoration: none;
    color: #000;
}

html{
    font-family: "SF Pro Text", "SF Pro Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}

.window {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding-left: 15px;
    padding-right: 15px;
}

.popup1 {
    display: none;
    width: 100%;
    padding: 30px 20px 15px 20px;
    background: #F7F7F7;
    border-radius: 16px;
    font-size: 17px;
    line-height: 155%;
    z-index: 2;
    cursor: pointer;
}

.popup1__title {
    margin-bottom: 16px;
}

.popup1__text {
    margin-bottom: 16px;
}

.popup1__close {
    text-align: right;
    color: #007AFF;
}


.popup2{
    display: none;
    max-width: 270px;
    padding: 20px 15px;
    background: #F7F7F7;
    border-radius: 16px;
    font-size: 17px;
    line-height: 18px;
    text-align: center;
    padding-bottom: 0;
    z-index: 2;
    cursor: pointer;

}
.popup2.active{
    display: block;
    position: absolute;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
}
.popup2__title{
    font-weight: 600;
    /* margin-bottom: 5px; */
    font-size: 17px;
    line-height: 155%;
}
.popup2__text{
    margin-bottom: 20px;
    line-height: 155%;
    font-size: 14px;
}
.popup2__close{
   height: 44px;
   display: flex;
   align-items: center;
   justify-content: center;
   border-top: 1px solid #00000021; 
   font-size: 17px;
   font-weight: 600;
   color: #007AFF;
   margin-left: -16px;
   margin-right: -16px;
}


.palyer{
    width: 100%;
    height: 100%;
    padding: 36px 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    z-index: 1;
    
}
.palyer.active{ 
    display: flex;
}
.player__topControls{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    opacity: 0.8;
}


.player__middleControls{
    width: 230px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    opacity: 0.8;
}

.nextBtn{
    width: 28px;
}

.playBtn{
    height: 40px;
}


.player__bottomControls{
    width: 100%;
}
.player__underline{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    opacity: 0.8;
}
.player__underline img:first-child{
    margin-right: 10px;
}

.player__progressWrap{
    height: 6px;
    border-radius: 3px;
    background-color: #ffffff33;
    margin-top: 16px;
}
.player__progressBar{
    height: 6px;
    border-radius: 3px;
    width: 0%;
    background-color: #ffffff33;

}

.player__counters{
    color: #fff;
    opacity: 0.8;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 11px;
    padding: 0px 5px;
}


.offerLink{
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 99999;
}


.customVideoWrap {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
}

.customVideoWrap video {
    width: 100%;
    min-width: 100%;
}

.player__topControls img:first-child{
    width: 20px;
}
.player__topControls img:last-child{
    width: 34px;
}
.hide{
    display: none !important;
}