:root{    
    --z-index-modal:   1050;/*1050*/
    --z-index-sticky:  1000;
    --z-index-applink: 1049;
    --z-index-consent: 1051;
}
.dictionary{
    font-size: medium;
    font-weight: 500 !important;
}

.title{
    font-size: large;
    /*font-weight:300!important;*/
}

.search{
    font-size: large;
}

.italic {
    font-style: italic;
}

.overflow-scroll{
    overflow: auto;
    white-space: nowrap;
}

.fw-light{
    font-weight: 300;
}

.fw-lighter {
    font-weight: lighter;
}

.fw-normal{
    font-weight: normal;
}

.fw-450{
    font-weight: 450;
}
.fw-500{
    font-weight: 500;
}

.fw-bold{
    font-weight: 500 !important;
}
.fs-large{
    font-size: large;
}
.fs-medium{
    font-size: medium;
}
.fs-larger{
    font-size: larger;
}
.fs-xlarge{
    font-size: x-large;
}
.fs-100{
    font-size: 100%;
}
.fs-75{
    font-size: 75%;
}

.box-border  {
    border-radius:5px;        
    border: 1px solid #99999955;    
}

.text-primary-light {
    color: #007bff55 !important
}

a.text-primary-light:focus,
a.text-primary-light:hover {
    color: #0056b355 !important
}

.text-danger-light {
    color: #dc354555 !important
}

a.text-danger-light:focus,
a.text-danger-light:hover {
    color: #a71d2a55 !important
}

.cardd {
    box-shadow: 0 1px 2px 0 rgba(0,0,0,0.2);
    transition: 0.3s;			
}

.cardd:hover {
    box-shadow: 0 2px 4px 0 rgba(0,0,0,0.2);
}
.shadow-light {
    box-shadow: 0 1px 2px 0 rgba(0,0,0,0.2);
    transition: 0.3s;			
}

.shadow-light:hover {
    box-shadow: 0 1px 4px 0 rgba(0,0,0,0.2);
}

.shadow-light-feed {
    box-shadow: 0 1px 2px 0 rgba(0,0,0,0.5);
    transition: 0.3s;			
}

.shadow-light-feed:hover {
    box-shadow: 0 1px 4px 0 rgba(0,0,0,0.5);
}


.borderless {    
    border-radius: 5px 0px;
    border: none;    
}

.shadowless {
    box-shadow: none;
    transition: 0s;			
}

.btn-small {
    display: inline-block;
    /*color: #212529;*/
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    /*background-color: transparent;*/
    border: 1px solid transparent;
    padding: 0.25rem .4rem;
    line-height: 1;
    border-radius: .25rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;        
        
    font-size: 75%;
    font-weight: 700;
    white-space: nowrap;        
}

.btn-medium {
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.35rem .45rem;
    line-height: 1.25;
    border-radius: .25rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;        
        
    font-size: 80%;
    font-weight: 700;
    white-space: nowrap;      
}

.display-none{
    display: none;
}

.display-5 {
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.2
}

.display-6 {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.2
}

.display-7 {
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.2
}

.badge-primary-trans {
    color: #000;
    background-color: #007bff55
}

a.badge-primary-trans:focus,
a.badge-primary-trans:hover {
    color: #000;
    background-color: #0062cc55
}

a.badge-primary-trans.focus,
a.badge-primary-trans:focus {
    outline: 0;
    box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .5)
}

.badge-success-trans {
    color: #fff;
    background-color: #28a74555
}

a.badge-success-trans:focus,
a.badge-success-trans:hover {
    color: #fff;
    background-color: #1e7e3455
}

a.badge-success-trans.focus,
a.badge-success-trans:focus {
    outline: 0;
    box-shadow: 0 0 0 .2rem rgba(40, 167, 69, .5)
}

.badge-danger-trans {
    color: #000;
    background-color: #dc354555
}

a.badge-danger-trans:focus,
a.badge-danger-trans:hover {
    color: #000;
    background-color: #bd213055
}

a.badge-danger-trans.focus,
a.badge-danger-trans:focus {
    outline: 0;
    box-shadow: 0 0 0 .2rem rgba(220, 53, 69, .5)
}

.fixed-bottom-right {
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 1030
}

.fixed-right {
    position: fixed;    
    right: 0;
    z-index: 1030
}

@supports ((position:-webkit-sticky) or (position:sticky)) {
    .sticky-top {
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        z-index: 1000;
    }
	.sticky-bottom {
        position: -webkit-sticky;
        position: sticky;
        bottom: 0;
        z-index: 1000;
    }
    .sticky-left {
        position: -webkit-sticky;
        position: sticky;
        left: 0;
        z-index: 1000;
    }
    .sticky-right {
        position: -webkit-sticky;
        position: sticky;
        right: 0;
        z-index: 1000;
    }
}


.mr-4-5,
.mx-4-5 {
    margin-right: 2rem !important
}
.ml-4-5,
.mx-4-5 {
    margin-left: 2rem !important
}

.mb-4-5,
.my-4-5 {
    margin-bottom: 2rem !important
}
.mt-4-5,
.my-4-5 {
    margin-top: 2rem !important
}


.img-feed{
    max-width: 100%;
}

.img-hot{    
    padding: 0;
    background-color: #fff;
    max-width: 100%;
    height: auto;
}

.main-content-left{
    width:100%;
}

.ad-content-right{
    width:0%;
    height:0;
    float:right;
    display: none;    
}

.w-md-50 {
    width: 100% !important
}

.dont-show-on-mobile{
    display: none;
}

@media (min-width:576px) {
    .img-feed{
        max-width: 50%;
    }
    .w-md-50 {
        width: 50% !important
    }
}

@media (min-width:768px) {
    .img-hot{
        max-width: 60%;    
    }
    .dont-show-on-mobile{
        display: contents !important;
    }
}

@media (min-width:992px) {

}

@media (min-width:1200px) {

}

.fixed-top-admin {
    position: fixed;
    top: 10;
    right: 0;
    left: 0;
    z-index: 1030
}

.pointer{
    cursor: pointer;
}

.max-lines-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical; 
    overflow: hidden;
    white-space: normal;
    min-height: 2em;
}

.max-lines-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical; 
    overflow: hidden;
    white-space: normal;    
    min-height: 2.5em;    
}

.max-lines-1 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical; 
    overflow: hidden;
    white-space: normal;    
    min-height: 2.5em;    
}

.smaller{
    font-size: 75%;
    font-weight: 400
}
.small-70{
    font-size: 70%;
    font-weight: 400
}
.small-60{
    font-size: 60%;
    font-weight: 400
}

.border-5{
    border-radius:5px;        
    border: 1px solid #99999955;
}

.to-parent-top-right {
    position: absolute;
    top: 5px;
    right: 5px;    
}

.to-parent-bottom-right {
    position: absolute;
    bottom: 5px;
    right: 5px;    
}
.center {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.v-center {
    display: flex;   
    align-items: center;
}
.h-center {
    display: flex;   
    justify-content: center;	
    text-align: center;
}
.center-fixed {
    display: flex;
    margin: 0;
    position: fixed;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    justify-content: center;
    align-items: center;
    text-align: center;
}
.fixed-left {
	position: fixed;
	left: 1vw;
	bottom: 5vh;
	z-index: 1030;
}

.fixed-bottom-left {
	position: fixed;
	left: 1vw;
	bottom: 1vh;
	z-index: 1030;
}

.fixed-bottom-right {
	position: fixed;
	bottom: 0;
	right: 0;
	z-index: 1030
}

.fixed-top-right {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 1030
}

.fixed-top-center {
	position: fixed;
	top: 5vh;
	right: 5vw;
	left: 5vw;
	z-index: 1030
}

.fixed-center {
	position: fixed;
	top: 5vh;
	right: 5vw;
	left:5vw;
	bottom: 5vh;
	z-index: 1030;
	text-align:center;
}

.fixed-bottom-center {
	position: fixed;
	bottom: 5vh;
	right: 5vw;
	left:5vw;
	z-index: 1030;
}

.absolute-top-center {
	position: absolute;
	top: 2px;	    
    left: 50%;
    right: 50%;

	z-index: 1030
}