@import url('open-iconic/font/css/open-iconic-bootstrap.min.css');

html, body {
    overflow-x: hidden;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: var(--BodyColorDarkMode);
    margin: 0px;
    color: var(--TextColorDarkMode);
}

a, .btn-link {
    color: #0366d6;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

app {
    position: relative;
    display: flex;
    flex-direction: column;
}

.ltr.main {
    /*padding-left: 50px;*/
}

.rtl.main {
    /*padding-right: 50px;*/
}

.top-row {
    height: 3.5rem;
    display: flex;
    align-items: center;
}

.main {
    flex: 1;
    overflow-y: hidden;
}

    .main .top-row {
        background-color: var(--NeutralColor);
        /*border-bottom: 1px solid #d6d5d5;*/
        justify-content: flex-end;
        padding-right: 10px;
        height: 80px;
    }

    .main .top-row.Crud {
        height: 60px;
    }
        .main .top-row > a, .main .top-row .btn-link {
            white-space: nowrap;
            margin: 0 1rem;
        }

        .main .top-row a:first-child {
            overflow: hidden;
            text-overflow: ellipsis;
        }

    .main > .top-row > a > img {
        height: 70px;
        width: 70px;
        top: 3px;
        position: relative;
    }


.sidebar .top-row {
    background-color: rgba(0,0,0,0.4);
}

.sidebar .navbar-brand {
    font-size: 1.1rem;
}

.sidebar .oi {
    width: 2rem;
    font-size: 1.1rem;
    vertical-align: text-top;
    top: -2px;
}

.sidebar .nav-item {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .sidebar .nav-item:first-of-type {
        padding-top: 1rem;
    }

    .sidebar .nav-item:last-of-type {
        padding-bottom: 1rem;
    }

    .sidebar .nav-item a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

        .sidebar .nav-item a.active {
            background-color: rgba(255,255,255,0.25);
            color: white;
        }

        .sidebar .nav-item a:hover {
            background-color: rgba(255,255,255,0.1);
            color: white;
        }

.content {
    margin: 0 auto;
    max-width: 2000px;
    padding-top: 1.1rem;
    padding-left: var(--NavigationMenuCollapsed);
}

.navbar-toggler {
    background-color: rgba(255, 255, 255, 0.1);
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid red;
}

.validation-message {
    color: red;
}

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }


.NewsTab {
    display: flex;
    padding: 0;
    height: 50px;
    list-style: none;
    width: 100%;
    margin: 20px 20px;
}

    .NewsTab > li {
        float: left;
        width: 23%;
        text-align: center;
        font-size: 18px;
        color: #777;
        font-weight: bold;
        cursor: pointer;
        padding: 12px 10px;
        line-height: 28px;
        position: relative;
        transition: all .3s ease;
    }

        .NewsTab > li:not(:first-child) {
            border-left: 2px solid #b2bec4;
        }

        .NewsTab > li:hover:not(.selected) {
            color: var(--SecondaryColor);
        }

        .NewsTab > li.selected::after {
            content: "";
            width: 0;
            height: 0;
            border-left: 10px solid transparent;
            border-right: 10px solid transparent;
            border-top: 10px solid #29504d;
            position: absolute;
            bottom: -10px;
            right: 50%;
            margin-right: -10px;
            transition: all .1s ease-out;
        }

        .NewsTab > li.selected {
            color: #b2bec4;
            background: #29504d;
        }

.ColorContainer {
    margin: 10px 20px;
    padding: 10px 5px;
    border-bottom-style: groove;
}

.Container > .row > label {
    font-weight: bold;
}

.Container > .row:hover label {
    color: var(--PrimaryColor);
}

.ColorContainer:hover {
    background-color: #b2bec4
}

.Container {
    padding: 0 30px;
    padding-bottom: 20px;
}

.Style {
    padding: 0 25px;
}

.logIcon {
    width: 25px;
    padding: 5px 25px;
    margin-top: 5px;
    margin-right: 10px;
    margin-left: 10px;
    border-radius: 15px;
}

    .logIcon:hover {
        background-color: var(--PrimaryColor);
    }

@media screen and (max-width : 405px) {
    .NewsTab {
        margin: 20px 0;
    }

        .NewsTab > li {
            font-size: 15px;
        }
}

@media screen and (max-width : 470px) {
    .logIcon {
        padding: 5px 10px;
    }
}
/* footer starts here */
.footer {
    background-color: #29504d;
    font-size: 14px;
    color: #b2bec4;
    margin: 0 20px;
    width: auto;
    height: max-content;
    padding: 20px 20px;
}

.hidden {
    display: none;
}

.footer-gray {
    background-color: #EFEFEF;
    width: 100%;
}

.footer-custom {
    color: #888;
    font: normal normal 12px/1.4 "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
    max-width: 1008px;
    box-sizing: border-box;
    margin: 0 auto;
    padding: 24px;
}

    .footer-custom:after {
        display: table;
        clear: both;
        content: "";
    }

.footer-lists:after {
    display: table;
    clear: both;
    content: "";
}

.ftr-hdr {
    color: #000;
    font: 22px/1.4 'BebasNeueRegular', BebasNeue, 'Bebas Neue', Arial, sans-serif;
    margin: 1em 0 0;
}

@media only screen and (min-width: 768px) {
    .ftr-hdr {
        font-size: 18px;
    }
}

.footer-list-wrap {
    width: 50%;
    float: left;
    box-sizing: border-box;
}

@media only screen and (min-width: 568px) {
    .footer-list-wrap {
        width: 33.3333%;
    }
}

@media only screen and (min-width: 768px) {
    .footer-list-wrap {
        width: 25%;
    }
}

.ftr-links-sub {
    padding: 0;
    margin: 0;
}

    .ftr-links-sub:after {
        display: table;
        clear: both;
        content: "";
    }

    .ftr-links-sub li {
        display: block;
        list-style-type: none;
        margin: 0;
        padding: 3px 0;
        color: #888;
        font: normal normal 12px "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
        text-transform: uppercase;
        /*width: 150px;*/
    }

        .footer-custom a,
        .footer-custom a:link,
        .footer-custom a:visited,
        .ftr-links-sub li .link {
            text-decoration: none;
            color: #888;
            padding: 5px 0;
            display: block;
        }

.footer-custom .footer-legal a {
    display: inline;
}

.footer-custom a:hover,
.footer-custom a:active,
.ftr-links-sub li .link:hover {
    text-decoration: underline;
    color: #888;
    cursor: pointer;
}

@media only screen and (min-width: 768px) {
    .footer-custom a, .footer-custom a:link, .footer-custom a:visited, .ftr-links-sub li .link {
        padding: 0;
    }
}
/* BEGIN EMAIL CAPTURE STYLES*/

.footer-email {
    text-align: center;
}

#ftrEmailForm {
    height: 44px;
}

    #ftrEmailForm .error {
        display: none;
        color: red;
        text-align: left;
    }

    #ftrEmailForm #ftrEmailInput {
        background: none repeat scroll 0 0 #FFF;
        border: 1px solid #D6D6D6;
        box-sizing: border-box;
        color: #888;
        float: left;
        font: normal normal 14px/1.4 "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
        padding: 5px;
        width: 70%;
        height: 100%;
    }

        #ftrEmailForm #ftrEmailInput:hover {
            border: 1px solid #888;
        }

        #ftrEmailForm #ftrEmailInput:focus {
            border: 1px solid #ef9223;
            outline: #ef9223 auto 5px;
        }

    #ftrEmailForm .button {
        width: 30%;
        height: 100%;
        padding: 5px;
        float: left;
        border: 1px solid #DFDFDF;
        box-sizing: border-box;
        color: #000;
        font: normal bold 18px/1 BebasFamily, BebasNeueRegular, "Bebas Neue", Helvetica, Arial, sans-serif;
        text-align: center;
        text-transform: uppercase;
        background: #FFF;
        background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJod…EiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, white), color-stop(100%, #e1e1e1));
        background: -webkit-linear-gradient(top, white 0, #e1e1e1 100%);
        background: -moz-linear-gradient(top, white 0, #e1e1e1 100%);
        background: -ms-linear-gradient(top, white 0, #e1e1e1 100%);
        background: -o-linear-gradient(top, white 0, #e1e1e1 100%);
        background: linear-gradient(to bottom, white 0, #e1e1e1 100%);
        cursor: pointer;
        vertical-align: middle;
        outline: none;
    }

        #ftrEmailForm .button:hover,
        #ftrEmailForm .button:active {
            background: black;
            color: #FFF;
            outline: none;
        }
/* BEGIN SOCIAL STYLES*/

.footer-social {
    text-align: center;
}

    .footer-social ul {
        padding: 0;
        display: inline-block;
        list-style-type: none;
    }

        .footer-social ul:after {
            display: table;
            clear: both;
            content: "";
        }

    .footer-social li {
        float: left;
        margin: 0 15px 0 0;
        padding: 0;
    }

@media only screen and (min-width: 768px) {
    .footer-lists {
        width: 100%;
    }

    .footer-email {
        width: 50%;
        float: left;
        text-align: left;
    }

    .footer-social {
        width: 45%;
        margin-left: 5%;
        float: left;
        text-align: left;
    }
}

@media only screen and (min-width: 1008px) {
    .footer-lists {
        width: 66.6666%;
        float: left;
    }

    .footer-email {
        width: 33.3333%;
    }

    .footer-social {
        width: 33.3333%;
        float: right;
        margin-left: 0;
    }
}

.footer-legal {
    padding: 15px 0 0;
    clear: left;
}

.footer-payment {
    text-align: center;
}

@media only screen and (min-width: 768px) {
    .footer-legal {
        width: 66.6666%;
        float: left;
    }

    .footer-payment {
        width: 33.3333%;
        float: left;
    }
}

@media only screen and (min-width: 1008px) {
    .footer-payment {
        text-align: left;
    }
}

.footer-payment ul {
    padding: 0;
    display: inline-block;
    list-style-type: none;
}

    .footer-payment ul li {
        display: inline-block;
        margin: 0 6px;
    }

@media only screen and (min-width: 1008px) {
    .footer-payment ul li.ftr-stella {
        margin-left: 0;
    }
}

.ftr-bbb span,
.ftr-stella span {
    background-image: url("http://cache1.artprintimages.com/images/jump_pages/rebrand2/images/subnav2.png");
    background-repeat: no-repeat;
    background-color: transparent;
    cursor: pointer;
    display: inline-block;
    height: 36px;
    margin: 0;
    padding: 0;
}

.ftr-bbb span {
    background-position: -339px -8px;
    width: 96px;
}

.ftr-stella span {
    background-position: -339px -107px;
    width: 57px;
}

.ShowImage {
    width: 150px;
    right: 75px;
}

.content.rtl .CRUDContenaire .ShowImage {
    float: left;
}

.content.ltr .CRUDContenaire .ShowImage {
    float: right;
}
textarea {
    width: 50%;
    font-weight: bold;
    padding: 12px 5px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 20px;
    background: rgba(0,0,0,0.10);
    box-sizing: border-box;
    color: var(--SecondaryColor);
}