:root {
    /*live*/
    --background-color : #f3f4f9;
    --blinker-color : #5ad149;
    --blinker-shadow-color : #c0e6c0;

    --plans-primary-color : rgb(255, 231, 97);
}

*{
    box-sizing: border-box;
    direction: rtl;
}


@keyframes light {
    to {
        transform:  translate(-50% , -50%) scale(1.5);
    }
}

.live {
    width : 100%;
    height: 100px;
    background: var(--background-color);
    border-radius: 30px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.live__blinker {
    width: 10px;
    height: 10px;
    border-radius: 50px;
    background: var(--blinker-color);
  position: relative;
}
.live__blinker::before{
    position: absolute;
    transform: translate(-50% , -50%);
    left: 50%;
    top: 50%;
    width: 18px;
    content: "";
    height: 18px;
    opacity: 0.2;
    background: var(--blinker-color);
    animation: light infinite 0.5s;
    transform-origin: center;
    border-radius: 50px;
}

.live__logo {
    padding: 0 20px 0 50px;
}
.live__logo img{
    width: 75px;
    height: auto;
}


.live__info {
    border-right: 1px solid rgba(0,0,0,0.2);
    height: auto;
    display: flex;
    flex-direction: column;
    padding-right: 50px;
    flex: 1;
}
.live__info h2{
    font-size: 18px;
    margin: 0;
}
.live__info p{
    font-size: 16px;
    margin-top: 10px;
    margin-bottom: 0;
    color: #999;
}

.live__time{
    width: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 16px;
}
.live__time span{
    margin: 5px 0;
}


.plans{
    display: flex;
    flex-direction: column;
}

.plans__title { 
    position: relative;
    font-size: 20px;
    margin-bottom: 40px;
}
.plans__title::after { 
    content: "";
    width: 75px;
    height: 7px;
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 10px;
    background: var(--plans-primary-color);
}
.plans__content{
    display: flex;
    
}

.plans__content .plan {
    width: 350px;
    border-radius: 20px;
    margin: 10px;
    overflow: hidden;
    border: 2px solid #efefef;
    transition: 0.3s;
}
.plans__content .plan:hover header .more{
    opacity: 1;
}
.plans__content .plan:hover {
    background: #efefef;
}

.plans__content .plan header{ 
    border-radius: 20px 20px 0 0 ;
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 280px;
}

.plans__content .plan header img{ 
    width: 100%;
    height: 280px;
    position: absolute;
    top: 0;
    right: 0;
}

.plans__content .plan header .more{
    width: 100%;
    height: 100%;
    background: rgba(0,0,255,0.3);
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
    opacity: 0;
 }

 .plans__content .plan header .more .link{
     box-sizing: content-box;
     padding: 10px 20px;
     border-radius: 50px;
     background: var(--plans-primary-color);
     text-decoration: none;
     color: blue;
     box-shadow: 0 0 50px 5px  rgb(255, 231, 97, 0.5);
 }

 .plans__content .plan .content{ 
   padding: 20px;
}

.plans__content .plan .content h3{
    margin-top: 0;
} 

.plans__content .plan .content p{
    font-size: 14px;
}
