body {
    margin: 0;
}

* {
    box-sizing: border-box;
    font-weight: normal;
}

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

a {
    text-decoration: none;
    cursor: pointer;
}

/*a:hover {
        text-shadow: 0 0 2px currentColor;
    }*/

.flex {
    display: -webkit-flex; /* Safari */
    -webkit-flex-wrap: wrap; /* Safari 6.1+ */
    display: flex;
    flex-wrap: wrap;
    display: -ms-flexbox;
    -ms-flex-wrap: wrap;
}

.centerCenter {
    justify-content: center;
    -webkit-justify-content: center;
    align-items: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    -ms-flex-pack: center;
}

.justifyCenter {
    justify-content: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
}

.justifyStart {
    justify-content: flex-start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
}

.justifyEnd {
    justify-content: flex-end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
}

.around {
    justify-content: space-around;
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
}

.flexStart {
    justify-content: flex-start;
    -webkit-justify-content: flex-start;
    -ms-align-content: flex-start;
}

.between {
    justify-content: space-between;
    -webkit-justify-content: space-betweeen;
    -ms-flex-pack: justify;
}

.column {
    flex-direction: column;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
}

.contentCenter {
    align-content: center;
    -webkit-align-content: center;
}

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

.alignCenter {
    align-items: center;
    -webkit-align-items: center;
}

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

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

.halfDiv {
    width: 50%;
}

.shrinkedHalfDiv {
    width: 48%;
}

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

.center {
    text-align: center;
}

div.inner {
    width: 100%;
    height: 100%;
}

.messageBG, .uploaderBG, .deleteBG {
    width: 100%;
    height: 100%;
    position: fixed;
    display: none;
    z-index: 11;
}

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

.deleteBG {
    left: 0;
    top: 0;
    background-color: rgba(240, 240, 241, 0.60);
}

.deleteBox {
    background-color: #424242;
    border-radius: 5px;
    border: 1px solid #291804;
    border-top-color: #424242;
    width: 350px;
    height: 180px;
    position: relative;
    text-align: center;
    color: #CCCCCC;
    padding: 15px 40px 15px;
    margin-bottom: 90px;
}

.deleteTitle {
    font-size: 15px;
}

.deleteText {
    border-top: 1px solid;
    padding-top: 12px;
    font-size: 12px;
}

.divDelButtons {
    padding-top: 10px;
}

    .divDelButtons input {
        width: 100px;
        border: none;
        background: linear-gradient(#C04E44,#AA332D);
        padding: 5px 0 7px;
        border-top: 2px solid #D66665;
        border-radius: 3px;
        color: white;
        font-weight: bold;
    }

input.cancelDelete {
    border-top-color: #2A80D5;
    background: linear-gradient(#286FCB, #2158AA);
}

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

.messageBox {
    color: #1b1818;
    /*word-spacing:1px;   suggest */
    font-size: 14px;
}

    .messageBox .msgTitle, .messageBox .spClose {
        color: #3F3F3F; /*suggested: #0471C5*/
        margin-top: 0;
    }

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

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

.noMargin {
    margin: 0;
}

.hide {
    display: none;
}

.flex1 {
    flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
}

.noWrap {
    flex-wrap: nowrap;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
}

.mobileWrap{
    flex-wrap: nowrap;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
}

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


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

    .mobileCenter {
        text-align: center;
    }

    .mobileHide {
        display: none;
    }

    .mobileFill {
        width: 100%;
    }

    .mobileNoPadd {
        padding-right: 0;
        padding-left: 0;
    }
    
    .mobileWrap{
        flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
    }
}
