/*-----
  green:	#91C66A #81B65A
  black:	#2c2a29 #0D0D0D
  gray:		#4C5156 #666
  gray2:	#D5C8BF;
  
-----------------------------*/

/*#region FONTS*/

/*Delargo DT*/

@font-face {
    font-family: 'hammersmith';
    src: url('/style/fonts/HammersmithOne-Regular.ttf');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Open Sans';
    src: url('/style/fonts/DXI1ORHCpsQm3Vp6mXoaTXhCUOGz7vYGh680lGh-uXM.woff');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'fv_almelo';
    src: url('/style/fonts/fv_almelo-webfont.eot');
    src: url('/style/fonts/fv_almelo-webfont.eot?#iefix') format('embedded-opentype'), url('/style/fonts/fv_almelo-webfont.woff') format('woff'), url('/style/fonts/fv_almelo-webfont.ttf') format('truetype'), url('/style/fonts/fv_almelo-webfont.svg#droid_serifregular') format('svg');
    font-weight: normal;
    font-style: normal;
}
/*#endregion*/

/*#region HTML, BODY..*/

html, body {
    height: 100% !important;
    padding: 0;
    margin: 0;
}

body {
    background: url('/images/grey.png');
    color: #666A6F;
    cursor: default;
    font-family: 'Open Sans';
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'hammersmith';
    text-transform: uppercase;
}

#main {
    margin-top: 2rem;
}

.wrapper {
    min-height: 100%;
    height: auto !important;
    height: 100%;
    margin: 0 auto -3em;
}

footer, .push {
    min-height: 3em;
}

footer {
    background: #666A6F;
    color: #fff;
    padding-top: 12px;
}

    footer a {
        color: #fff;
    }

.logoAnkira {
    font-family: fv_almelo;
}

    .logoAnkira img {
        height: 1.5rem;
    }

    .logoAnkira:hover, .logoAnkira:focus {
        color: #E36655 !important;
    }

a {
    color: #666A6F;
}

    a:hover, a:focus {
        color: #6EC72E !important;
    }

    a.altLink {
        color: #6EC72E !important;
    }

        a.altLink:hover, a:focus {
            color: hsla(95,62%,58%,1) !important;
        }

hr {
    border-color: #E7E6E6;
}

.popup div {
    border: 1px solid;
    padding: 5px;
    position: absolute;
    background: #fff;
    display: none;
}

.popup:hover div,
.popup:focus div {
    display: block;
}


table tfoot, table thead, table tbody {
    background: transparent;
    color: #666A6F;
}

    table tbody, table tfoot, table thead, table tbody tr {
        border: 0;
        border-bottom: 1px solid #E7E6E6;
    }

        table tbody tr:nth-child(even) {
            background-color: transparent;
        }

.currentpage {
    color: #7AC142;
}

.trNew {
    background: #f3f3f3 !important;
}

.pagination .current {
    background: transparent;
    color: #666a6f;
}

/*#endregion*/

/*#region MENU BAR*/
.title-bar {
    background: #fff;
    padding: 0.9rem;
}

.menu-icon {
    color: #666A6F;
}

    .menu-icon:hover {
        color: #7AC142;
    }

    .menu-icon:after {
        display: none;
    }

.top-bar {
    background: #fff;
    border-bottom: 1px solid #E7E6E6;
}

    .top-bar label {
        line-height: 30px !important;
    }

    .top-bar ul {
        background: #fff;
    }

        .top-bar ul.menu:not(.submenu) {
            display: inline-block;
        }

        .top-bar ul li {
            background: #fff;
        }

            .top-bar ul li a {
                color: #666A6F;
            }

.menu-text {
    padding: 0;
}

    .menu-text a {
        padding: 0 !important;
    }

    .menu-text img {
        height: 38px;
    }

.dropdown.menu > li.opens-left > .is-dropdown-submenu {
    border: 1px solid #e7e6e6;
}

ul.submenu:after {
    content: "";
    position: absolute;
    right: 10px;
    top: -8px;
    width: 16px;
    height: 16px;
    z-index: 9999;
    background: #fff;
    border-style: solid;
    border-width: 1px;
    border-color: #e7e6e6 transparent transparent #e7e6e6;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

@media only screen and (max-width: 40em) {
    .menu-text {
        display: none !important;
    }
}

.dropdown.menu .submenu {
    border: none;
}

.dropdown.menu .is-dropdown-submenu-parent.is-right-arrow > a::after {
    border-color: #fff transparent transparent;
}

.is-drilldown-submenu-parent > a::after {
    border-color: transparent transparent transparent #fff;
}

.js-drilldown-back::before {
    border-color: transparent #fff transparent transparent;
}

.dropdown.menu > li.is-dropdown-submenu-parent > a:after {
    border-color: #7AC142 transparent transparent;
}

/*#endregion*/

/*#region BUTTONS*/

button:hover {
    color: #6EC72E;
}

.button {
    background-color: #6EC72E;
    color: #FFFFFF !important;
    font-family: 'hammersmith';
    text-transform: uppercase;
    font-size: 1rem;
}

    .button:focus, .button:hover {
        background-color: hsla(95,62%,58%,1);
        color: #FFFFFF !important;
    }

/*#endregion*/

/*#region INPUTS*/
[type=color]:focus, [type=date]:focus, [type=datetime-local]:focus, [type=datetime]:focus, [type=email]:focus, [type=month]:focus, [type=number]:focus, [type=password]:focus, [type=search]:focus, [type=tel]:focus, [type=text]:focus, [type=time]:focus, [type=url]:focus, [type=week]:focus, textarea:focus {
    border: 1px solid #6EC72E;
    box-shadow: 0 0 5px #6EC72E;
}

.input-error {
    border: 1px solid #EA552D;
    box-shadow: 0 0 5px #EA552D;
}
/*#endregion*/

/*#region TYPOGRAPHY */
.text-danger {
    color: #EA552D !important;
}

.bold {
    font-weight: bold !important;
}

.small {
    font-size: .8rem;
}

.color-red {
    color: #EA552D !important;
}

.color-green {
    color: #6ec72e !important;
}

.color-yellow {
    color: #f1c40f !important;
}

.color-gray {
    color: #e7e6e6 !important;
}

.bg-red {
    background-color: #EA552D !important;
}

.bg-green {
    background-color: #6ec72e !important;
}

.bg-yellow {
    background-color: #f1c40f !important;
}
/*#endregion*/

/*#region PACE*/
.cover {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1999;
    background: rgba(0,0,0,0.5);
}

.pace {
    -webkit-pointer-events: none;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.pace-inactive {
    display: none;
}

.pace .pace-progress {
    background: #6EC72E;
    position: fixed;
    z-index: 2000;
    top: 0;
    right: 100%;
    width: 100%;
    height: 1rem;
}

.pace .pace-progress-inner {
    display: block;
    position: absolute;
    right: 0px;
    width: 100px;
    height: 100%;
    box-shadow: 0 0 10px #6EC72E, 0 0 5px #6EC72E;
    opacity: 1.0;
    -webkit-transform: rotate(3deg) translate(0px, -4px);
    -moz-transform: rotate(3deg) translate(0px, -4px);
    -ms-transform: rotate(3deg) translate(0px, -4px);
    -o-transform: rotate(3deg) translate(0px, -4px);
    transform: rotate(3deg) translate(0px, -4px);
}

.pace .pace-activity {
    display: block;
    position: fixed;
    z-index: 2000;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    border: solid 2px transparent;
    border-top-color: #6EC72E;
    border-left-color: #6EC72E;
    border-radius: 30px;
    -webkit-animation: pace-spinner 400ms linear infinite;
    -moz-animation: pace-spinner 400ms linear infinite;
    -ms-animation: pace-spinner 400ms linear infinite;
    -o-animation: pace-spinner 400ms linear infinite;
    animation: pace-spinner 400ms linear infinite;
}

@-webkit-keyframes pace-spinner {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-moz-keyframes pace-spinner {
    0% {
        -moz-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -moz-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-o-keyframes pace-spinner {
    0% {
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-ms-keyframes pace-spinner {
    0% {
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes pace-spinner {
    0% {
        transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
/*#endregion*/


th {
    background: #e7e6e6;
}


.pageTitleBar h5 {
    margin: 0;
    line-height: 40px;
}

.pageTitleBar input:not([type="checkbox"]),
.pageTitleBar select {
    display: inline-block;
    width: 130px;
    margin: 0;
    padding: 4px;
    font-size: 12px;
    height: 34px;
}

.pageTitleBar .button {
    margin: 0;
}

.pageTitleBar .columns select {
    width: auto;
}
