:root {
    --bg: #4c808e;
    --webinar: #ee3070;
}
.header {
    background-color: var(--bg);
    padding: 10px 0;
}
.footer {
    background-color: var(--bg);
    padding: 10px 0;
}
.webinar_list {
    font-weight: 600;
    list-style: none;
}

.webinar_list li {
    display: flex;

}
.webinar_list li:before {
    content: '\2013';
    margin-right: 20px;
    color: var(--webinar);
    margin-right: 10px;
}
.point {
    width: 10px;
    height: 10px;
    background-color: #b9ccd2;
    margin: 0 20px;
}


.other-block {
    width: 30%;
}
.other-title {
    color: var(--bg);
    font-family: aglet-sans, sans-serif;
    font-size: 1.4rem;
}
.other-block a {
    text-decoration: none;
}

.other-block a:hover .btn {
    opacity: .8;
}
.other.btn {
    color: white;
    padding: 10px auto;
    text-align: center;
    font-weight: 600;
    height: 42px;
    border-radius: 21px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to right ,#4d808f,#ee3070);

}
.other.btn .btn-txt {
    font-size: 0.8rem;
    line-height: normal;
}

/* COUNTDOWN */
#clockdiv{
    font-family: sans-serif;
    color: #fff;
    display: inline-block;
    font-weight: 100;
    text-align: center;
    font-size: 30px;
}

#clockdiv > div{
    padding: 10px;
    border-radius: 3px;
    background: var(--bg);
    display: inline-block;
}

#clockdiv div > span{
    padding: 15px;
    border-radius: 3px;
    background: #5fa2b6;
    display: inline-block;
    font-size: 2rem;
}

.smalltext{
    padding-top: 5px;
    font-size: 16px;
}


@media (max-width:767px) {
    #register-block {
        margin-bottom: 30px;
    }
    /*.body-content {*/
    /*    background-image: linear-gradient(to bottom, #f697b7, #ffffff);*/
    /*}*/
    .webinar_list {
        padding-left: 5px;
    }
    #mobile-head {
        background-color: var(--webinar);
    }
    /*#video-preview {*/
    /*    transform: translateY(-40px);*/
    /*}*/

    .other-block {
        width: 100%;
    }
    #clockdiv {
        font-size: 18px;
    }
    #clockdiv div > span{
        font-size: x-large;
        padding: 10px;
    }
}