/* @font-face {
    font-family:"proxima_nova_reg";
    src: url("assets/proxima_nova_reg-webfont.ttf") format("truetype");
  } */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');
html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}a,abbr,acronym,address,applet,article,aside,audio,b,big,blockquote,body,canvas,caption,center,cite,code,dd,del,details,dfn,div,dl,dt,em,embed,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,output,p,pre,q,ruby,s,samp,section,small,span,strike,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,tt,u,ul,var,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:after,blockquote:before,q:after,q:before{content:'';content:none}table{border-collapse:collapse;border-spacing:0}b{font-weight: bold;}
*{font-family: 'Poppins', sans-serif;}
/* *{font-family: 'proxima_nova_reg', sans-serif;} */
i{
    font-family:"Open Sans", sans-serif;
    font-size:11px;
    color:#adadad;
}
body { 
    font-family: 'Poppins', sans-serif;
    /* font-family: 'proxima_nova_reg', sans-serif; */
    box-sizing: border-box;
    /* background: #f7f7f7; */
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-size: 14px;

}
a,
div,
input {
    text-decoration: none;
    color: #333;
    outline: none;
    background: none;
    -webkit-tap-highlight-color: transparent;
}
ar {
    display: block;
}


header{
    z-index: 5;
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 50px;
    transition: all .2s ease-out;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    -ms-transition: all .2s ease-out;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.59);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.59);
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.59);
    background: #b31e1e;
 }
 header .left{
    display: flex;
 }
header box{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header-space{
    height: 60px;
    display: block;
}
header .logo{
    color: white;
    padding: 4px;
    font-weight: bold;
    font-size: 22px;
    padding-left: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
}
header .logo img{
    max-height: 37px;
    width: 160px;
}
header ul{
    display: flex;
    align-items: center;
    margin: 0px 17px;
    font-size: 14px;
    font-weight: 300;
    line-height: 16px;
    /* text-transform: uppercase; */
    padding-top: 2px;
}
header ul li{
    position: relative;
}
header li a{
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    outline: none;
    margin: 0 9px;
}


header a { 
    display: inline-block;
}
header a.active:after {
    display:block;
    content: '';
    border-bottom: solid 3px #ff9700;  
    transform: scaleX(1);  
    transition: transform 250ms ease-in-out;
}

header a:after {
  display:block;
  content: '';
  border-bottom: solid 3px #fff;  
  transform: scaleX(0);  
  transition: transform 250ms ease-in-out;
}
header a:hover:after { 
    transform: scaleX(1);
    /* transform-origin:50% 100%; */
    transform-origin:  0% 50%;
}

nav .dropdown{
    position: absolute;
    display: none;
    flex-direction: column;
    background: #4d4fbb;
    top: 33px;
    left: 0;
    width: 130px;
    box-shadow: 1px 1px 2px 0px rgba(0,0,0,0.59);
}

nav .dropdown a{
    margin: 6px 12px;
 }
nav .dropdown a:after { 
    border-bottom: solid 2px #fff;  
} 

menu .dropdownMOB >div{
    margin: 5px 0px;
}
menu .dropdownMOB >div a{
    font-size: 16px;
}


nav {
    display: flex;
}
nav2 {
    align-items: center;
    justify-content: center;
    padding-right: 6px;
    display: none;
}

nav2 img{
    width: 32px;
}
nav2 a{
    font-weight: bold;
    margin-right: 17px;
    font-size: 11px;
    color: #fff;
    padding: 12px 2px;
    cursor: pointer;
}
menu{
    display: none;
}
menu ul {
    margin-top: 25px;
    display: block;
 }
menu ul li{
    margin: 20px 0px;
}
 
 
menu{
    position: fixed;
    top: 0px;
    left: 0px;
    width: 65%;
    height: 100vh;
    background: #3C3C3C;
    z-index: 9;
}
menu > img{
    width: 32px;
    display: block;
    position: absolute;
    right: 0px;
    top: 0px;
    padding: 10px;
}



box{
    display: block;
}
box,.box{
    height: 100%;
    margin: auto;
    width: 1200px;
}


content{
    width:calc(100% - 330px);
    display: block;
}
sidebar{
    width: 300px;
    display: block;
    position: sticky;
    top: 63px;
    height: 93vh;
    border-left: 1px solid #d8d8d8;
    margin-left: 18px;
    padding: 5px;
    box-sizing: border-box;
    flex-shrink: 0;
    flex-grow: 0;

}
sidebar *{
    box-sizing: border-box;
    max-width: 300px!important;
}
sidebar img{
    width: 100%;
}

a.btn-live {
    display: block;
    text-align: center;
    background: #dc0909;
    margin: 5px 0px;
    padding: 10px;
    color: #fff;
    font-weight: bold;
    font-size: 20px;
}

.kutia{
    display: flex;
    margin-top: 30px;

}



.tag{
    background: #9900bf;
    padding: 4px 8px;
    font-size: 12px;
    color: #fff;
    display: inline-block;
    font-weight: 400;
}
 
 
 

.block_emri{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-bottom:2px  solid #000;
}
.block_emri div{
    background: #000;
    color: #fff;
    padding: 7px 11px;
     font-size: 16px;
    line-height: 20px;-weight: bold;
}
.block_emri span{
    font-size: 12px;
    padding-bottom:2px;
    font-weight: bold;
}

.block_emri.color1{ border-bottom:2px  solid #000000;}
.block_emri.color1 div,b.color1,faqe .color1{ background: #000000;}

.block_emri.color2{ border-bottom:2px  solid #28a701;}
.block_emri.color2 div,b.color2,faqe .color2{ background: #28a701;}

.block_emri.color3{    border-bottom:2px  solid #ff4274;}
.block_emri.color3 div,b.color3,faqe .color3{  background: #ff4274;}

.block_emri.color4{ border-bottom:2px  solid #00a6cf;}
.block_emri.color4 div,b.color4,faqe .color4{ background: #00a6cf;}

.block_emri.color5{ border-bottom:2px  solid #006699;}
.block_emri.color5 div,b.color5,faqe .color5{ background: #006699;}

.block_emri.color6{ border-bottom:2px  solid #aa17b5;}
.block_emri.color6 div,b.color6,faqe .color6{ background: #aa17b5;}

.block_emri.color7{ border-bottom:2px  solid #e20000;}
.block_emri.color7 div,b.color7,faqe .color7{ background: #e20000;}


img.reklama{
    max-width: 100%;

}

faqe{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5px auto 15px;
}
faqe a{
    background: #ad0a0a;
    padding: 10px 20px 9px;
    color: #fff;
} 
faqe div{
    font-size: 19px;
    padding: 4px 18px;
    margin: 0px 10px;
}
footer{
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    background: #313131;
    min-height: 200px;
    border-bottom: 1px solid #313131;
    /* background: #3c3c3c; */
}

footer .info{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

footer .info img{
    width: 20px;
    vertical-align: -4px;
    padding-right: 4px;
}
footer .info div{
    color: #fff;
}

footer .copyright{
    color: #fff;
    text-align: center;
    line-height: 24px;

}
footer a {
    color: #fff;
    text-align: center;
}




/* lajm */

lajmi{
    
}
lajmi #titulli{
    font-size: 33px;
    line-height: 39px;
    font-weight: bold;
    padding: 10px 13px;
    display: block;
}
lajmi #imgBaza{
    max-width: 60%;
    max-height: 376px;    
    border-radius: 3px;
    float:left;
    margin-right: 11px;
    box-shadow: 1px 2px 12px -6px rgba(0,0,0,0.75);
}
lajmi #teksti{
    font-size: 18px;
    line-height: 27px;
    padding: 10px 0px 5px 0px;
}
lajmi #teksti::first-letter {
    font-weight: bold;
    font-size: 35px;
}
lajmi #teksti img,
lajmi #teksti iframe{
    max-width: 100%;
    max-height: 600px;
}

.clear{
    clear: both;
    content:'';
}


#share{
    display: flex;
    justify-content: center;
}
#share img {
    width: 40px;
    padding: 4px;
    margin: 0px 4px;
}



.live{
    text-align: center;
}
.live > div{
    font-weight: bold;
    font-size: 22px;
    padding: 6px;
}















/* ALL BLOCK */
block i:before{
    content: '';
    background-image: url(IMG/ora.png);
    background-repeat: no-repeat;
    width: 8px;
    height: 9px;
    color: #fff;
    background-size: contain;
    display: inline-block;
    padding-right: 3px;
}

block a{
    cursor: pointer;
}





/* F1 */
block.F1{
    display: grid;
    grid-template-columns: 2FR 1FR 1FR;
    margin-top: 15px;
}

block.F1 > a{
    min-height: 190px;
    margin: 2px;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    position: relative;
}
block.F1 .tag{
    margin-bottom: 4px;
}
block.F1 > a:before{
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.15);
    pointer-events: none;
    border-radius: 10px;
    transition:background-color 0.7s ease-out;
}

block.F1 > a:hover::before{
    background-color: rgba(0, 0, 0, 0);
}
block.F1 div{
    position: absolute;
    bottom: 0px;
    font-weight: bold;
    padding: 10px;
     color: white;
    background: linear-gradient(to top,rgba(0,0,0,.9) 0,rgba(0,0,0,0) 100%);
    border-radius: 12px;
}
block.F1 span{
    font-size: 16px;
    line-height: 25px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical
}
/*
block.F1 i{
    display: none;
}
block.F1 i::before{
    background-image: url(IMG/ora_fff.png);
} */

block.F1 a:nth-child(1){
    grid-row: 1 / span 2;
}
block.F1 a:nth-child(1) span{
    font-size: 25px;
    line-height: 35px;
    -webkit-line-clamp: 3;
}


block.F1 a:nth-child(2){
    grid-column: 2 / span 2;
}
block.F1 a:nth-child(2) span{
    font-size: 21px;
    line-height: 28px;
}






/* F2 */
block.F2{
    display: grid;
    grid-template-columns: 1FR 1FR 1FR 1FR;
    margin-top: 15px;
}


block.F2 > a{
    min-height: 190px;
    margin: 2px;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    position: relative;
     
}

block.F2 > a:before{
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.15);
    pointer-events: none;
    border-radius: 10px;
    transition:background-color 0.7s ease-out;
     
}

block.F2 > a:hover::before{
    background-color: rgba(0, 0, 0, 0);

}
 
block.F2 div{
    position: absolute;
    bottom: 0px;
    font-weight: bold;
    padding: 10px;
     color: white;
    background: linear-gradient(to top,rgba(0,0,0,.9) 0,rgba(0,0,0,0) 100%);
    border-radius: 12px;
}
block.F2 span{
    font-size: 19px;
    line-height: 25px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical
}
block.F2 i::before{
    background-image: url(IMG/ora_fff.png);
} 



/* B1 */
block.B1{
    display: grid;
    grid-template-columns: 1FR 1FR;
    margin-top: 15px;
}
block.B1 > a{
    display: flex;
    align-items: center;
    margin: 0px 2px;
    margin-left: 11px;
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid #dddddd;
}

block.B1 img{
    height: 85px;
    width: 100%;
    max-width: 130px;
    margin: 4px 8px;
    margin-left: 0px;
    box-sizing: border-box;
    border-radius: 10px;
    object-position: center;
    object-fit: cover;
}
block.B1 div{
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}
block.B1 span{
    font-size: 14px;
    font-weight: bold;
    line-height: 18px;
    color: #111;
    padding: 0px 6px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical
}
block.B1 .tag{
    display: none;
}

block.B1 a:nth-child(1){
    grid-row: 1 / span 4;
    grid-column: 1 / span 1;
    flex-direction: column;
    position: relative;
     border-bottom: none;
}
block.B1 a:nth-child(1) div{
    position: absolute;
    bottom: 0px;
    font-weight: bold;
    padding: 10px;
    color: white;
    background: linear-gradient(to top,rgba(0,0,0,.9) 0,rgba(0,0,0,0) 100%);
    border-radius: 12px;
    display: block;
}
block.B1 i{
    padding-left: 5px;
    color:#777777;
    margin-top: 5px;

}
block.B1 a:nth-child(1) .tag{
    display: inline-block;
    margin-left: 7px;
    margin-bottom: 5px;
}
block.B1 a:nth-child(1) img{
    height: 100%;
    max-width: 100%;
    max-height: 376px;

    margin: 0px 0px;
}
block.B1 a:nth-child(1) span{
    font-size: 19px;
    line-height: 23px;
    color: #fff;
}
block.B1 a:nth-child(1) i{
    color:#adadad;
}
block.B1 a:nth-child(1) i::before{
    background-image: url('IMG/ora_fff.png');
}




/* B2 */
block.B2{
    display: grid;
    grid-template-columns: 1FR 1FR 1FR;
    margin-top: 15px;
}

block.B2 a{
    margin:0px 10px;
}
block.B2 img{
    height: 100%;
    border-radius: 11px;
    width: 100%;
    max-width: 100%;
    max-height: 150px;
    object-fit: cover;
}

block.B2 div{
    margin-bottom: 18px;
}
block.B2 span{
    font-size: 14px;
    font-weight: 700;
    line-height: 21px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    padding-top: 4px;
}

block.B2 i{
    color:#777777;
}




/* B3 */
block.B3{
    display: inline-block;
    margin-top: 15px;
    width: 100%;
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}
block.B3::-webkit-scrollbar {
      display: none;
    }

block.B3 a{
    display: inline-block;
    height: 274px;
    width: 200px;
    margin: 2px 9px;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.6);
}
block.B3 > a:before{
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.15);
    pointer-events: none;
    border-radius: 10px;
    transition:background-color 0.7s ease-out;
}

block.B3 > a:hover::before{
    background-color: rgba(0, 0, 0, 0);
}
block.B3 div{
    position: absolute;
    height: auto;
    bottom: 0;
    background: linear-gradient(to top,rgba(0,0,0,.9) 0,rgba(0,0,0,0) 100%);
    padding: 10px 12px;
    border-radius: 0 0 10px 10px;
    white-space: break-spaces;

}


block.B3 span{
    font-size: 14px;
    line-height: 22px;
    color: #fff;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-weight: 500;
}
block.B3 i{
    color: #adadad;
}
block.B3 i:before{
    background-image: url("IMG/ora_fff.png");
}




/* B4 */
block.B4{
    display: grid;
    grid-template-columns: 1FR 1FR;
    margin-top: 15px;
    column-gap: 20px;
}

block.B4 > a{
    display: flex;
    min-height: 71px;
    margin: 9px 2px;
    padding-bottom: 6px;
     align-items: stretch;
    background-position: center;
    border-bottom: 1px solid #dddddd;
}

block.B4 img{
    height: 70px;
    width: 100px;
    max-width: 100px;
    box-sizing: border-box;
    border-radius: 9px;
    object-position: center;
    object-fit: cover;
}

block.B4 img:before{
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.15);
    pointer-events: none;
    border-radius: 10px;
    transition:background-color 0.7s ease-out;
}
block.B4 div{
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}
block.B4 span{
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    padding: 0px 6px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical
}
block.B4 .tag{
    display: none;
    width: 33px;
    text-align: center;
    margin-left: 7px;
    margin-bottom: 6px;
}
block.B4 i{
    padding-left: 6px;
    padding-top: 3px;
}
block.B4 a:nth-child(1) .tag,
block.B4 a:nth-child(2) .tag{
    display: inline-block;
}
block.B4 a:nth-child(1),
block.B4 a:nth-child(2){
    grid-row: 1 / span 4;
    flex-direction: column;
    position: relative;
    align-items: normal;

}
block.B4 a:nth-child(1) div,
block.B4 a:nth-child(2) div{
    padding: 5px 11px;
    position: absolute;
    bottom: 0;
    left: 0px;
    color: #fff;
    background: linear-gradient(to top,rgba(0,0,0,.9) 0,rgba(0,0,0,0) 100%);
    border-radius: 10px;
}
block.B4 a:nth-child(1) img,
block.B4 a:nth-child(2) img{
    height: 250px;
    max-width: 100%;
    width: 100%;
}
block.B4 a:nth-child(1) span,
block.B4 a:nth-child(2) span{
    font-size: 20px;
    line-height: 23px;
    -webkit-line-clamp: 2;
 }

block.B4 a:nth-child(1) i,
block.B4 a:nth-child(2) i{
    color: #adadad;
}
block.B4 a:nth-child(1) i::before,
block.B4 a:nth-child(2) i::before{
    background-image: url(IMG/ora_fff.png);
}








/* B5 */
block.B5{
    display: grid;
    grid-template-columns: 1FR 1FR 1FR;
    margin-top: 15px;
}

block.B5 a{
    margin: 7px 3px;
    position: relative;
}
block.B5 img{
    height: 100%;
    width: 100%;
    max-width: 100%;
    max-height: 175px;
    object-fit: cover;
}
block.B5 div{
    position: absolute;
    bottom: 0px;
    font-weight: bold;
    padding: 10px;
    color: white;
    background: linear-gradient(to top,rgba(0,0,0,.9) 0,rgba(0,0,0,0) 100%);
    /* border-radius: 12px; */
}
block.B5 span{
    font-size: 14px;
    font-weight: 700;
    line-height: 21px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    padding-top: 4px;
}

block.B5 i{
    color:#adadad;
}
block.B5 i::before{
    background-image: url('IMG/ora_fff.png');
}




/* B6 */
block.B6{
    display: grid;
    grid-template-columns: 1FR ;
    margin-top: 15px;
}

block.B6 a{
    display: flex;
    flex: 0 0;
    margin: 7px 3px;
    padding-bottom: 18px;
    border-bottom: 1px solid #e2e2e2;
 }
block.B6 img{
    width: 300px;
    height: 187px;
    flex-shrink: 0;
    object-fit: cover;
 }

 block.B6 a:hover img {
    filter: grayscale(0.8);
    transition: .3s ease-in-out;

}
block.B6 div{
    font-weight: bold;
    padding: 10px;
 
 }
block.B6 span{
    font-size: 17px;
    font-weight: 700;
    line-height: 23px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    padding-top: 4px;
}
block.B6 .tag{
    padding: 8px 10px 6px;
}
block.B6 i{
    color: #777;
    margin-top: 6px;
    padding-left: 6px;
}
block.B6 i::before{
    background-image: url('IMG/ora.png');
}


















@media only screen and (max-width: 1200px) {
    box,.box {
        width: 1014px;
    }
}

@media only screen and (max-width: 1024px) {
    .kutia {
        flex-direction: column;
        justify-content: center;
    }
    sidebar{
        width: 100%;
        display: grid;
        justify-content: center;
        align-items: self-start;
        grid-template-columns: repeat(3, 1FR);
        position: static;
        height: auto;
        border-left: none;
        margin-left: 0px;
        padding: 0px;
    }
    sidebar * {
        padding: 2px;
    }
    box,.box {
        width: 100%;
    }
    content{
        width: 100%;
    }
}

@media only screen and (max-width: 960px) {
    nav {
        display: none;     
    }
    nav2 {
        display: flex;
    }
    
    sidebar{
        grid-template-columns: repeat(2, 1FR);
    }
    box,.box {
        padding: 0px 10px;
        box-sizing: border-box;
    }
  
    lajmi #imgBaza{
        max-width: 50%;
    }
    content{
        padding: 0px 10px;
        box-sizing: border-box;
    }
    footer .info{
        flex-direction: column;
    }
    footer .info div{
        margin: 10px;
    }


    header li a{
font-size: 17px;
    margin: 2px 9px;
    }












    block.F1 a:nth-child(1) span {
        font-size: 22px;
        line-height: 29px;
    }
    block.F1 a:nth-child(2) span {
        font-size: 16px;
        line-height: 23px;
    } 
    
 

    block.B3 a {
        height: 250px;
        width: 215px;
    }

    block.B6 img {
        width: 240px;
        height: 150px;
    }
   
   
}

@media only screen and (max-width: 680px) {
    sidebar{
        grid-template-columns:1FR;
        justify-items: center;
    }
    sidebar *{
        width: 100%;
    }



    box,.box {
        padding: 3px;
    }
    lajmi #imgBaza{
        max-width: 100%;
        margin-bottom: 10px;
    }
    .kutia{
        margin-top:10px;
    }


    block.F1 {
        grid-template-columns: 1FR 1FR;
    }
    block.F1 a:nth-child(1) {
        grid-row: 1 / span 1;
        grid-column: 1/ span 2;
    }
    block.F1 a:nth-child(2){
     grid-column: 1 / span 1;
    }
    block.F1 a:nth-child(4){
        display: none;
    }

    block.F2{
        grid-template-columns: 1FR 1FR;
    }
    block.F2 a{
        display: none;
    }
    block.F2 a:nth-child(1){
        display: block;
        grid-row: 1/ span 1;
    }   

    block.F2 a:nth-child(1) span{
        font-size: 19px;
        line-height: 25px;
    }

    block.F2 a:nth-child(2){
        display: block;
    }

    
    block.B2{
        grid-template-columns: 1FR 1FR;
    }
    block.B4{
        display: block;
    }
    block.B4 > a{
        justify-content: flex-start;
    }
    block.B4 a:nth-child(1), block.B4 a:nth-child(2){
        margin: 10px;
        max-width: 100%;
        box-sizing: border-box;
    }

    block.B5 {
         grid-template-columns: 1FR 1FR;
    }
}



@media only screen and (max-width: 490px) {
    
    content{
        padding: 0px 5px;
        box-sizing: border-box;
    }
    #share img {
        width: 35px;
        padding: 3px;
        margin: 0px 2px;
    }

    block.F1{
        margin-top: 3px;
    }
    block.F2{
        grid-template-columns: 1FR ;
    }
    block.F2 a{
        display: none;
    }
    block.F2 a:nth-child(1){
        display: block;
        grid-row: 1/ span 1;
    }   

    block.B1{
        grid-template-columns: 1FR;

    }
   
    block.B1 a:nth-child(1){
        grid-row: auto;
        grid-column: auto;
        flex-direction: row;
        position: relative;
        border-bottom: none;
    }
    block.B1 a:nth-child(1) img{
        width: 100%;
    }

    block.B2{
        grid-template-columns: 1FR;
    }

    block.B5 {
        grid-template-columns: 1FR;
    }

    block.B6 a{
        flex-direction: column-reverse;
    }
    block.B6 img {
        width: 100%;
        height: auto;
        max-height: 350px;
        padding-top: 3px;
        border-radius: 5px;
    }
    block.B6 div{
        padding: 0;
        word-break: break-word;
    }

    .live iframe{
        max-height: 250px;
    }
    lajmi #imgBaza{
        margin-right: 0px;
    }
}