/* ============= Index =================
- Reset Css
- Attribute in Master page
- Font Page
    - Responsive Font Header
- Border
- Color & Background
- Main Menu & Button
- Pagination & tag a link
- Footer
- Hover
*/

/*Reset Css*/
body {
    /*font-family: 'Avenir Next Condensed', Avenir Next Condensed,Avenir Next Condensed !important;*/
    padding: 0px;
    margin: 0px;
}

/*---============ Attribute in Master page ===========--- */
html {
    position: relative;
    min-height: 100%;
}

div .col {
    border: 1px solid black;
}

.container {
    /*width: auto;*/
    text-align: center;
    padding: 0;
}

.row {
    margin-left: 0px !important;
    margin-right: 0px !important;
}
/*========== Font Page ==============*/
/*@font-face {
                font-family: 'AvenirNext';
                src: url('<%= ResolveUrl("~/fonts/AvenirNextLTPro-Regular.woff2")%>');
            }

            @font-face {
                font-family: 'AvenirNextDemi';
                src: url('<%= ResolveUrl("~/fonts/AvenirNextLTPro-Regular.woff2")%>');
            }

            @font-face {
                font-family: 'AvenirNextBold';
                src: url('<%= ResolveUrl("~/fonts/AvenirNextLTPro-Regular.woff2")%>');
            }*/

.font-me {
    font-family: AvenirNext, 'Malgun Gothic', 'Segoe UI Semibold' !important;
    font-style: normal;
}

.for-label {
    font-family: AvenirNext, 'Malgun Gothic', 'Segoe UI Semibold' !important;
    font-size: 16px;
    color: #3200E6;
}

.for-link {
    font-family: AvenirNext, 'Malgun Gothic', 'Segoe UI Semibold' !important;
    font-size: 14px;
    color: #575756;
    text-decoration: underline;
}

.head {
    font-family: AvenirNextDemi, 'Malgun Gothic', 'Segoe UI Semibold' !important;
    font-size: 26px;
    font-weight: bold;
    color: #3200E6;
}

#dvHeader {
    background-image: url("/Images/Geodis_Horizontal_logo_W96xH37px.png");
    background-position: 2% 50%;
    background-repeat: no-repeat;
}

html * :not(.rsIcon) :not(span) {
    font-family: 'AvenirNext', 'Malgun Gothic', 'Segoe UI Semibold';
    font-size: 12px;
}
/* ================ --Font - page -- Responsive Font Header ========================*/
@media screen and (min-width: 1370px) {
    .head {
        font-size: 26px;
        transition: .5s;
    }

    fontHeader {
        font-size: 26px;
        transition: .5s;
    }
}

@media screen and (max-width: 1369px) {
    .head {
        font-size: 15px;
        transition: .5s;
    }

    .fontHeader {
        font-size: 15px;
        transition: .5s;
    }
}

.fontHeader {
    margin-right: 0;
    text-align: right;
    font-size: 26px;
}
/*========= Border ==================*/
input, select, textarea, button {
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

.drop {
    color: #222;
    border-color: #222;
}

div[class^='droptarget'] {
    width: 95%;
    min-height: 100px;
    height: auto;
    margin: 10px 10px 10px 0px;
    padding: 5px;
    border: 1px dashed #aaaaaa;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

.droptargetUrgentPopup {
    width: 95%;
    min-height: 100px;
    height: auto;
    margin: 10px 10px 10px 0px;
    padding: 5px;
    border: 1px dashed #aaaaaa;
}

.drop-zone {
    color: #ccc;
    border-style: dashed;
    border-color: #ccc;
    line-height: 200px;
    text-align: center;
    white-space: pre-wrap; /* CSS3 */
    white-space: -moz-pre-wrap; /* Firefox */
    white-space: -o-pre-wrap; /* Opera 7 */
    word-wrap: break-word; /* IE */
}
/*.aspNetDisabled, .disabled, input:read-only, input:disabled, input[disabled], textarea:disabled, select:disabled, select[disabled] {
                background-color: #eee !important;
                color: #555;
            }*/


/* ======== Color & Background =============*/
.fontBlue {
    color: #3200E6;
}

.backBlue {
    background: #3200E6;
}

.backLightBlue {
    background: #8DDAF5;
    color: #3200E6;
}

.backWhite {
    background: white;
}

.fontBlack {
    color: black;
}

.fontWhite {
    color: white;
}

.divInfo {
    border-radius: 5px !important;
}

.subHeader {
    background-color: #3200E6;
    color: white !important;
}

.mainButton {
    background-color: #3200E6 !important;
    color: white !important;
}

.subButton {
    color: #3200E6;
    background: #8DDAF5;
    border-color: #8DDAF5;
}


.headerMaster {
    background: #FFFFFF; /* For browsers that do not support gradients */
    background: -webkit-linear-gradient(#FFFFFF, #E6F0F0); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(#FFFFFF, #E6F0F0); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(#FFFFFF, #E6F0F0); /* For Firefox 3.6 to 15 */
    background: linear-gradient(#FFFFFF, #E6F0F0); /* Standard syntax (must be last) */
}

.required:after {
    content: "*";
    color: red;
}

.requiredAdditional:after {
    content: "*";
    color: yellow;
}

.text-muted {
    margin: 0px;
    text-align: center;
}

.overlay {
    position: fixed;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    overflow: hidden;
    padding: 0;
    margin: 0;
    background-color: white;
    filter: alpha(opacity=50);
    opacity: 0.5;
    z-index: 200000;
}

.menuLabel {
    color: white;
}

    .menuLabel:hover {
        text-decoration: none; /* or underline*/
        color: #8DDAF5;
    }

.table {
    background-color: white !important;
    padding: 20px;
}


.card.bg-primary {
    border-color: #3200E6 !important;
}

.card-header {
    background: #3200E6 !important;
}

/*============ Main Menu & Button ==================*/
/*input[type="submit"]:hover:not(.subButton), input[type="button"]:hover:not(.subButton):not(.clsFlow):not(.clsSms):not(.clsUnlock) {
    background-color: hsl(252, 100%, 20%) !important;
    border-color: hsl(252, 100%, 20%) !important;
}*/

.btn-primary {
    background-color: #3200E6;
    border-color: #3200E6;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, .2);
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 1px rgba(0, 0, 0, .075);
}

    .btn-primary:disabled {
        background-color: rgba(87,87,87,1) !important;
        color: white;
    }

.btn-me {
    display: inline-block;
    padding: 0;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.428571429;
    text-align: center;
    white-space: nowrap;
    vertical-align: top;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
    background-image: none;
    border: 0px solid transparent;
    /*border-radius: 0px !important;*/
    height: 25px;
    min-width: 150px;
    /*width: 100%;*/
    background-color: #011956 !important; /*rgba(50,0,230,10) !important;*/ /*#3FBDEB*/
    color: white !important;
    /*font-family: 'Avenir Next Condensed', Avenir Next Condensed, Avenir Next Condensed !important;*/
    text-shadow: 0 !important;
}

    .btn-me :disabled, .aspNetDisabled {
        display: inline-block;
        padding: 0;
        margin-bottom: 0;
        font-size: 14px;
        font-weight: normal;
        line-height: 1.428571429;
        text-align: center;
        white-space: nowrap;
        vertical-align: top;
        cursor: pointer;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        -o-user-select: none;
        user-select: none;
        background-image: none;
        border: 0px solid transparent;
        /*border-radius: 0px !important;*/
        /*height: 25px;*/
        /*min-width: 150px;*/
        /*width: 100%;*/
        background-color: gray !important; /*#3FBDEB*/
        color: white !important;
        font-family: 'Avenir Next Condensed', Avenir Next Condensed, Avenir Next Condensed !important;
        text-shadow: 0 !important;
    }
    
    .btn-me:hover {
        background-color: #011956 !important;
        opacity: 0.4 !important;
        color: white !important;
    }

.btn-secondary {
    display: inline-block;
    padding: 0;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.428571429;
    text-align: center;
    white-space: nowrap;
    vertical-align: top;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
    background-image: none;
    border: 0px solid transparent;
    /*border-radius: 0px !important;*/
    height: 25px;
    min-width: 50px;
    /*width: 100%;*/
    background-color: #011956 !important; /*rgba(50,0,230,10) !important;*/ /*#3FBDEB*/
    color: white !important;
    /*font-family: 'Avenir Next Condensed', Avenir Next Condensed, Avenir Next Condensed !important;*/
    text-shadow: 0 !important;
}

.btn-secondary:hover {
    color: white !important;
    background-color: #EB692B !important;
}

/*======= Pagination & tag a link =========*/
.pagination > .active > a {
    color: #fff !important;
    background-color: #011956 !important;
    border-color: white !important;
}

.pagination > li > a {
    color: #011956 !important;
}

.removeLink {
    text-decoration: none !important;
}

a:not(.menuLabel, .list-group-item-heading) {
    cursor: pointer;
    color: #011956
}

/*============  Footer ===========================*/
.footer {
    position: absolute;
    bottom: 0;
    width: 100% !important;
    /* background-color: rgba(50,0,230,10)*/
    padding: 1px;
    text-align: center;
}

.FooterLink {
    background-color: Transparent;
    color: rgba(50,0,230,10);
    font-family: AvenirNextDemi, 'Malgun Gothic', 'Segoe UI Semibold' !important;
    font-size: 14px !important;
    cursor: auto;
    text-decoration: none;
}

    .FooterLink:hover {
        cursor: pointer;
    }

.text-footer {
    font-family: AvenirNext, 'Malgun Gothic', 'Segoe UI Semibold';
    font-size: 14px !important;
    color: rgba(50,0,230,10) !important;
    margin: 0px;
    text-align: center;
}

/*=========  Hover ==================*/
.siteMapOperation {
    color: white;
    margin-left: 5px;
    margin-right: 5px;
}

.siteMap:hover {
    color: #8DDAF5 !important;
    cursor: pointer;
}

.FooterLink:hover {
    text-decoration: underline;
    color: #8DDAF5
}

.for-link:hover {
    color: #3200E6;
}

textarea:hover, select:hover {
    color: #3200E6;
}

.tb-hover.table > tbody > tr:hover {
    background-color: #E3E4E8 !important;
    color: black !important;
}

a:hover:not(.menuLabel) {
    color: #EB692B !important;
}

.removeLink:hover {
    text-decoration: none !important;
    color: white !important;
    cursor: auto;
}

.infoIcon:hover {
    color: #8DDAF5;
}

/*=========  New Style InvoiceLine Page ==================*/
/*.rpFilter{
                max-height: 280px !important;
                height: 280px !important;
                width: 100% !important;
            }*/
/*.rpMainGrids{
                min-height: calc(100vh - 465px) !important;
                max-height: calc(100vh - 50px) !important;
                position: relative;
            }*/
.rpFilter {
    background-color: #ffffff;
}

.hideAfterLoad {
    visibility: hidden;
}

.showAfterLoad {
    visibility: visible !important;
}

.hideAlls {
    visibility: hidden;
}

.showDatas {
    display: inline;
}

.hideDatas {
    display: none;
}
/*.allElementHeight{
                height: calc(100vh - 140px);
                max-height: calc(100vh - 140px);
                min-height: calc(100vh - 156px);
            }*/

            .backBlueMain{
                display: flex;
                justify-content: space-between;
                padding: 0 130px;
            }


    /*Style telerik window*/
    .hiddenOverY {
        overflow-y: hidden;
    }

    .RadWindow .rwCorner {
        width: 30px !important;
        background-color: transparent !important;
        background-image: none !important;
        background-position: 50px 50px !important;
    }

    .rwTitlebar, .rwFooterCenter {
        background-color: #FFFFFF !important;
        background-image: none !important;
        background-position: 50px 50px !important;
    }

    .RadWindow .rwIcon {
        margin: 8px 5px 0 12px !important;
    }

    .RadWindow_Default .rwTable .rwTitlebarControls em {
        padding-top: 3px !important;
        margin-left: -20px;
    }
    .rwTitlebarControls{
        background-color: #e4e4e4;
    }
.rwTopResize {
    background-color: #e4e4e4;
}

.RadWindow_Default .rwStatusbar {
    background-image: none !important;
    background-color: #FFFFFF;
}

    .RadWindow_Default .rwTopResize {
        background-image: none !important;
    }

    .RadWindow_Default a.rwIcon {
        background-image: none !important;
    }

    .RadWindow_Default .rwControlButtons a {
        position: absolute;
        right: 38px;
        top: 7px;
        width: 32px;
        height: 32px;
        opacity: 0.4;
        z-index: 1;
        transition: all 0.1s ease-in-out;
    }

    .RadWindow_Default .rwControlButtons a:hover {
        opacity: 1;
    }

    .RadWindow_Default .rwControlButtons a::after, .RadWindow_Default .rwControlButtons a:before {
        position: absolute;
        left: 24px;
        content: ' ';
        height: 16px;
        width: 2px;
        background-color: #333;
    }

    .RadWindow_Default .rwControlButtons a::after {
        transform: rotate(-45deg);
    }

    .RadWindow_Default .rwControlButtons a:before {
        transform: rotate(45deg);
    }

    .RadWindow_Default .rwControlButtons a {
        background-image: none !important;
    }

    .RadWindow .rwControlButtons a {
        width: 33px !important;
        overflow: visible !important;
        cursor: pointer !important;
    }

    .RadWindow_Default .rwStatusbar div {
        background-image: none !important;
    }