body {
    margin: 0;
}

* {
    box-sizing: border-box;
}

.limittedWidth {
    max-width: 1100px;
    width: 100%;
}

a,
a:link,
a:visited,
.greenLink {    
    text-decoration: none;
    cursor: pointer;
}

.ellipsis {
    white-space: nowrap;
    text-overflow: ellipsis;
    width: 100%;
    display: inline-block;
    overflow: hidden;
}

.flex {
    display: flex;
    flex-wrap: wrap;
}

.centerCenter {
    justify-content: center;
    align-items: center;
}

.jc, .justifyCenter {
    justify-content: center;
}

.js, .justifyStart {
    justify-content: flex-start;
}

.je, .justifyEnd {
    justify-content: flex-end;
}

.ja, .around {
    justify-content: space-around;
}

.flexStart {
    justify-content: flex-start;
}

.jb, .between {
    justify-content: space-between;
}

.column {
    flex-direction: column;
}

.ac, .contentCenter {
    align-content: center;
}

.contentStart {
    align-content: flex-start;
}

.alignCenter {
    align-items: center;
}

.alignStart {
    align-items: flex-start;
}

.alignEnd {
    align-items: flex-end;
}

.halfDiv {
    width: 50%;
}

.shrinkedHalfDiv {
    width: 48%;
}

.numberOrEnglish {
    text-align: left;
    direction: ltr;
}

.center {
    text-align: center;
}

.onlyMobile {
    display: none;
}

.messageBG, .uploaderBG, .deleteBG, .popupBG {
    width: 100%;
    height: 100%;
    position: fixed;
    display: none;
    z-index: 1000;
    top: 0;
    left: 0;
}

.messageBG, .uploaderBG {
    background-color: rgba(10, 1, 1, 0.3);
}

.messageBox {
    text-align: justify;
    width: 520px;
    border-radius: 7px;
    padding: 15px 40px 15px;
    background-color: #fefefe;
    margin-bottom: 50px;
    position: relative;
}

.messageBox {
    color: #1b1818;
    font-size: 14px;
}

    .messageBox .msgTitle, .messageBox .spClose {
        color: #3F3F3F; 
        margin-top: 0;
    }

.msgText {
    border-top: 1px solid #a2d7ec;
    padding-top: 12px;
    min-height: 100px;
}

.grid{
    display:grid;
    grid-gap:10px;
    grid-template-columns:auto auto;
}

.deactivated {
    filter: grayscale(100%);
    opacity: 0.5;
}

.noMargin {
    margin: 0;
}

.hide {
    display: none;
}

.flex1 {
    flex: 1;
}

.grow1{    
	flex-grow: 1;
}


.noWrap {
    flex-wrap: nowrap;
}

.mobileNoPadd {
    padding-right: 30px;
    padding-left: 30px;
}

.margin50px0{
    margin: 50px 0 0px;
}


.underline {
    border-bottom: 1px solid;
}

@media only screen and (max-width: 1000px) {
    .tabletHide {
        display: none;
    }
}


@media only screen and (max-width: 480px) {
    .halfDiv, .shrinkedHalfDiv {
        width: 100%;
    }

    .mobileCenter {
        text-align: center;
    }

    .mobileHide {
        display: none;
    }

    .onlyMobile {
        display: block;
    }

    .mobileFill {
        width: 100%;
    }

    .mobileNoPadd {
        padding-right: 0;
        padding-left: 0;
    }

}
