@import url(https://fonts.googleapis.com/css?family=Roboto:400,100,100italic,300,300italic,400italic,500,500italic,700,700italic,900,900italic&subset=latin,cyrillic);
ul li {
    list-style: none;
}

ol {
    margin-left: 20px;
}

ol li {
    color: black;
}

.fabs {
    bottom: 0;
    position: fixed;
    margin: 1em;
    right: 0;
    z-index: 998;
}

.fab {
    display: block;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    text-align: center;
    color: #f0f0f0;
    margin: 25px auto 0;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.14), 0 4px 8px rgba(0, 0, 0, 0.28);
    cursor: pointer;
    -webkit-transition: all 0.1s ease-out;
    transition: all 0.1s ease-out;
    position: relative;
    z-index: 998;
    overflow: hidden;
    background: #42a5f5;
}

.fab > i {
    font-size: 2em;
    line-height: 55px;
    -webkit-transition: all 0.2s ease-out;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.fab:not(:last-child) {
    width: 0;
    height: 0;
    margin: 20px auto 0;
    opacity: 0;
    visibility: hidden;
    line-height: 40px;
}

.fab:not(:last-child) > i {
    font-size: 1.4em;
    line-height: 40px;
}

.fab:not(:last-child).is-visible {
    width: 40px;
    height: 40px;
    margin: 15px auto 10;
    opacity: 1;
    visibility: visible;
}

.fab:nth-last-child(1) {
    -webkit-transition-delay: 25ms;
    transition-delay: 25ms;
}

.fab:not(:last-child):nth-last-child(2) {
    -webkit-transition-delay: 20ms;
    transition-delay: 20ms;
}

.fab:not(:last-child):nth-last-child(3) {
    -webkit-transition-delay: 40ms;
    transition-delay: 40ms;
}

.fab:not(:last-child):nth-last-child(4) {
    -webkit-transition-delay: 60ms;
    transition-delay: 60ms;
}

.fab:not(:last-child):nth-last-child(5) {
    -webkit-transition-delay: 80ms;
    transition-delay: 80ms;
}

.fab(:last-child):active,
.fab(:last-child):focus,
.fab(:last-child):hover {
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.16), 0 6px 12px rgba(0, 0, 0, 0.32);
}
/*Chatbox*/

.chat {
    position: fixed;
    right: 25px;
    bottom: 90px;
    width: 400px;
    font-size: 12px;
    line-height: 22px;
    font-family: "Roboto";
    font-weight: 500;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
    opacity: 0;
    box-shadow: 1px 1px 100px 2px rgba(0, 0, 0, 0.22);
    border-radius: 10px;
    -webkit-transition: all 0.2s ease-out;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    visibility: collapse;
}

.chat_fullscreen {
    position: fixed;
    right: 0px;
    bottom: 0px;
    top: 0px;
}
.chat_header {
    /* margin: 10px; */
    font-size: 13px;
    font-family: "Roboto";
    font-weight: 500;
    color: #f3f3f3;
    height: 55px;
    background: #42a5f5;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    padding-top: 8px;
}
.chat_header2 {
    /* margin: 10px; */
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
}
.chat_header .span {
    float: right;
}

.chat_fullscreen_loader {
    display: none;
    float: right;
    cursor: pointer;
    /* margin: 10px; */
    font-size: 20px;
    opacity: 0.5;
    /* padding: 20px; */
    margin: -10px 10px;
}

.chat.is-visible {
    opacity: 1;
    -webkit-animation: zoomIn 0.2s cubic-bezier(0.42, 0, 0.58, 1);
    animation: zoomIn 0.2s cubic-bezier(0.42, 0, 0.58, 1);
    visibility: visible;
}
.is-hide {
    opacity: 0;
}

.chat_option {
    float: left;
    font-size: 15px;
    list-style: none;
    position: relative;
    height: 100%;
    width: 100%;
    text-align: relative;
    margin-right: 10px;
    letter-spacing: 0.5px;
    font-weight: 400;
}

.chat_option img {
    border-radius: 50%;
    width: 55px;
    float: left;
    margin: -30px 20px 10px 20px;
    border: 4px solid rgba(0, 0, 0, 0.21);
}

.change_img img {
    width: 35px;
    margin: 0px 20px 0px 20px;
}
.chat_option .agent {
    font-size: 12px;
    font-weight: 300;
}
.chat_option .online {
    opacity: 0.4;
    font-size: 11px;
    font-weight: 300;
}
.chat_color {
    display: block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin: 10px;
    float: left;
}

.chat_body {
    background: #fff;
    width: 100%;

    display: inline-block;
    text-align: center;
    overflow-y: auto;
}
#chat_body {
    height: 450px;
}
.chat_login p,
.chat_body li,
p,
a {
    -webkit-animation: zoomIn 0.5s cubic-bezier(0.42, 0, 0.58, 1);
    animation: zoomIn 0.5s cubic-bezier(0.42, 0, 0.58, 1);
}
.chat_body p {
    padding: 20px;
    color: #888;
}
.chat_body a {
    width: 10%;
    text-align: center;
    border: none;
    box-shadow: none;
    line-height: 40px;
    font-size: 15px;
}

.chat_field {
    position: relative;
    margin: 5px 0 5px 0;
    width: 50%;
    font-family: "Roboto";
    font-size: 12px;
    line-height: 30px;
    font-weight: 500;
    color: #4b4b4b;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
    border: none;
    outline: none;
    display: inline-block;
}

.chat_field.chat_message {
    height: 30px;
    resize: none;
    font-size: 13px;
    font-weight: 400;
}
.chat_category {
    text-align: left;
}

.chat_category {
    margin: 20px;
    background: rgba(0, 0, 0, 0.03);
    padding: 10px;
}

.chat_category ul li {
    width: 80%;
    height: 30px;
    background: #fff;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
    border-radius: 3px;
    border: 1px solid #e0e0e0;
    font-size: 13px;
    cursor: pointer;
    line-height: 30px;
    color: #888;
    text-align: center;
}

.chat_category li:hover {
    background: #83c76d;
    color: #fff;
}
.chat_category li.active {
    background: #83c76d;
    color: #fff;
}

.tags {
    margin: 20px;
    bottom: 0px;
    display: block;
    width: 120%;
}
.tags li {
    padding: 5px 10px;
    border-radius: 40px;
    border: 1px solid rgb(3, 117, 208);
    margin: 5px;
    display: inline-block;
    color: rgb(3, 117, 208);
    cursor: pointer;
}
.fab_field {
    width: 100%;
    display: inline-block;
    text-align: center;
    background: #fff;
    border-top: 1px solid #eee;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}
.fab_field2 {
    bottom: 0px;
    position: absolute;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
    z-index: 999;
}

.fab_field a {
    display: inline-block;
    text-align: center;
}

#fab_camera {
    float: left;
    background: rgba(0, 0, 0, 0);
}

#fab_send {
    float: right;
    background: rgba(0, 0, 0, 0);
}

.fab_field .fab {
    width: 35px;
    height: 35px;
    box-shadow: none;
    margin: 5px;
}

.fab_field .fab > i {
    font-size: 1.6em;
    line-height: 35px;
    color: #bbb;
}
.fab_field .fab > i:hover {
    color: #42a5f5;
}
.chat_conversion {
}

.chat_converse {
    position: relative;
    background: #fff;
    margin: 6px 0 0px 0;
    height: 300px;
    min-height: 0;
    font-size: 12px;
    line-height: 18px;
    overflow-y: auto;
    width: 100%;
    float: right;
    padding-bottom: 100px;
}
.chat_converse2 {
    height: 100%;
    max-height: 800px;
}
.chat_list {
    opacity: 0;
    visibility: hidden;
    height: 0;
}

.chat_list .chat_list_item {
    opacity: 0;
    visibility: hidden;
}

.chat .chat_converse .chat_msg_item {
    position: relative;
    margin: 8px 0 15px 0;
    padding: 8px 10px;
    max-width: 60%;
    display: block;
    word-wrap: break-word;
    border-radius: 3px;
    -webkit-animation: zoomIn 0.5s cubic-bezier(0.42, 0, 0.58, 1);
    animation: zoomIn 0.5s cubic-bezier(0.42, 0, 0.58, 1);
    clear: both;
    z-index: 999;
}
.status {
    margin: 45px -50px 0 0;
    float: right;
    font-size: 11px;
    opacity: 0.3;
}
.status2 {
    margin: -10px 20px 0 0;
    float: right;
    display: block;
    font-size: 11px;
    opacity: 0.3;
}
.chat .chat_converse .chat_msg_item .chat_avatar {
    position: absolute;
    top: 0;
}

.chat .chat_converse .chat_msg_item.chat_msg_item_admin .chat_avatar {
    left: -52px;
    background: rgba(0, 0, 0, 0.03);
}

.chat .chat_converse .chat_msg_item.chat_msg_item_user .chat_avatar {
    right: -52px;
    background: rgba(0, 0, 0, 0.6);
}

.chat .chat_converse .chat_msg_item .chat_avatar,
.chat_avatar img {
    width: 40px;
    height: 40px;
    text-align: center;
    border-radius: 50%;
}

.chat .chat_converse .chat_msg_item.chat_msg_item_admin {
    margin-left: 60px;
    float: left;
    background: rgba(0, 0, 0, 0.03);
    color: #666;
}

.chat .chat_converse .chat_msg_item.chat_msg_item_user {
    margin-right: 20px;
    float: right;
    background: #42a5f5;
    color: #eceff1;
}

.chat .chat_converse .chat_msg_item.chat_msg_item_admin:before {
    content: "";
    position: absolute;
    top: 15px;
    left: -12px;
    z-index: 998;
    border: 6px solid transparent;
    border-right-color: rgba(255, 255, 255, 0.4);
}

.chat_form .get-notified label {
    color: #077ad6;
    font-weight: 600;
    font-size: 11px;
}

input {
    position: relative;
    font-family: "Roboto";
    font-size: 12px;
    line-height: 20px;
    font-weight: 500;
    color: #4b4b4b;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
    outline: none;
    background: #fff;
    display: inline-block;
    resize: none;
    padding: 5px;
    border-radius: 3px;
}
.chat_form .get-notified input {
    margin: 2px 0 0 0;
    border: 1px solid #83c76d;
}
.chat_form .get-notified i {
    background: #83c76d;
    width: 30px;
    height: 32px;
    font-size: 18px;
    color: #fff;
    line-height: 30px;
    font-weight: 600;
    text-align: center;
    margin: 2px 0 0 -30px;
    position: absolute;
    border-radius: 3px;
}
.chat_form .message_form {
    margin: 10px 0 0 0;
}
.chat_form .message_form input {
    margin: 5px 0 5px 0;
    border: 1px solid #e0e0e0;
}
.chat_form .message_form textarea {
    margin: 5px 0 5px 0;
    border: 1px solid #e0e0e0;
    position: relative;
    width: 90%;
    font-family: "Roboto";
    font-size: 12px;
    line-height: 20px;
    font-weight: 500;
    color: #4b4b4b;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
    outline: none;
    background: #fff;
    display: inline-block;
    resize: none;
    padding: 5px;
    border-radius: 3px;
}
.chat_form .message_form button {
    margin: 5px 0 5px 0;
    border: 1px solid #e0e0e0;
    position: relative;
    width: 95%;
    font-family: "Roboto";
    font-size: 12px;
    line-height: 20px;
    font-weight: 500;
    color: #fff;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
    outline: none;
    background: #fff;
    display: inline-block;
    resize: none;
    padding: 5px;
    border-radius: 3px;
    background: #83c76d;
    cursor: pointer;
}
strong.chat_time {
    padding: 0 1px 1px 0;
    font-weight: 500;
    font-size: 8px;
    display: block;
}

/*Chatbox scrollbar*/

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    border-radius: 0;
}

::-webkit-scrollbar-thumb {
    margin: 2px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.2);
}
/*Element state*/

.is-active {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
}

.is-float {
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.16), 0 6px 12px rgba(0, 0, 0, 0.32);
}

.is-loading {
    display: block;
    -webkit-animation: load 1s cubic-bezier(0, 0.99, 1, 0.6) infinite;
    animation: load 1s cubic-bezier(0, 0.99, 1, 0.6) infinite;
}
/*Animation*/

@-webkit-keyframes zoomIn {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 0;
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes zoomIn {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 0;
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}

@-webkit-keyframes load {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 0;
    }
    50% {
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

@keyframes load {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 0;
    }
    50% {
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}
/* SMARTPHONES PORTRAIT */

@media only screen and (min-width: 300px) {
    .chat {
        width: 250px;
    }
}
/* SMARTPHONES LANDSCAPE */

@media only screen and (min-width: 480px) {
    .chat {
        width: 300px;
    }
    .chat_field {
        width: 65%;
    }
}
/* TABLETS PORTRAIT */

@media only screen and (min-width: 768px) {
    .chat {
        width: 300px;
    }
    .chat_field {
        width: 65%;
    }
}
/* TABLET LANDSCAPE / DESKTOP */

@media only screen and (min-width: 1024px) {
    .chat {
        width: 300px;
    }
    .chat_field {
        width: 65%;
    }
}
/*Color Options*/

.blue .fab {
    background: #42a5f5;
    color: #fff;
}

.blue .chat {
    background: #42a5f5;
    color: #999;
}

/* Ripple */

.ink {
    display: block;
    position: absolute;
    background: rgba(38, 50, 56, 0.4);
    border-radius: 100%;
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    webkit-transform: scale(0);
    -webkit-transform: scale(0);
    transform: scale(0);
}
/*animation effect*/

.ink.animate {
    -webkit-animation: ripple 0.5s ease-in-out;
    animation: ripple 0.5s ease-in-out;
}

@-webkit-keyframes ripple {
    /*scale the element to 250% to safely cover the entire link and fade it out*/

    100% {
        opacity: 0;
        -moz-transform: scale(5);
        -ms-transform: scale(5);
        webkit-transform: scale(5);
        -webkit-transform: scale(5);
        transform: scale(5);
    }
}

@keyframes ripple {
    /*scale the element to 250% to safely cover the entire link and fade it out*/

    100% {
        opacity: 0;
        -moz-transform: scale(5);
        -ms-transform: scale(5);
        webkit-transform: scale(5);
        -webkit-transform: scale(5);
        transform: scale(5);
    }
}
::-webkit-input-placeholder {
    /* Chrome */
    color: #bbb;
}
:-ms-input-placeholder {
    /* IE 10+ */
    color: #bbb;
}
::-moz-placeholder {
    /* Firefox 19+ */
    color: #bbb;
}
:-moz-placeholder {
    /* Firefox 4 - 18 */
    color: #bbb;
}

/* Home style */

.tab-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.tab-button {
    border-radius: 0;
    width: 100%;
    padding: 10px;
    text-transform: uppercase;
}

.tab-button:first-child {
    border-radius: 5px 0 0 5px;
}

.tab-button:last-child {
    border-radius: 0 5px 5px 0;
}
.menubar {
    display: flex;
    justify-content: space-between;
    border-radius: 5px;
    overflow-x: auto;
    width: 100%;
    line-height: 1.25;
    background: linear-gradient(100deg, #21409a 50%, #007cbd 100%);
}

.live-next-title {
    display: flex;
    justify-content: space-between;
    border-radius: 5px;
    overflow-x: auto;
    width: 100%;
    line-height: 1.25;
    background: linear-gradient(100deg, #007cbd 50%, #21409a 100%);
    color: white;
    padding: 10px;
    text-transform: uppercase;
    font-size: 0.85em;
}

.menu-item {
    color: white;
    padding: 10px;
    text-transform: uppercase;
    width: 100%;
    text-align: center;
    font-size: 0.85em;
    min-width: max-content;
}

.menu-item:first-child {
    border-radius: 5px 0 0 5px;
}

.menu-item:last-child {
    border-radius: 0 5px 5px 0;
}

.menu-active {
    background-color: #333;
    color: white;
}

.menu-item:hover {
    background-color: #a6d7fc;
    color: black;
}

.live {
    background-color: #f03a47;
    color: #fee9e9;
    max-width: 50px;
}

.live:hover {
    color: red;
    background-color: #fee9e9;
}

.tabcontentinfo {
    font-size: smaller;
    padding: 0 !important;
}

.btn-login {
    width: 100%;
    padding: 10px !important;
    border-radius: 5px !important;
    text-transform: uppercase;
}

.modal {
    background-color: rgba(19, 19, 19, 0.8);
}

.modal-dialog {
    -webkit-transform: translate(0, 0) !important;
    transform: translate(0, 0) !important;
}

/* Login Modal */

button.tablinks {
    font-size: 8pt;
    margin: 10px 0;
    width: 100%;
    border-radius: 0px;
}

button.tablinks:first-child {
    border-radius: 10px 0 0 10px;
}

button.tablinks:last-child {
    border-radius: 0 10px 10px 0;
}

button.tablinks.active {
    background-color: #444;
}

.mySlides {
    display: block !important;
    width: 100%;
}
.mySlides > img {
    vertical-align: middle;
    object-fit: cover;
    border-radius: 0 0 0.5rem 0.5rem;
    height: 350px;
}

.mySlides > .slide-title {
    color: white;
    margin-left: 85px;
    margin-bottom: 20px;
}

/* Slideshow container */
.slideshow-container {
    height: 425px;
    background: linear-gradient(100deg, #21409a 50%, #007cbd 100%);
    max-width: 1000px;
    position: relative;
    margin: auto;
    border-radius: 0.5rem;
    overflow: hidden;
}

/* Number text (1/3 etc) */
.slideshow-container > .numbertext {
    position: absolute;
    color: #ffffff;
    background: #ff0000;
    font-size: 18px;
    border-radius: 4px;
    text-transform: uppercase;
    max-width: 350px;
    padding: 8px 20px 4px 24px;
    box-shadow: 4px 8px 18px 0px rgba(0, 0, 0, 0.5);
    transform: skewX(-15deg);
    left: -8px;
    top: -3px;
}

.slideshow-container figure {
    width: 500%;
    display: flex;
    flex-direction: row;
    transition-duration: 500ms;
  }
  .slideshow-container figure a {
    width: 20%;
  }

/* Caption text */
.mySlides > .text {
    background: linear-gradient(100deg, #21409a 50%, #007cbd 100%);
    color: #f2f2f2;
    padding: 8px 12px;
    position: absolute;
    bottom: 0px;
    border-radius: 0 0 0.5rem 0.5rem;
    width: 100%;
    text-align: left;
    font-weight: bold;
}

/* Fading animation */
.fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
}

@-webkit-keyframes fade {
    from {
        opacity: 0.4;
    }
    to {
        opacity: 1;
    }
}

@keyframes fade {
    from {
        opacity: 0.4;
    }
    to {
        opacity: 1;
    }
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 500px) {
    .mySlides > .text {
        font-size: 11px;
    }
}

/* table saham */
.display td:not(:first-child) {
    text-align: right;
}

.slide-list {
    display: flex;
    justify-content: space-between;
    gap: 5px;
    margin: 10px 0 4rem 0;
}

.slide-list .slide-image {
    object-fit: cover;
    border-radius: 0.5rem;
    border: 1px solid cornflowerblue;
    cursor: pointer;
    height: 100%;
}

.slide-list .slide-title {
    font-size: 0.65em;
}

.slide-image-container {
    height: 80px;
}

.slide-list .slide-image:hover {
    transform: scale(1.1);
}

/* Live Page */
.live-container .video-wrapper {
    position: relative;
    margin-top: 1em;
    padding-bottom: 56.25%;
    background: linear-gradient(100deg, #21409a 50%, #1653a5 100%);
}

.live-container .video-wrapper > iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.live-container ul {
    margin-top: 1em;
}

.live-container ul li {
    color: #000;
}

.list-group-item {

    color: #184fa3;;
}

.live-container .list-group .list-group-item {
    border: 0;
}

.recent {
    display: flex;
    margin: 1rem 0;
}

.recent .recent-image {
    width: 25%;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 1px 2px 18px -9px rgba(0, 0, 0, 0.36);
    -webkit-box-shadow: 1px 2px 18px -9px rgba(0, 0, 0, 0.36);
    -moz-box-shadow: 1px 2px 18px -9px rgba(0, 0, 0, 0.36);
}

.recent .recent-image img {
    transition: all 0.2s ease-in-out;
    cursor: pointer;
    height: 100%;
    object-fit: cover;
    transform: scale(1.5);
}

.recent .recent-image img:hover {
    transform: scale(2);
}

.recent .recent-data {
    width: 80%;
    padding: 1em;
}

.message-board {
    background-color: #a6d7fc;
    padding : 1em;
    border-radius: .5em;
}

.author-name {
    padding: 0 10px;
}

.cursor-pointer{
    cursor: pointer;
}

.float-video {
    width: 320px;
    height: 180px;
    position: sticky;
    bottom: 0;
    left: 0;
    background-color: #444;
    transition-duration: 1s;
    z-index: 5;
}

.float-video iframe {
    border: 0;
}

.float-video .btn-float-video {
    position: absolute;
    top:0;
    right:-40px;
    width: 40px;
    border-radius: 0 .5em .5em 0;

}

.float-video .btn-close-video {
    position: absolute;
    padding: 0;
    background: none;
    top: 5px;
    right: 5px;
}

.float-video .btn-close-video:hover {
    color: red;
}

.float-video.hide {
    width: 0;
}

.flip-icon {
    transform: rotate(180deg)!important;
    border-radius: .5em 0 0 .5em!important;
}

.berita-pagination button{
    border-radius: 100px;
    font-size: .85em;
}

.berita-pagination button.active {
    background-color: rgb(42, 50, 54);
}

.profile-image {
    padding: 10px 0px;
    max-height: 200px;
    object-fit: cover;
}

.berita-image-container {
    overflow: hidden;
    border-radius: 15px;
    border: 1px solid #3fa6d9;
}

.news-ticker-header {
    color:  #42a5f5;
    border: 2px solid #125baa;
  padding: 0 4px;
  border-radius: .5em 0 0 0;
  border-bottom: 0;
  box-shadow: 9px 9px 18px #c3c3c3, -9px -9px 18px #fdfdfd;
}

.news-ticker {
    border: 2px solid #125baa;
    border-radius: 0 0 0.5em 0;
    overflow: hidden;
    border-top: 0;
    max-height: 300px;
    position: relative;
}
.news-container {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 10px;
    position: absolute;
    bottom: 0;
    padding: 0 .5em ;
}

.news-group {
    border-top: 2px solid #42a5f5;
    padding-top: 10px;
}

/** Homepage video list **/

.home-video {
    display: flex;
    flex-direction: column;
    gap: .5em;
}

.home-video-container {
    border-radius: .5em;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    transition-duration: .5s;
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}

.home-video-image {
    border-radius: .5em;
    overflow: hidden;
    width: 80px;
    height: 45px;
    transition-duration: .5s;
}

.home-video-image img {
    object-fit: cover;
}

.home-video-detail {
    transition: .5s;
    width: calc( 100% - 80px );
    display: flex;
}

.home-video-detail h4 {
    width: 100%;
    padding: .25em;
    margin: auto 0;
    max-height: 80px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.home-video-container:hover {
    z-index: 100;
    flex-direction: column;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

.home-video-container:hover .home-video-image {
    width: 100%;
    height: 150px;
}

.home-video-container:hover .home-video-detail {
    text-align: center;
    width: 0px;
    overflow: hidden;
    height: 0px;
}


/** Homepage video list **/
