@media screen and (-webkit-min-device-pixel-ratio:0) { 
    input#input_search_bar {
      font-size: 16px;
    }
}

/* CLOSED CAPTIONS */
.jw-svg-icon-cc-off path {
	display: none;
}

.jw-svg-icon-cc-off {
	background-image: url("https://img.rtvslo.si/_static/novi/bootstrap/public/themes/dostopno/icon-podnapisi.svg");
	background-size: contain;
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: 1px;
}

.jw-icon-cc-off:hover .jw-svg-icon-cc-off {
	background-color: #656565;
}

.jw-svg-icon-cc-on path {
	display: none;
}

.jw-svg-icon-cc-on {
	background-image: url("https://img.rtvslo.si/_static/novi/bootstrap/public/themes/dostopno/icon-podnapisi.svg");
	background-size: contain;
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: 1px;
    filter: brightness(0.4) sepia(1) hue-rotate(90deg) saturate(5);
}



.jw-state-error,
.jwplayer.jw-state-error{
    position: absolute!important;
}

.jwplayer .jw-icon.jw-icon-inline.jw-icon-rewind{
    display: none;
}

.jwplayer .jw-icon.jw-icon-inline.jw-button-color.jw-reset.jw-settings-sharing{
    display: none;
}

.jw-flag-audio-player .jw-controlbar .jw-icon-inline.jw-button-custom-ff,
.jw-flag-audio-player .jw-controlbar .jw-icon-inline.jw-button-custom-bb
 {
    display: flex; 
    flex: 0 0 auto;
    background-size: 44px;
    background-position: 0px;
}

.jwplayer .jw-controlbar .jw-icon-inline.jw-button-custom-ff
{
    background-size: 30px;
    background-position: 5px;
    background-image: url('https://img.rtvslo.si/_static/r20201903/novi/img/control_icons/icons-forward.png');
    background-repeat: no-repeat;

}

.jwplayer .jw-controlbar .jw-icon-inline.jw-button-custom-bb{
    background-image: url('https://img.rtvslo.si/_static/r20201903/novi/img/control_icons/icons-replay.png');
    background-repeat: no-repeat;
    background-size: 30px;
    background-position: 5px;
}




.jwplayer.jw-flag-audio-player .jw-preview{
    display: block;
    background-size: 100%!important;
}

body.live4d-playing-now .jw-time-tip.jw-reset{
    background-color: #fff;
    border-radius: 1px;
    color: #000;
    font-size: 10px;
    height: auto;
    line-height: 1;
    padding: 7px 10px;
    display: inline-block;
    min-width: 100%;
    vertical-align: middle;
}

    
body.live4d-playing-now .jw-time-tip::after{
    display:none!important;
}

.jw-sharing-link {
    text-transform: none!important;
}
.pure-material-button-contained {
    position: relative;
    display: inline-block;
    box-sizing: border-box;
    border: none;
    border-radius: 4px;
    padding: 0 16px;
    min-width: 64px;
    height: 36px;
    vertical-align: middle;
    text-align: center;
    text-overflow: ellipsis;
    text-transform: uppercase;
    color: rgb(var(--pure-material-onprimary-rgb, 255, 255, 255));
    background-color: rgb(var(--pure-material-primary-rgb, 33, 150, 243));
    box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
    font-family: var(--pure-material-font, "Roboto", "Segoe UI", BlinkMacSystemFont, system-ui, -apple-system);
    font-size: 14px;
    font-weight: 500;
    line-height: 36px;
    overflow: hidden;
    outline: none;
    cursor: pointer;
    transition: box-shadow 0.2s;
}

.pure-material-button-contained::-moz-focus-inner {
    border: none;
}


/* Overlay */

.pure-material-button-contained::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgb(var(--pure-material-onprimary-rgb, 255, 255, 255));
    opacity: 0;
    transition: opacity 0.2s;
}


/* Ripple */

.pure-material-button-contained::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    border-radius: 50%;
    padding: 50%;
    width: 32px;
    /* Safari */
    height: 32px;
    /* Safari */
    background-color: rgb(var(--pure-material-onprimary-rgb, 255, 255, 255));
    opacity: 0;
    transform: translate(-50%, -50%) scale(1);
    transition: opacity 1s, transform 0.5s;
}


/* Hover, Focus */

.pure-material-button-contained:hover,
.pure-material-button-contained:focus {
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
}

.pure-material-button-contained:hover::before {
    opacity: 0.08;
}

.pure-material-button-contained:focus::before {
    opacity: 0.24;
}

.pure-material-button-contained:hover:focus::before {
    opacity: 0.3;
}


/* Active */

.pure-material-button-contained:active {
    box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12);
}

.pure-material-button-contained:active::after {
    opacity: 0.32;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0s;
}


/* Disabled */

.pure-material-button-contained:disabled {
    color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.38);
    background-color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.12);
    box-shadow: none;
    cursor: initial;
}

.pure-material-button-contained:disabled::before {
    opacity: 0;
}

.pure-material-button-contained:disabled::after {
    opacity: 0;
}

.md-checkbox {
    position: relative;
    margin: 1em 0;
    text-align: left;
}

.md-checkbox.md-checkbox-inline {
    display: inline-block;
}

.md-checkbox label {
    cursor: pointer;
    display: inline;
    line-height: 1.25em;
    vertical-align: top;
    clear: both;
    padding-left: 1px;
}

.md-checkbox label:not(:empty) {
    padding-left: 1em;
    letter-spacing: 0.3px;
}

.md-checkbox label:before,
.md-checkbox label:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
}

.md-checkbox label:before {
    width: 1.25em;
    height: 1.25em;
    background: #fff;
    border: 2px solid rgba(0, 0, 0, 0.54);
    border-radius: 0.125em;
    cursor: pointer;
    transition: background .3s;
}

.md-checkbox input[type="checkbox"] {
    outline: 0;
    visibility: hidden;
    width: 1.25em;
    margin: 0;
    display: block;
    float: left;
    font-size: inherit;
}

.md-checkbox input[type="checkbox"]:checked+label:before {
    background: #337ab7;
    border: none;
}

.md-checkbox input[type="checkbox"]:checked+label:after {
    transform: translate(0.25em, 0.3365384615em) rotate(-45deg);
    width: 0.75em;
    height: 0.375em;
    border: 0.125em solid #fff;
    border-top-style: none;
    border-right-style: none;
}

.md-checkbox input[type="checkbox"]:disabled+label:before {
    border-color: rgba(0, 0, 0, 0.26);
}

.md-checkbox input[type="checkbox"]:disabled:checked+label:before {
    background: rgba(0, 0, 0, 0.26);
}

/**
#rtv4d_popup .sign_lang{
    position: relative;
    left: 15px;
}

#rtv4d_popup .sign_lang .sign-on::before {
    position: absolute;
    top: 10px;
    left: -15px;
    content: " ";
    width: 7px;
    height: 7px;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: #54aa00;
    -moz-box-shadow: 1px 1px 1px 0px rgba(255, 255, 255, 0.25);
    -webkit-box-shadow: 1px 1px 1px 0px rgba(255, 255, 255, 0.25);
    box-shadow: 1px 1px 1px 0px rgba(255, 255, 255, 0.25);
}

#rtv4d_popup .sign_lang .sign-off::before {
    position: absolute;
    top: 10px;
    left: -15px;
    content: " ";
    width: 7px;
    height: 7px;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: red;
    -moz-box-shadow: 1px 1px 1px 0px rgba(255, 255, 255, 0.25);
    -webkit-box-shadow: 1px 1px 1px 0px rgba(255, 255, 255, 0.25);
    box-shadow: 1px 1px 1px 0px rgba(255, 255, 255, 0.25);
}
*/

#rtv4d_popup input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #333;
    opacity: 1; /* Firefox */
  }

#rtv4d_popup .onoffswitch {
    position: absolute;
    width: 31px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    right: 110px;
    top: 14px;
} 

#rtv4d_popup .login_btn_link {
    width: 30px;
    height: 30px;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg version='1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23212121' d='M477 512H35l155-219c-51-25-88-78-88-139C102 70 172 0 256 0s154 70 154 154c0 61-37 114-88 139l155 219z'/%3E%3C/svg%3E"); 
    background-color: #5e5e5e;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 50%;
    background-size: 47%;
    position: absolute;
    top: 15px;
    right: 61px;
    cursor: pointer;
}

#rtv4d_popup .onoffswitch-checkbox {
    display: none;
}

#rtv4d_popup .onoffswitch-label {
    display: block;
    overflow: hidden;
    cursor: pointer;
    border-radius: 50px;
    border-radius: 50px;
}
#rtv4d_popup .onoffswitch-inner {
    display: block; width: 200%; margin-left: -100%;
    transition: margin 0.3s ease-in 0s;
}
#rtv4d_popup .onoffswitch-inner:before, .onoffswitch-inner:after {
    display: block;
    float: left;
    width: 50%;
    height: 31px;
    font-size: 0.875rem;
    padding: 0;
    line-height: 31px;
    color: white;
    font-weight: 100;
    box-sizing: border-box;
}
#rtv4d_popup .onoffswitch-inner:before {
    content: "";
    padding-left: 0px;
    background-color: #569d1d;
    color: #fff;
    padding-right: 15px;
}
#rtv4d_popup .onoffswitch-inner:after {
    content: "";
    padding-right: 12px;
    background-color: rgb(94, 94, 94);
    color: #bbb;
    text-align: right;
}
#rtv4d_popup .onoffswitch-switch {
    display: block;
    width: 12px;
    /* margin: 11px; */
    /* background: #666; */
    position: absolute;
    top: 1px;
    bottom: 0px;
    right: 4px;
    height: 16px;
    /* border-radius: 50px; */
    transition: all 0.3s ease-in 0s;
    background-size: 12px 16px;
    margin: 7px;
  
}
#rtv4d_popup .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner {
    margin-left: 0;
}
#rtv4d_popup .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch {
    right: 4px;
  
    top: 1px;
}

.mmc-player-modal .tingle-modal-box {
    background-color: #282828;
    color: white;
    max-width: 450px;
}

.mmc-player-modal .tingle-modal-box__content {
    padding: 0rem 1rem;
}

.mmc-player-modal .tingle-modal-box__content .title {
    box-shadow: 0 3px 4px -1px rgba(0, 0, 0, .2);
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.8rem;
    padding: 0.75rem 1rem;
}

.mmc-player-modal .tingle-modal-box__content .list-items {
    padding: 1rem 1rem;
}

.mmc-player-modal .tingle-modal__closeIcon {
    float: right;
    font-size: 3rem;
}

.mmc-player-modal .tingle-modal__close {
    background: none;
}

.mmc-player-modal .tingle-modal-box__footer {
    background-color: #282828;
    padding: 0.5rem 1rem 0;
}

.mmc-player-modal .form-create-item .submit {
    float: right;
}

.mmc-player-modal .form-create-item .input-create {
    border: none;
    background-color: #282828;
    color: #eee;
    border-bottom: 1px solid rgba(136, 136, 136, 1);
    line-height: 2.2rem;
}

.mmc-player-modal input,
.mmc-player-modal button {
    outline: none;
}

.mmc-player-modal .tingle-modal-box__footer button {
    background-color: #282828;
    margin: 0;
    outline: none;
}

.jw-slider-vertical .jw-progress {
    background: #ff0046;
    background: -webkit-linear-gradient(top, #008fff, purple, #fb3626, #ffb900) !important;
    /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(top, #008fff, purple, #fb3626, #ffb900) !important;
    /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(top, #008fff, purple, #fb3626, #ffb900) !important;
    /* For Firefox 3.6 to 15 */
    background: linear-gradient(to top, #008fff, purple, #fb3626, #ffb900) !important;
    /* Standard syntax (must be last) */
}

.jw-progress {
    background: #ff0046;
    background: -webkit-linear-gradient(right, #008fff, purple, #fb3626, #ffb900) !important;
    /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(right, #008fff, purple, #fb3626, #ffb900) !important;
    /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(right, #008fff, purple, #fb3626, #ffb900) !important;
    /* For Firefox 3.6 to 15 */
    background: linear-gradient(to right, #008fff, purple, #fb3626, #ffb900) !important;
    /* Standard syntax (must be last) */
}

.jw-svg-icon-play path {
    display: none;
}

.jw-svg-icon-play {
    background-image: url('https://img.rtvslo.si/_static/r1/rtv4d/app/img/playButtonActive.png');
    background-size: contain;
    background-repeat: no-repeat;
}


/* The snackbar - position it at the bottom and in the middle of the screen */

#snackbar4dplayer {
    visibility: hidden;
    /* Hidden by default. Visible on click */
    min-width: 250px;
    /* Set a default minimum width */
    margin-left: -125px;
    /* Divide value of min-width by 2 */
    background-color: #333;
    /* Black background color */
    color: #fff;
    /* White text color */
    text-align: center;
    /* Centered text */
    border-radius: 2px;
    /* Rounded borders */
    padding: 16px;
    /* Padding */
    position: fixed;
    /* Sit on top of the screen */
    z-index: 9999999999999999;
    /* Add a z-index if needed */
    left: 50%;
    /* Center the snackbar */
    bottom: 30px;
    /* 30px from the bottom */
}


/* Show the snackbar when clicking on a button (class added with JavaScript) */

#snackbar4dplayer.show {
    visibility: visible;
    /* Show the snackbar */
    /* Add animation: Take 0.5 seconds to fade in and out the snackbar. 
   However, delay the fade out process for 2.5 seconds */
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}


/* Animations to fade the snackbar in and out */

@-webkit-keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }
    to {
        bottom: 30px;
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }
    to {
        bottom: 30px;
        opacity: 1;
    }
}

@-webkit-keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }
    to {
        bottom: 0;
        opacity: 0;
    }
}

@keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }
    to {
        bottom: 0;
        opacity: 0;
    }
}

#rtv4d_popup {
    font-family: "Open Sans", -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    max-height: 100vh;
    overflow-y: auto;
}




#rtv4d_popup ::-webkit-scrollbar {
    width: 6px;
    background-color: #333;
}

#rtv4d_popup ::-webkit-scrollbar-thumb {
    background-color: #4B4B4B;
}

#rtv4d_popup .logo {
    width: 29px;
    height: 37px;
    margin: 5px 5px 5px 10px;
    background-image: url(https://img.rtvslo.si/_static/r1/rtv4d/img/logo_4d.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 29px;
    display: block;
    float: left;
}

#rtv4d_popup .input_search_bar {
    margin-top: 9px;
    outline: 0;
    -webkit-appearance: textfield;
    font-family: inherit;
    background-color: #5e5e5e;
    opacity: 1;
    line-height: 21px;
    border: none;
    padding: 5px 30px 5px 15px;
    width: 240px;
    border-radius:1rem;
    transition: all .3s;
    color: #333;
    border: none;
}

#rtv4d_popup .input_search_bar:focus {
    background-color: #adadad;
}

#rtv4d_popup .input_search_bar_container {
   
    position: relative;
    float: right;
    right: 160px;
}



#rtv4d_popup .input_search_bar_container .input_search_bar_icon {
    position: absolute;
     right: 6px;
    bottom: 3px;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23212121' d='M497.664 428.032l-128-128c-9.216-9.216-21.504-14.336-33.792-14.336 48.128-71.68 39.936-168.96-22.528-232.448-71.68-71.68-188.416-71.68-259.072 0-71.68 71.68-71.68 188.416 0 259.072 62.464 62.464 160.768 70.656 232.448 22.528 0 12.288 5.12 24.576 14.336 33.792l128 128c19.456 19.456 50.176 19.456 69.632 0 18.432-18.432 18.432-50.176-1.024-68.608zM273.408 273.408c-49.152 49.152-130.048 49.152-179.2 0-50.176-50.176-50.176-130.048-1.024-180.224 49.152-49.152 130.048-49.152 179.2 0 50.176 50.176 50.176 130.048 1.024 180.224z'/%3E%3C/svg%3E");
    width: 17px;
    height: 17px;
    background-size: 17px 17px;
    padding: 13px;
    background-repeat: no-repeat;
    background-position: 50% 50%;
  
   
}

#rtv4d_popup .input_search_bar_container.opened .input_search_bar_icon{
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABmJLR0QA/wD/AP+gvaeTAAADA0lEQVRoge2YW09UVxSAv3XmHCSYqrUZhRpFaxo1aU2MVyrgGYpDKBbpm+k/6Js/wR/Qtzb+Bn3yBgojAoWxt7QvTR/qFZUoKKkmGgidOecsH4ZJxkmjzmaPvuzvdWavtb+srLPX3uBwOBwOh8PhcLwBMVn0qK9zl0hy2i/Kt+mRqVkbG5nLZlfrqsWzKN+3DOYnal3vmSQViX8EwijQ3Nw3X2wwiVHJfP/hD7RhcRilD/hBT9W+LyMRYu8E8BfwmRa9n+Z7OlqM4lCqRJTIJaAdeOApx+UUSa1xjERarkzNF5QQ+BPYGQU6Pt9/+ONa48xls6u1YXEIOAI8EPHCjUP5uyZ7MqsI0DqUf1ZQjlKS2RElMlaLTJXEfREvbL40OW26H6Nmr+R+X/uHDcJVYC9w0/c0k754/dHr1pQae+EyKp2UJDIrkQALIrAsAzmEfcDNiLhr8+AvD//vv//2HlxTSAUjwCEsSYAlEXhVRuFWTJyplqmXBKygR6ppHco/Wwr8oyh/CHyaIjU+c6xtU/n3p93daysl8P0V9UQ11ipSZnogXNdYjK6WK5PEfldT0X/xX+PSMBUSLecn7tnMa10EYKanbb0feKMge0Bugz4FDiDcSTwvs+nC5IztnHURgeXKRHEOdD8AqvcIgoztSpSx1iPvm7qIzPS0rW+MimOlasht4HdEthJHow+Pd26uR07rItMD4TrfT42A7FG4FRGFq5Yas8CvKNu9OJmaHQi32s5rtUded5bU8wwBixWpPt2rD8SPrvz2XApN3YhOAq2qyfjc153bbOW3N6K85bxVjzkL7A+NN3xPu95qaKwa39/r0GgiUca2jLHIbG9HmpSOAruBG35RMrXe35dlBoGQ0u0w804vVrO9HWl8vUZJ4h8TCYDmXG5BCk3HgAlgSyKMP+5r/8RkT2ZfrVRyBuVz4G8JkiMreUlpzuUWfE/7gTwlmQvv7PFBktRJ0DEJki+bz/38xCRGJemL11/4nn6FMKzCdyaPDw6Hw+FwOBwOxxt5CZGzXMtZRO7zAAAAAElFTkSuQmCC);
    position: absolute;
    right: -1px;
    bottom: 0px;
    width: 12px;
    height: 12px;
    background-size: 20px 20px;
    /* background-size: 19px 19px; */
    /* background-size: 19px 19px; */
    /* filter: brightness(1.3); */
    background-position: 6px 6px;
    background-color: #555;
    border-radius: 50%;
    padding: 16px;
    
}



#rtv4d_popup .input_search_bar_container .input_search_bar_icon img {
    width: 16px;
}

#rtv4d_popup .mmc-player-header {
    background-color: #232323;
    position: relative;
    box-shadow: 0 3px 4px -1px rgba(0, 0, 0, .2);
    padding: 5px;
}

#rtv4d_popup .mmc-player-header .inner-wrapper{
    width: 100%;
}

#rtv4d_popup .mmc-player-header.row {
    margin-right: -15px;
    margin-left: -15px;
}

#rtv4d_popup .showName {
    position: absolute;
    top: 15px;
    left: 88px;
    color: #bbb;
    font-size: 1.1rem;
    padding-left: 15px;
    font-weight: 500;
}

#rtv4d_popup .showDate {
    position: absolute;
    top: 25px;
    left: 100px;
    color: #bbb;
    font-size: 0.875rem;
    font-weight: 100;
    padding-left: 10px;
}

#rtv4d_popup .content .titleLink {
    color: white;
    font-size: 1.2rem;
    display: inline-block;
    font-weight: 600;
    line-height: 1.5rem;
    padding-right: 52px;
    padding-bottom: 0;
    letter-spacing: 0px;
    width: 100%;
    padding-bottom: 6px;
}

#rtv4d_popup #sub_content {
    position: relative;
}

#rtv4d_popup #sub_content .subtitle{
    color:#bbb;
    font-size:0.875rem;
    padding: 3px 0px 2px;
}

#rtv4d_popup #sub_content .subtitle-link
{
    color:#2793E6;
    font-size:0.875rem;
    cursor: pointer;
    font-weight: 600;  
}


#rtv4d_popup .content .dateLink {
    color: #aaa;
    font-size: 1rem;
}

#rtv4d_popup .live .two.columns {
    display: none;
}

#rtv4d_popup .live .showName {
    display: none;
}

#rtv4d_popup .live .showDate {
    display: none;
}

#rtv4d_popup .live .dd-container {
    width: 200px;
    position: absolute;
    right: 112px;
    top: -2px;
    /* margin-left: 101px*/
}

#rtv4d_popup .live .mdl-selectfield:after {
    display: none;
}

#rtv4d_popup ul.video-list-4d.iz-oddaj .hide {
    display: none;
   
}


/* Larger than mobile */

@media (min-width: 400px) {}


/* Larger than phablet (also point when grid becomes active) */

@media (min-width: 550px) {}


/* Larger than tablet */

@media (min-width: 900px) {
    #rtv4d_popup .jw-logo {
        width: 90px;
        height: 48px;
    }
    #rtv4d_popup .live .showName {
        display: block;
    }
    #rtv4d_popup .live .showDate {
        display: block;
    }
    #rtv4d_popup .live .two.columns {
        display: block;
    }
    #rtv4d_popup ul.video-list-4d {
        list-style-type: none;
        margin: 0;
        padding: 0;
        /* overflow-y: auto; */
        /* position: fixed; */
        /* display: flex; */
        /* flex-direction: column; */
        padding-left:0px;
       
    }

    #rtv4d_popup ul.video-list-4d.search{
        padding-left:20px;
    }

    #rtv4d_popup .video-list-4d.search li {
        margin-bottom: 0px;
    }
    #rtv4d_popup .video-list-4d .list-show-more-link {
        text-align: center;
    }
    #rtv4d_popup .video-list-4d .list-show-more-link a {
        color: #2793E6;
        font-size: 0.875rem;
    }
    #rtv4d_popup span.search_date {
        font-size: 0.875rem;
        line-height: 1.1rem;
    }
   
}


/* Larger than desktop */

@media (min-width: 1000px) {
    #rtv4d_popup .content .titleLink {
        padding-right: 52px;
    }
    
}


/* Larger than Desktop HD */

@media (min-width: 1200px) {}


/* ==========  Select Field Variables ========== */


/* ==========  Select Field ========== */


/* Style Select Field */

#rtv4d_popup select#mmc-player-select {
    font-family: inherit;
    background-color: transparent;
    /* width: 100%; */
    padding: 4px 0;
    margin-left: 0px;
    margin-bottom: 5px;
    font-size: 1rem;
    font-weight: 400;
    color: #eee;
    border: none;
    border-bottom: 2px solid hsl(206.1, 79.3%, 52.7%);
}

#rtv4d_popup select#mmc-player-select option {
    background-color: #333;
}


/* Remove focus */

#rtv4d_popup select#mmc-player-select:focus {
    outline: none;
}


/* Use custom arrow */

#rtv4d_popup .mdl-selectfield select#mmc-player-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 158px;
}

#rtv4d_popup .mdl-selectfield {
    position: relative;
}

#rtv4d_popup .mdl-selectfield:after {
    position: absolute;
    top: 10px;
    right: 0.75em;
    left: 140px;
    width: 15px;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAYAAACM/rhtAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAFbSURBVFhH7ZYtTMNQFIVLSEjAoCYQOHAoHHZ2CoFG4/FFItamvyRz6GKxWBSoySkQE1MzIyEhlHOTQ7K8PaDd+rOQ+yXHtPedc5KX3tRRFEVRFEUpTBAEp1EUXbcpdDhknUUGg8Euhp6gvA2FYdhnlZ/BUAfDQ/NwA7rJ83yDNX7H9/09FB1ZTOrSbeFy36Rpuo+DL4ZRHbrLsmyTseVIkuQABmPDsDLhlu5d191i3HLgqzqC2cQ0X1Uo9+B53jZjViOO42MYTm1Bywhej9gYO7SvBpQ8gfHMFlhG8HiWdUbbakFAF3qbDyypIQp2aFcPCOlB73OhhYRiI1lftKkXXPcZAj9sRWzC7KusLR5vBnzd5wj+tBUyNJZ1xWPNgoIXf5ScyJrieDug4KWlmFzrVNYTx9oFZa6McjNZS3y9HqBUnwVlDXX5eH2QvxGUDFGux0eKoijK/8dxvgC25mxmJry3MQAAAABJRU5ErkJggg==');
    padding: 0;
    content: '';
    border: none;
    pointer-events: none;
    height: 15px;
    background-size: 15px;
}

#rtv4d_popup .right_column_list {
    padding-right: 10px;
}

#rtv4d_popup .right_column_list .content_second_video_list_btn,
#rtv4d_popup .more-content-button,
#rtv4d_popup .more-content-button-moje  {
    display:none; 
    color: #bbb; 
    text-align: center; 
    line-height: 1.2rem;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 10px;
    padding-bottom: 20px;
}

#rtv4d_popup .right-column{
    color: #fff;
    font-weight: 600;
    text-align: left;
    padding-top: 8px;
    padding-bottom: 6px;
    border-bottom: 1px solid #333;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

#rtv4d_popup .right-column .subtitle-link{
    color: #2793E6;
    cursor: pointer;
   
}

#rtv4d_popup .right-column .dot{
    padding: 0 3px;
   
}




#rtv4d_popup .right_column_list_moje {
  
    display: none;
    /* padding-right: 10px; */
    /* display: none; */
    /* background-color: red; */
    text-align: left;
    /* padding-top: 10px; */
    padding-left: 0px;
}



#rtv4d_popup ul.video-list-4d li {
    margin: 0;
    width: 100%;
    padding-top: 6px;
}

#rtv4d_popup ul.video-list-4d.live {
    margin-top: 5px;
}

#rtv4d_popup ul.video-list-4d.live li {
    border-bottom: 1px solid #333;
    min-height: auto;
}

#rtv4d_popup ul.video-list-4d.live li a,
#rtv4d_popup ul.video-list-4d.live li strong {
    color: #eee;
}

#rtv4d_popup ul.video-list-4d.live li span {
    color: #fff;
}

#rtv4d_popup .video-list-4d li {
    padding: 0px;
    display: inline-block;
    margin-bottom: 10px;
    position: relative;
    text-align: left;
}

_:-ms-fullscreen, :root #rtv4d_popup .video-list-4d li {
    min-height: 100px;
}

#rtv4d_popup .video-list-4d.live li {
    margin-bottom: 2px;
    font-size: 0.875rem;
    line-height: 1.15rem;
    padding: 5px 5px;
    margin-bottom: 2px;
    font-size: 0.875rem;
}

#rtv4d_popup .video-list-4d li .img-container {
    flex: 51;
}

#rtv4d_popup #filter-records .video-list-4d li .img-container {
    flex: 44;
}

#rtv4d_popup .video-list-4d li .img-container img {
    max-width: 100%;
}

#rtv4d_popup .video-list-4d li .img-container > div {
    position: relative;
}

#rtv4d_popup .video-list-4d li .title {
    flex: 43;
    overflow-wrap: break-word;
    white-space: pre-wrap;
    color: #fff;
    line-height: 1.1rem;
    font-size: 0.875rem;
    padding-left: 10px;
}

#rtv4d_popup .video-list-4d li .title > div {
    display: block;
    display: -webkit-box;
    max-width: 100%;
    max-height: 4.4rem;
    margin: 0 auto;
    font-size: 0.875rem;
    line-height: 1.2rem;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

#rtv4d_popup .video-list-4d li .title > div:hover {
    position: relative;
    max-height: none;
    display: block;
    -webkit-line-clamp: none;
    -webkit-box-orient: inline-axis;
    overflow: initial;
    text-overflow: clip;
}

#rtv4d_popup #filter-records .video-list-4d li .title {
    flex: 57;
}


#rtv4d_popup .video-list-4d.search li.list-show-more-link {
    background-color: #1E1E1E;
    margin: 5px -10px -10px -10px;
    padding-bottom: 10px;
    min-height: initial;
    display: block;
    text-align: center;
}

#rtv4d_popup .video-list-4d.search li.list-show-more-link .icon-arrow-right {
    background-image: url("https://img.rtvslo.si/_static/r1/novi/img/mmc_player_icons/ico-arrow.png");
    background-size: 13px;
    background-repeat: no-repeat;
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
    width: 20px;
    height: 20px;
    display: inline-block;
    position: relative;
    top: 1px;
    left: 7px;
}

#rtv4d_popup .video-list-4d.search li:hover {
    background-color: #151515;
}

#rtv4d_popup .video-list-4d.search li:last-child {
    border: none;
}

#rtv4d_popup .filter-records .search-results-text {
    border: none;
    /* text-align: left; */
    color: #bbb;
    padding: 10px 3px 3px 20px;
    font-size: 0.875rem;
    float: left;
    font-weight: 100;
}

#rtv4d_popup .video-list-4d li .length {
    position: absolute;
    bottom: 0;
    left: 0;
    display: inline-block;
    background: rgba(0, 0, 0, 0.7);
    padding: 0px 3px 1px;
    font-size: 0.875rem;
    color: white;
}

#rtv4d_popup .video-list-4d li .icons {
    position: absolute;
    height: 19px;
    bottom: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
}

#rtv4d_popup .video-list-4d li .geo {
    position: relative;
    width: 24px;
    height: 19px;
    display: inline-block;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 19px;
    background-image: url('https://img.rtvslo.si/_static/r1/novi/img/mmc_player_icons/slovenia.svg');
    fill: #fff;
}

#rtv4d_popup .video-list-4d li .subtitled {
    position: relative;
    width: 24px;
    height: 19px;
    display: inline-block;
    background-position: center;
    background-size: 15px;
    background-repeat: no-repeat;
    background-image: url('https://img.rtvslo.si/_static/r1/novi/img/mmc_player_icons/ear.svg');
    
}

#rtv4d_popup .video-list-4d li:hover {
    cursor: pointer;
}

#rtv4d_popup .d4-button-group {
    margin-top: 5px;
    /* text-align: center; */
    display: inline-block;
    background-repeat: no-repeat;
    padding-top: 0px;
    font-size: 0.875rem;
    /* background-position-x: 17px; */
    color: #bbb;
    line-height: 1.2rem;
    padding-left: 22px;
    background-size: 17px;
    padding-top: 2px;
    font-weight: 400;
    letter-spacing: .007px;
    text-transform: uppercase;
    background-position-y: 2px;
}

.advanced_toolbar_actions {
    padding: 5px 0px 5px 5px;
    box-shadow: 0 3px 4px -1px rgba(0, 0, 0, .2);
    background-color: #1E1E1E;
}

.advanced_toolbar_actions .button-group {
    margin-top: 10px;
    display: inline-block;
    background-repeat: no-repeat;
    padding-top: 0px;
    font-size: 0.875rem;
    color: #777;
    padding: 3px 0px;
    border-bottom: 2px solid transparent;
    line-height: 1.2rem;
    margin-right: 30px;
    background-size: 17px;
    margin-top: 2px;
    /* letter-spacing: .007px; */
    text-transform: uppercase;
    cursor: pointer;
}

.advanced_toolbar_actions #recommend_button {
    margin-left: 10px;
    background-position: 2px center;
}

.advanced_toolbar_actions #recommend_button div {
    display: inline-block;
}


.advanced_toolbar_actions .odprti_kop {
    float: right;
    margin-right: 18px;
}

.advanced_toolbar_actions .button-group:hover {
    border-bottom: 2px solid #2793E6;
}

.advanced_toolbar_actions .copy {
    background-image: url('https://img.rtvslo.si/_static/r1/novi/img/mmc_player_icons/ico-povezava.png');
    background-position: 2px 5px;
    padding-left: 28px;
    
}

.advanced_toolbar_actions .sign_lang {
   
    padding-left: 25px;
    float: right;
   
  
}

.advanced_toolbar_actions .sign_lang .mobile_icon{
    position: relative;
}

.advanced_toolbar_actions .sign_lang.sign-on .mobile_icon::before {
    content: " ";
    background-image: url(https://img.rtvslo.si/_static/novi/bootstrap/public/themes/dostopno/icon-znakovni-jezik.svg);
    height: 33px;
    width: 33px;
    position: absolute;
    background-position: 0px;
    background-size: 19px;
    filter: brightness(0.4) sepia(1) hue-rotate(90deg) saturate(5);
    background-repeat: no-repeat;
    left: -30px;
    top: -7px;
}

.advanced_toolbar_actions .sign-off {
    background-image: url('https://img.rtvslo.si/_static/novi/bootstrap/public/themes/dostopno/icon-znakovni-jezik.svg');
    padding-left: 31px;
    float: right;
    background-position: 0px;
    background-size: 19px; 
    filter:brightness(.5);
}

.advanced_toolbar_actions .sign-off span{
    filter:brightness(2);
}



.advanced_toolbar_actions .odprti_kop {
    background-image: url('https://img.rtvslo.si/_static/r1/novi/img/mmc_player_icons/ico-podnapisi-1.png');
    background-position: 2px 5px;
    padding-left: 38px;
    background-size: 22px;
}

.advanced_toolbar_actions .moje {
    background-position: 2px 5px;
    padding-left: 24px;
    background-size: 12px;
}

.advanced_toolbar_actions #rss-button {
    background-image: url('https://img.rtvslo.si/_static/r1/novi/img/mmc_player_icons/rss-solid2.svg');
    background-repeat: no-repeat;
    background-position: 2px 5px;
    padding-left: 28px;
    background-size: 14px;
    color: #656565;
    text-decoration: none;
    position: relative;
}
.advanced_toolbar_actions #rss-button div {
    display: none;
}

.advanced_toolbar_actions {
    text-align: left;
}

#rtv4d_popup #show_description_txt {
    font-size: 0.875rem;
    line-height: 1.35rem;
    color: #bbb;
    margin-top: 0px;
    padding: 0px 0px 5px 0;
    cursor: pointer;
  
    padding-top: 5px;
    /* padding-right: 5px; */
    margin-right: 15px;
}

#rtv4d_popup #show_description_txt.clamp {
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 6;
}



#rtv4d_popup .external_link {
    color: #2793E6;
    font-size: 0.875rem;
    padding: 3px 0 5px;
}

#rtv4d_popup .mega-menu {
    display: flex;
    width: 100%;
    margin: 0;
    height: 70px;
    flex-direction: row;
    overflow: hidden;
    overflow-x: auto;
}

#rtv4d_popup .mega-menu li.mega-menu-column {
    padding: 4px 12px 10px 12px;
}

#rtv4d_popup ul.mega-menu {
    list-style: none;
    padding: 0;
}

#rtv4d_popup .mega-menu li {
    float: left;
}

#rtv4d_popup .content {
    padding: 10px 0px 20px 15px;
    position: relative;
    text-align: left;
    background-color: #232323;
    overflow: hidden;
    overflow-y: auto
}

#rtv4d_popup .content .subtitle{
    color: #bbb;
}

.mega-menu li.mega-menu-column a {
    display: block;
    height: 49px;
    width: 40px;
    background-size: 40px 49px;
}

.mega-menu li.mega-menu-column a.tvs1 {
    background-image: url('https://img.rtvslo.si/_static/r1/rtv4d/app/img/logo_tvslo1.png');
}

.mega-menu li.mega-menu-column a.tvs2 {
    background-image: url('https://img.rtvslo.si/_static/r1/rtv4d/app/img/logo_tvslo2.png');
}

.mega-menu li.mega-menu-column a.tvs3 {
    background-image: url('https://img.rtvslo.si/_static/r1/rtv4d/app/img/logo_tvslo3.png');
}

.mega-menu li.mega-menu-column a.tvkp {
    background-image: url('https://img.rtvslo.si/_static/r1/rtv4d/app/img/logo_tvkp.png');
}

.mega-menu li.mega-menu-column a.tvmb {
    background-image: url('https://img.rtvslo.si/_static/r1/rtv4d/app/img/logo_tvmb.png');
}

.mega-menu li.mega-menu-column a.tvmmc {
    background-image: url('https://img.rtvslo.si/_static/r1/rtv4d/app/img/logo_tvmmc.png');
}

.mega-menu li.mega-menu-column a.sport202 {
    background-image: url('https://img.rtvslo.si/_static/r1/rtv4d/app/img/202sport_small.png');
    background-size: 40px 40px;
    background-repeat: no-repeat;
    margin-top: 9px;
    margin-bottom: -9px;
}

.mega-menu li.mega-menu-column a.ra1 {
    background-image: url('https://img.rtvslo.si/_static/r1/rtv4d/app/img/logo_raslo1_70x70_1.png');
    background-size: 40px 40px;
    background-repeat: no-repeat;
    margin-top: 9px;
    margin-bottom: -9px;
}

.mega-menu li.mega-menu-column a.val202 {
    background-image: url('https://img.rtvslo.si/_static/r1/rtv4d/app/img/logo_raval202_70x70_1.png');
    background-size: 40px 40px;
    background-repeat: no-repeat;
    margin-top: 9px;
    margin-bottom: -9px;
}

.mega-menu li.mega-menu-column a.ars {
    background-image: url('https://img.rtvslo.si/_static/r1/rtv4d/app/img/logo_raars_70x70_1.png');
    background-size: 40px 40px;
    background-repeat: no-repeat;
    margin-top: 9px;
    margin-bottom: -9px;
}

.mega-menu li.mega-menu-column a.rakp {
    background-image: url('https://img.rtvslo.si/_static/r1/rtv4d/app/img/logo_rakp_70x70_1.png');
    background-size: 40px 40px;
    background-repeat: no-repeat;
    margin-top: 9px;
    margin-bottom: -9px;
}

.mega-menu li.mega-menu-column a.rasi {
    background-image: url('https://img.rtvslo.si/_static/r1/rtv4d/app/img/logo_rasi_70x70_1.png');
    background-size: 40px 40px;
    background-repeat: no-repeat;
    margin-top: 9px;
    margin-bottom: -9px;
}

.mega-menu li.mega-menu-column a.ramb {
    background-image: url('https://img.rtvslo.si/_static/r1/rtv4d/app/img/logo_ramb_70x70_1.png');
    background-size: 40px 40px;
    background-repeat: no-repeat;
    margin-top: 9px;
    margin-bottom: -9px;
}

.mega-menu li.mega-menu-column a.capo {
    background-image: url('https://img.rtvslo.si/_static/r1/rtv4d/app/img/logo_racp_70x70_1.png');
    background-size: 40px 40px;
    background-repeat: no-repeat;
    margin-top: 9px;
    margin-bottom: -9px;
}

.mega-menu li.mega-menu-column a.rammr {
    background-image: url('https://img.rtvslo.si/_static/r1/rtv4d/app/img/logo_rammr_70x70_1.png');
    background-size: 40px 40px;
    background-repeat: no-repeat;
    margin-top: 9px;
    margin-bottom: -9px;
}

#rtv4d_popup .dd-option-image,
#rtv4d_popup .dd-selected-image {
    max-width: 30px;
}

#rtv4d_popup .dd-container{
   
    width: 100%!important;
 }

#rtv4d_popup .dd-select {
    background: transparent !important;
    border: none;
    color: #adadad;
    text-align: left;
    /* padding-top: 3px; */
    top: 12px;
    left: 51px;
    position: absolute;
}

#rtv4d_popup .dd-selected-text {
    line-height: 1.2rem !important;
    
    
}

#rtv4d_popup .dd-pointer-down {
    border: solid 5px transparent;
    border-top: solid 5px #adadad;
}

#rtv4d_popup .dd-selected {
    padding: 0;

}

#rtv4d_popup .dd-selected label{
    font-size: 0.875rem;
    margin-bottom: .2rem;
}

#rtv4d_popup .dd-options .dd-option-text {
    line-height: 1.2rem !important;
    font-size: 0.875rem;
    /* padding-top: 6px; */
    color: #ddd;
    font-weight: 600;
}

#rtv4d_popup .dd-options{
    border: none;
    border-top: none;
    list-style: none;
    box-shadow: none;
    display: none;
    position: absolute;
    z-index: 2000;
    margin: 0;
    padding: 0;
    background: #464a4c;
    overflow: auto;
    top: 0px;
    left: 0px;
    color: #fff;
    z-index: 99999999;
    width: 100%!important;

}

#rtv4d_popup .dd-options li{
    width: 25%;
    float: left;
}



#rtv4d_popup .dd-option{
    padding: 9px;
    border: none;
}



#rtv4d_popup .dd-options a:hover{
    background: #232323;
}


#rtv4d_popup .dd-option-selected {
    background: #232323;
    
}




#rtv4d_popup .player-main-content {
    padding: 0 15px;
    max-width: 1280px;
}

#rtv4d_popup .my_list_toogle {
    padding: 16px;
    position: absolute;
    top: 2px;
    right: 10px;
    width: 24px;
    height: 32px;
    background-image: url(https://img.rtvslo.si/_static/r1/novi/img/mmc_player_icons/ico-shrani-1.png);
    background-repeat: no-repeat;
    background-size: 12px 15px;
    background-position: 50% 50%;
    background-color: #333;
    border-radius: 50%;
    z-index: 99999;
}

#rtv4d_popup .my_list_toogle:hover {
    
    background-color: #444;
   
}

#rtv4d_popup .my_list_toogle.active {
    background-image: url('https://img.rtvslo.si/_static/r1/novi/img/mmc_player_icons/ico-shrani-2.png')
}


#rtv4d_popup .moje4 {
    text-transform: none;
    padding: 0;
    margin: 0;
    font-size: 0.875rem;
    font-weight: 100;
    text-transform: none;
}

#rtv4d_popup .close {
    background-image: url(https://img.rtvslo.si/_static/r1/novi/img/mmc_player_icons/ico-zapri.png);
    width: 45px;
    height: 45px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 19px;
    background-position: 6px 6px;
    top: 15px;
    right: 0px;
    filter: brightness(1.3);
}

#transcripts_odprti_kop.transcripts {
    height: 279px;
    background-color: #1E1E1E;
    padding-bottom: 10px
}

#transcripts_odprti_kop.transcripts span.search_button {
    color: #888;
    position: absolute;
    display: inline-block;
    right: 0;
    cursor: pointer;
    font-weight: 600;
    padding: 3px;
    text-transform: uppercase;
}

#transcripts_odprti_kop.transcripts .searchbox {
    margin: 0px 12px 10px;
    display: block;
    position: relative;
    padding-top: 6px;
    height: 35px;
}

#transcripts_odprti_kop.transcripts .searchbox input {
    height: 30px; 
   background-color: #5e5e5e;
    border: none;
    color: #bbb;
    padding: 1px 35px 1px 5px;
    position: absolute;
    left: 0;
    border-radius: 0.75rem;
    padding-left:10px;
    font-size: 0.875rem;
}

#transcripts_odprti_kop.transcripts .searchbox .input_search_bar_icon {
    position: absolute;
    left: calc(70% - 28px);
    bottom: 1px;
}

#transcripts_odprti_kop.transcripts .searchbox .input_search_bar_icon img {
    width: 16px;
}

#transcripts_odprti_kop.transcripts .searchbox .match {
    position: absolute;
    left: 215px;
    top: 12px;
    line-height: 20px;
    font-size: 14px;
    color: #eee;
}

#transcripts_odprti_kop.transcripts .transcript {
    padding: 0px 10px 20px 12px;
    max-height: 81%;
    overflow: hidden;
    overflow-y: auto;
    padding-bottom: 33px;
}

#transcripts_odprti_kop.transcripts .transcript p {
    font-size: 15px;
    overflow: hidden;
    text-align: left;
    color: #fff;
    line-height: 20px;
}

#transcripts_odprti_kop.transcripts .transcript span {
    display: block;
    padding: 3px 0px;
    line-height: 19px;
    cursor: pointer;
    color: #ddd;;
    font-weight: 100;
}

#transcripts_odprti_kop.transcripts .transcript span.current {
    background: #00f096;
    color: #000;
}

#transcripts_odprti_kop.transcripts .transcript span:hover {
    color: #00f096;
}

#transcripts_odprti_kop.transcripts .transcript span em {
    font-style: normal;
    background: #666;
    color: #FFF;
}

#transcripts_odprti_kop.transcripts .transcript span em.current {
    background: #ff0046;
}

#transcripts_odprti_kop.transcripts .transcript h4 {
    margin: 25px 0 15px 0;
    text-align: left;
    color: #fff;
    font-weight: bold;
}

#transcripts_odprti_kop.transcripts .caption-copy {
    max-width: 640px;
    margin: 20px auto;
    text-align: left;
    padding: 10px;
}

#transcripts_odprti_kop.transcripts .caption-copy div,
#transcripts_odprti_kop.transcripts .caption-copy ol,
#transcripts_odprti_kop.transcripts .caption-copy li {
    text-align: left;
    font-size: 20px;
}

#transcripts_odprti_kop.transcripts .caption-copy div {
    font-weight: 400;
    margin: 15px 0;
}

#transcripts_odprti_kop.transcripts .caption-copy ol {
    margin-left: 15px;
    margin-top: 20px;
}

#transcripts_odprti_kop.transcripts .caption-copy li {
    margin-bottom: 10px;
}

.jw-icon.interactive {
    opacity: 0.8;
}

#rtv4d_popup .mobile_inline {
    display: none;
}

#rtv4d_popup .filter-records {
    max-width: 355px;
    height: 600px;
    position: absolute;
    background-color: #232323;
    top: 57px;
    text-align: center;
    margin: 0 auto;
    z-index: 999999999;
    left: calc(100% - 355px);
    width: 100%;
    overflow: hidden;
    overflow-y: auto;
    display: none;
}

#rtv4d_popup .clear {
    clear: both;
}

#rtv4d_popup .mmc-player-sidebar .mdl-selectfield {
    text-align: left;
}

#rtv4d_popup .mmc-player-content {
    width: 100%;
    float: left;
    margin-left: -15px;
    background-color: #1E1E1E;
}

#rtv4d_popup .live .mmc-player-content {
    width: calc(100% + 30px);
}

#rtv4d_popup .mmc-player-content .dot{
  
    padding: 0 4px;
    font-weight: 600;
}

#rtv4d_popup .mmc-player-content .mycontent {
    margin-right: 325px;
}

#rtv4d_popup .player-main-content.live .mycontent {
    margin-right: 0px;
}

#rtv4d_popup .mmc-player-sidebar {
    background-color: #1E1E1E;
    position: absolute;
    right: 0px;
    overflow: hidden;
    overflow-y: auto;
    height: calc(100% - 57px);
    width:340px;
}

#rtv4d_popup .filter-records .more-content {
       
    padding: 3px 3px 10px 3px;
    color:#bbb;
    font-weight: 100;
    cursor: pointer;
   
}

#rtv4d_popup p.media-meta{
    font-weight: 600;
    margin-top: .2em;
    font-size: 0.875rem;
    line-height: 1.1rem;
    color: #fff;
    margin: 0;
    padding-right: 5px;
    letter-spacing: 0.3px;
}

#rtv4d_popup  #parent_show_recording .md-news .row{
    margin: 0;
    margin-left: -15px;
    background-color: #333;
    padding-top: 12px;
    padding-left: 5px
}

#rtv4d_popup p.media-meta.date{
    
    font-size: 0.875rem;
    padding-top: 3px;
    color: #bbb;
    font-weight: 100;
    
}

#rtv4d_popup p.media-meta.showname{
    
    font-size: 0.75rem;
    color: #bbb;
    
}

#rtv4d_popup .navbar_mobile {
    display: none;
}

#rtv4d_popup span.icon-arrow_down {
    cursor: pointer;
    display: inline-block;
    width: 15px;
    height: 10px;  
    background-image: url('https://img.rtvslo.si/_static/r1/novi/img/mmc_player_icons/ico-arrow2.png');
    background-size: 100%;
    margin-left: 5px;
    filter: brightness(0.7);
    font-weight: 100;
}



#rtv4d_popup .navbar_desktop {
    margin-bottom: 3px;
    width: 100%;
}

#rtv4d_popup .navbar_desktop.btn-group {
    padding: 3px 0;
}

#rtv4d_popup .navbar_desktop.btn-group button::after {
    position: relative;
    bottom: 5px;
}

#rtv4d_popup #navbar_desktop_rtv4d button {
    text-transform: uppercase;
    padding: 5px;
    font-size: 0.875rem;
}

#rtv4d_popup .navbar_desktop button.active {
    border-bottom: 2px solid #2793E6;
}

#rtv4d_popup #navbar_desktop_rtv4d button.active {
    border-bottom: 3px solid #2793E6;
}



#rtv4d_popup .navbar_desktop button {
    background: none;
    color: white;
    width: 50%;
    border: none;
    border-radius: 0 !important;
    border-bottom: 1px solid #333333;
    outline: none;
    font-size: 1rem;
    padding: 5px;
}

#rtv4d_popup .navbar_desktop a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 5px;
    text-decoration: none;
    font-size: 0.875rem;
    width: 33%;
    text-transform: uppercase;
}

#rtv4d_popup .navbar_desktop.sub {
    font-size: 0.75rem;
    width: 30%;
}

#rtv4d_popup .navbar_desktop a.active {
    color: white;
    border-bottom: 2px solid #2793E6;
    font-weight: 500;
}

#rtv4d_popup .video-list-4d.search img {
    max-width: 100%;
}

.advanced_toolbar_actions .podcast-popup {
    display: none;
	position: absolute;
	background: #111111;
    border: 2px solid #656565;
    width: 125px; 
    height: 60px; 
    z-index: 2;
    left: 0; 
    top: 38px;
    text-transform: none;
    text-align: left;
}

.advanced_toolbar_actions .podcast-popup:after, .podcast-popup:before {
	bottom: 100%;
	left: 50%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
    pointer-events: none;
}

.advanced_toolbar_actions .podcast-popup:after {
	border-color: rgba(17, 17, 17, 0);
	border-bottom-color: #111111;
	border-width: 10px;
	margin-left: -10px;
}

.advanced_toolbar_actions .podcast-popup:before {
	border-color: rgba(101, 101, 101, 0);
	border-bottom-color: #656565;
	border-width: 13px;
	margin-left: -13px;
}

.advanced_toolbar_actions .podcast-popup ul {
    list-style-type: none;
    padding: 8px 8px;
    margin: 0;
}

.advanced_toolbar_actions .podcast-popup li {
    cursor: auto;
}

.advanced_toolbar_actions .podcast-popup li:first-child {
    padding-bottom: 3px;
}

.advanced_toolbar_actions .podcast-popup li a {
    text-decoration: none;
    color: #bbb;
}

#rtv4d_popup #login_btn_link {
    right: 58px;
}



#rtv4d_popup .showMoreBtn {
   
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABmJLR0QA/wD/AP+gvaeTAAACmUlEQVRoge3WMWgTURzH8e+7NKXFIIIIErdABxWXXHDoUCwKQgcptEMHkRZsWgrFRTro0kXBWVty70gJFASpSxcHrTV06FC4IBQi4mShIIhBdEhoTJ5TtKRJene5qw7vM9793/3/v7y7y4GmaZqmaZqmaZrWFdF8IJ1OPwIe/INZvHgspXx4+ECkucJxnM1UKhUDBk9sLG+eSSnvNx80WlValrUAWKGP5JEQIhePx++1OtcyCKDi8fgc8Dy8sbxRSr0slUp3FxcX663OH7m1GvL5vEokEuv9/f0XgcuhTeiCUmpdCDGxurr6q11N2yAAxWJRJRKJ9b6+PlMIMRD8iK5sVKvVsWw2e9CpqN2t9cfa2tpBLBYbV0rlAxvNve1yuTyay+UqxxUeef22Mz8/f7pSqbwRQlztbjZ3lFI7tVrtxsrKyk839a6DAExOTp7p7e19CyR9TefebjQaHV5aWvrmdoGnIABTU1PnotFoHrjkda1Ln3p6eoaWl5e/eFnkOQjA7OzshXq9vgUk/KzvYK9Wqw1ls9nPXhce+7C3kslk9oFhwHPDDvYjkciwnxDgc0caZmZmBpRSW8D5bq4DfBVCXLMsq+j3Al0FAUin01eAd8BZn5f4DlyXUha6mcPXrXWYlHLXMIwRwNVrsskPwzBudhsCAtiRhunp6UEhxGvglMslZcMwRjKZTD6I/l3vSINt29tKqVHg2H9h4EAIMR5UCAgwCIBt2xtCiAmg2qGsBty2LOtVkL07fjT64TjOx1Qq9QEY4+gPVQfuSClfBN038CAAjuMUk8nknhDiFn+fQwXMSSlzYfQMJQhAoVB4b5pmCRgBUEot2Lb9NKx+oQUBcBxnxzTNKrBp2/aTMHtpmqZpmqb9h34DwXvD5oHtaRoAAAAASUVORK5CYII=);
    background-size: 15px;
    background-repeat: no-repeat;
    background-position: top right;
    margin-right: 10px;
}


@media (max-width: 1366px) {
    #rtv4d_popup .player-main-content {
        max-width: 1280px;
    }

    #rtv4d_popup #show_description_txt {
        max-height: none;
    }

   

    .advanced_toolbar_actions .button-group#rss-button .rss-icon div {
        display: inline;
    }
    .advanced_toolbar_actions .button-group.copy {
        margin-left: 0px;
    }
    
    .podcast-popup {
        left: -15px;
    }

    .advanced_toolbar_actions .button-group {
        font-size: 0.75rem;
    }

    .podcast-popup {
        font-size: 0.875rem;
    }
}




@media (max-width: 900px) {

    .advanced_toolbar_actions .sign_lang.sign-on .mobile_icon::before {
        left: 34px;
        top: -27px;
    }

    #rtv4d_popup .right-column {    
        border-bottom: none;  
    }

    #rtv4d_popup .showMoreBtn {
        margin-right: 0px;
    }
    
    .advanced_toolbar_actions .button-group.odprti_kop {
        float: none;
    }

    .advanced_toolbar_actions {
        display: flex;
        text-align: center;
    }

    .advanced_toolbar_actions .button-group {
        padding: 0;
        height: 45px;
        flex: 1;
        background-position: center 8px;
    }
    .advanced_toolbar_actions #recommend_button {
        padding-left: 0!important;
        background-position: center 8px;
        margin-left: 0;
    }
    .advanced_toolbar_actions #recommend_button > span {
        position: relative;
        top: 25px;
        text-align: center;
    }
    .advanced_toolbar_actions #recommend_button div {
        position: relative;
        top: 25px;
        text-align: center;
    }
    .advanced_toolbar_actions #my_button_stuff span,
    .advanced_toolbar_actions .copy span,
    .advanced_toolbar_actions .odprti_kop span,
    .advanced_toolbar_actions .sign_lang span
      {
        position: relative;
        top: 25px;

    }

    .advanced_toolbar_actions .sign_lang span
      {
        /*overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
*/
    }

   
   
    .advanced_toolbar_actions #rss-button {
        padding-left: 0!important;
        background-position: center 8px;
    }
    .advanced_toolbar_actions #rss-button span {
        position: relative;
        top: 25px;
    }

  

    #rtv4d_popup .sign_lang .sign-on::before {
       
        top: -15px;
        left: 48px;
    }

    #rtv4d_popup .sign_lang .sign-off::before {
       
        top: -15px;
        left: 48px;
    }

    .advanced_toolbar_actions .podcast-popup {
        left: -31px;
        top: 56px;
        width: 143px;
        height: 65px;
        font-size: 1rem;
    
    }

    .advanced_toolbar_actions .podcast-popup li:first-child {
        margin-bottom: 5px;
    }
}

@media (max-width: 800px) {
    #rtv4d_popup .input_search_bar_container {
        margin: 0;
    }
    
    #rtv4d_popup .filter-records {
        left: 220px;
    }


}

/**
  #rtv4d_popup .mmc-player-sidebar .image-container{
        width: 100%;
    }
*/

@media (max-width: 900px) {

    #rtv4d_popup ul.video-list-4d.clip-slider {
        width: 100%;  
        display: flex;
        overflow-x: auto;
        margin: 0;
    }


    

    #rtv4d_popup .right_column_list_moje .right-column{
        margin: 0;
        padding-left: 0px;
    }
    

    #rtv4d_popup .right-column{
        margin: 0;
        padding-left: 15px;
    }
    
    
    #rtv4d_popup ul.video-list-4d.clip-slider li {
        width: 50%;
        flex-shrink: 0;
        height: 100%;
        padding-right: 10px;
    }

    #rtv4d_popup .sign_lang .sign-on::before {
        top: -15px;
        left: 85px;
    }

    #rtv4d_popup .sign_lang .sign-off::before {
        top: -15px;
        left: 85px;
    }
    

    #rtv4d_popup {
        overflow-y: hidden;
    }

    #rtv4d_popup .mmc-player-sidebar .image-container,
    #rtv4d_popup .filter-records .image-container{
        width: 100%;
    }

    #rtv4d_popup .mmc-player-sidebar .title h3,
    #rtv4d_popup .filter-records h3{
        
       margin: 0;
    }

    #rtv4d_popup .onoffswitch {
       
        right: 95px;
       
    } 

  

    #rtv4d_popup .right_column_list {
        padding-right: 0px; 
    }

    #rtv4d_popup .filter-records {
        height: 100%;
        position: fixed;
        padding-bottom: 200px;
    }  
    
    #rtv4d_popup .filter-records .more-content {
        padding: 3px 3px 15px 3px;
        margin-bottom: 50px;
    }
  

    #rtv4d_popup .video-list-4d.search .search-results-text {     
        padding: 3px 3px 3px 0px;      
    }

    #rtv4d_popup .right_column_list_moje {
        padding-left: 13px;
        /* padding-top: 230px; */
        position: fixed;
        top: 58px;
        background-color: #232323;
        overflow: hidden;
        overflow-y: auto;
        height: 100%;
        z-index: 99999;
        width: 100%;
        padding-bottom: 75px;
        
    }

    #rtv4d_popup .right_column_list_moje li {
      
        margin-bottom: 15px;
    }

    #rtv4d_popup p.media-meta {
        font-size: 1rem;
        line-height: 1.1rem;     
    }

    #rtv4d_popup p.media-meta.showname {
        font-size: 0.875rem;
       
    }

    #rtv4d_popup .content {
        padding: 10px 10px 0px 15px;
    }

    #rtv4d_popup .mmc-player-header.row {
        margin-left: 0;
        margin-right: 0;
    }
    
    #rtv4d_popup #navbar_desktop_rtv4d {
        display: none;
    }

    .advanced_toolbar_actions {      
        padding: 7px 10px 6px;
        
    }

    .advanced_toolbar_actions .button-group {
        font-size: 0.75rem;
        margin: 0;
    }
    .advanced_toolbar_actions .button-group.odprti_kop {
        float: none;
    }

    .advanced_toolbar_actions .sign_lang {
        background-position: center 4px;
    }
    .advanced_toolbar_actions .off {
        background-position: center 4px;
    }
    
    #rtv4d_popup .live .dd-container {
        right: 100px;
    }
    #rtv4d_popup .live .mmc-player-content {
        margin-top: 0px;
    }
    #rtv4d_popup {
        position: absolute;
        background: none;
        background-image: none!important;
        background-color: #111;
        overflow: hidden;
        overflow-y: auto;
    }
    #rtv4d_popup .content .titleLink {
        font-size: 1.1rem;
        padding-right: 42px;
    }
    #rtv4d_popup .navbar_mobile {
        display: block;
    }
    #rtv4d_popup .mmc-player-sidebar {
        background-color: #1E1E1E;
        position: relative;
      
        overflow: inherit;
        height:inherit;
        /* width: 340px;*/
    }


    



    #rtv4d_popup .navbar_mobile {
        overflow: hidden;
        background-color: rgb(35, 35, 35);
        position: fixed;
        bottom: 0;
        width: 100%;
    }
    #rtv4d_popup .navbar_mobile a {
        float: left;
        display: block;
        color: #f2f2f2;
        text-align: center;
        padding: 10px 10px;
        text-decoration: none;
        font-size: 0.75rem;
        width: 33%;
        text-transform: uppercase;
    }
    #rtv4d_popup .navbar_mobile a.active {
        color: white;
        border-bottom: 3px solid #2793E6;
        font-weight: 500;
    }
    #rtv4d_popup .mmc-player-sidebar .mdl-selectfield {
        margin-left: 5px;
    }
    #rtv4d_popup .player-main-content {
        margin-top: 0 !important;
        padding: 0px;
    }
    #rtv4d_popup .mmc-player-header {
        margin: 0;
    }
    #rtv4d_popup #login_btn_link {
        top: 15px;
        right: 51px;
    }
    #rtv4d_popup .showName {
        display: none;
    }
    #rtv4d_popup .mmc-player-content {
        margin-right: 0px;
        margin-bottom: 20px;
        margin: 0;
        padding: 0;
    }
    #rtv4d_popup .mmc-player-content .mycontent {
        margin-right: 0px;
        width: 100%;
    }
    #rtv4d_popup .mmc-player-sidebar {
        width: 100%;
        clear: left;
        background-color: #232323;
    }
    #rtv4d_popup .mobile_inline {
        display: block;
        padding: 10px 5px 13px;
        position: relative;
        border: 1px solid #222;
        margin-bottom: 5px;
        border-left: 0;
        border-right: 0;
    }
    #rtv4d_popup .mobile_inline .login_name {
        width: 30px;
        height: 30px;
        background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAYAAAA7MK6iAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAHUSURBVEhL7ZRNK0RRHMaHsMECG5Y0K5bEgiXZyNvGzoII+QRSVsoX8PIhiFhJyeQ7UCywIEU2LBTN+D0zz0iN23XvDFnMr/6dc5/z/J9z50znJsr8azKZTEM6ne5i7NTc8u/BZj3UEfXOhlk0pw61ZltpIXgxvyHjDbVN7Wj+5QUWbC8NBI5T4pmaZJ8KL+nYK6VRLzLAkJeKg+Aawq6VyLzfcgEsD8oDV/iqLceHoEGCdJT7lgLBc2DvgKX4ELLssDlLgchj75Kl+BCy6rAJS4HIY++qpfgQMu+wZUuB4FmxN/R0QiEkSYkLMqssF8BaNZ5LGZm3WS4Osvb8S7YYPq9SHjRdKa3Js2u5eMhrJvDOwcfUANM6xnrPT7x2y9DsttJAYBvBT9rgO7RGtdpeGsjtI/Q8t0UOnh9UfszC8xnV67biIGiGyn+jU5Q+n7Ve1kvpyKWl7HmjprwcDwJGKPFKhYbhmbZXDFuOBo1N1KMS+CGjlkPBPqYeUG+j5Z/DZms+ug1LP4aeTfdG+4LRo3t5T+m/jXw96GtRL6UrWHDvA6Ghw2+cshQZek+d0W4pHPyjblq3FBl6N5wxYikczEl6Zhm7LUVGvc5IWipT5i9IJD4Ade5wwKcblGwAAAAASUVORK5CYII=');
        background-size: 30px;
        position: absolute;
        top: 10px;
        right: 60px;
        opacity: 0.7;
    }
    #rtv4d_popup .mobile_inline .login_name::after {
        content: 'Prijavi';
        color: #eee;
        margin-top: 5px;
        text-decoration: underline;
        padding-left: 33px;
    }
    #rtv4d_popup .jw-icon-rewind {
        display: none !important;
    }
    #rtv4d_popup .mobile_inline .logo {
        width: 60px;
        height: 31px;
        top: 3px;
        left: 0px;
        background-image: url(https://img.rtvslo.si/_static/r1/rtv4d/app/img/logo_mmc.png);
        background-position: center center;
        background-repeat: no-repeat;
        background-size: 60px;
        display: inline-block;
        position: absolute;
    }

    #rtv4d_popup .mobile_inline span {
        padding-left: 75px;
        font-weight: 500;
        color: #bbb;
        /* padding-top: 3px; */
        margin-top: 5px;
        line-height: 1.3rem;
        display: inline-block;
    }

    #rtv4d_popup .close {
        z-index: 999;
        width: 45px;
        height: 58px;
        background-repeat: no-repeat;
        background-size: 20px;
        background-position: 10px 20px;
        top: 0px;
        right: 0px;
      
    }
    #rtv4d_popup .showName {
        left: 80px;
    }

    #rtv4d_popup ul.video-list-4d {
        overflow-x: hidden;
        overflow-y: auto;
        white-space: normal;
        height: initial;
        background-color: #232323;
        width: 100%;
        padding: 0 14px;
    }
    #rtv4d_popup ul.video-list-4d.search {
        min-height: 315px;
    }
   
    #rtv4d_popup .logo {
        margin: 6px 0 5px 20px;
    }

    #rtv4d_popup .dd-option-image,
    #rtv4d_popup .dd-selected-image {
        display: none;
    }
    /*
    #rtv4d_popup select#mmc-player-select {
        padding: 0 5px;
        margin-left: 10px;
        border-radius: 14px;
        border: 0px solid hsl(206.1, 79.3%, 52.7%);
        color: hsl(206.1, 79.3%, 52.7%);
        background-color: #242a3a;
        margin-top: 0px;

    }
    */
    #rtv4d_popup .video-list-4d li {
        min-height: 40px;
    }

    #rtv4d_popup .video-list-4d li .length {
        font-size: 0.7rem;
        color: white;
    }

    #rtv4d_popup .video-list-4d li .title {
        overflow-wrap: break-word;
        white-space: pre-wrap;
        color: #fff;
        flex: 3;
        width: 100%;
        max-width: 100%;
        padding: 5px 10px!important;
    }

    #rtv4d_popup .video-list-4d li .img-container {
        flex: 2;
    }
   
    #rtv4d_popup .input_search_bar_container {
        margin: 0;
        right: 139px;
    }
  
 
    #rtv4d_popup .filter-records {
        left: 115px;
    }
   
    #transcripts_odprti_kop.transcripts {
        height: 60vh;
    }

    #rtv4d_popup #transcript_vtt {
        overflow-y: scroll;
    }

    #rtv4d_popup .navbar_desktop.btn-group button span {
        bottom: 0;
    }

    #rtv4d_popup .video-list-4d li .icons {
        height: 17px;
        background-color: rgba(0, 0, 0, 0.7);
    }

    #rtv4d_popup .video-list-4d li .geo {
        width: 19px;
        height: 17px;
        background-position: 2px 0px;
        background-size: 16px;
        background-color: transparent;
    }
    
    #rtv4d_popup .video-list-4d li .subtitled {
        width: 19px;
        height: 17px;
        background-position: 3px 2px;
        background-size: 11px;
        background-color: transparent;
    }

    .podcast-popup {
        left: 30px; 
    }
}

@media (max-width: 640px) {
    #rtv4d_popup input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
        color: transparent;
        opacity: 0; /* Firefox */
      }

    #rtv4d_popup .input_search_bar:focus {
        width: 180px;
        left: 153px;
        border-radius: 0.95rem;
        padding-left: 10px;
    }
 
    #rtv4d_popup .input_search_bar_container .input_search_bar_icon {
        right:  3px;
    }

    #rtv4d_popup .input_search_bar {
        width: 31px;
        padding: 0;
        z-index: 999999;
        height: 31px;
        border-radius: 50%;
        border: none;
    }

    #rtv4d_popup .input_search_bar_container {
        right: 138px;
    }
    
    #rtv4d_popup .filter-records {
        left: 0;
        max-width: 100%;
    }
    .advanced_toolbar_actions .button-group:hover {
        border-bottom: none;
    }

    .podcast-popup {
        left: -15px; 
    }
}

@media (max-width: 480px) {
    #rtv4d_popup .logo {
        margin: 6px 0 5px 10px;
    }
   
    #rtv4d_popup #login_btn_link {
        right: 50px;
    }
    .advanced_toolbar_actions .button-group {
        font-size: 0.65rem;
        margin: 0;
    }
}

@media (max-width: 360px) {
    #rtv4d_popup .input_search_bar:focus {
        width: 130px;
    }

    .podcast-popup {
        left: -15px; 
        top: 57px;
        width: 95px; 
        height: 57px; 
        font-size: 0.63rem;
    }

    .podcast-popup li:first-child {
        margin-bottom: 0px;
    }
}


@media (max-width: 900px){
    #rtv4d_popup .mmc-player-header.row {
        position: fixed;
        top: 0;
        z-index: 9999;
        width: 100%;
    } 

    #rtv4d_player {
        position: fixed;
        z-index: 9999;
        top: 58px;
        width: 100%;
    }

    #rtv4d_popup .mycontent{
        padding-top: 58px;
    }
  
    #rtv4d_popup .filter-records {
        top: 0px;
    }
  
 

    #rtv4d_popup .filter-records {
        margin-top: 55px;
        z-index: -1;
    }

    #rtv4d_popup .right_column_list .content_second_video_list_btn, 
    #rtv4d_popup .more-content-button, 
    #rtv4d_popup .more-content-button-moje{
        display: block;
        padding-bottom: 20px;
    }

    #rtv4d_popup .right_column_list li {
        width: 50%;
    
    }

    #rtv4d_popup  .right_column_list .clip-slider li .md-news .row .image{
        width: 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

  
}

