/* ------------------------------------*\
    #RESET
\*------------------------------------ */
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

    blockquote:before,
    blockquote:after,
    q:before,
    q:after {
        content: '';
        content: none;
    }

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* ------------------------------------*\
    #BOX-SIZING
\*------------------------------------ */
html {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

*, *::before, *::after {
    -webkit-box-sizing: inherit;
    -moz-box-sizing: inherit;
    box-sizing: inherit;
}

/* ------------------------------------*\
    #PAGE
\*------------------------------------ */
html {
    color: #000;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
    background-color: #d1d8e7;
}

body {
    padding: 70px 10px 0px;
    display: flex;
}

address,
h1,
h2,
h3,
h4,
h5,
h6,
blockquote,
p,
pre,
dl,
ol,
ul,
figure,
hr,
table,
fieldset {
    margin-bottom: 20px;
}

img {
    max-width: 100%;
}

main {
    width: Calc(100vw - 20px);
    height: calc(100vh - 75px) !important;
    display: flex;
    flex: 1;
}

strong {
    font-weight: 700;
}

*::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

*::-webkit-scrollbar-track {
    background: #e2e2e2;
    border-radius: 50px;
}

*::-webkit-scrollbar-thumb {
    border-radius: 50px;
    background: #222;
    width: 4.5px;
}

::-webkit-scrollbar-thumb:horizontal {
    background: #222;
    border-radius: 50px;
}

* {
    scrollbar-color: #222 #e2e2e2;
    scrollbar-width: thin;
}

/* ------------------------------------*\
    #HEADINGS
\*------------------------------------ */
h1 > a,
h2 > a,
h3 > a,
h4 > a,
h5 > a,
h6 > a {
    color: inherit;
}

h2,
.h2 {
    font-size: 24px;
}

h3,
.h3 {
    font-size: 20px;
}

h4,
.h4 {
    font-size: 18px;
}

/* ------------------------------------*\
    #link
\*------------------------------------ */
a {
    color: #000;
    transition: all .3s ease;
    text-decoration: none;
}

    a:hover {
        color: black;
    }

    a:focus, a:active {
        outline: none;
        color: black;
    }

/* Uncomment and set these variables to customize the grid. */
.container-fluid {
    margin-right: auto;
    margin-left: auto;
    padding-right: 2rem;
    padding-left: 2rem;
}

.row {
    box-sizing: border-box;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex: 0 1 auto;
    -webkit-box-flex: 0;
    flex: 0 1 auto;
    -ms-flex-direction: row;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -1rem;
    margin-left: -1rem;
}

    .row.reverse {
        -ms-flex-direction: row-reverse;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        flex-direction: row-reverse;
    }

.col.reverse {
    -ms-flex-direction: column-reverse;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    flex-direction: column-reverse;
}

.col-xs,
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12 {
    box-sizing: border-box;
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
    flex: 0 0 auto;
    padding-right: 1rem;
    padding-left: 1rem;
}

.col-xs {
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
}

.col-xs-1 {
    -ms-flex-preferred-size: 8.333%;
    flex-basis: 8.333%;
    max-width: 8.333%;
}

.col-xs-2 {
    -ms-flex-preferred-size: 16.667%;
    flex-basis: 16.667%;
    max-width: 16.667%;
}

.col-xs-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
}

.col-xs-4 {
    -ms-flex-preferred-size: 33.333%;
    flex-basis: 33.333%;
    max-width: 33.333%;
}

.col-xs-5 {
    -ms-flex-preferred-size: 41.667%;
    flex-basis: 41.667%;
    max-width: 41.667%;
}

.col-xs-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
}

.col-xs-7 {
    -ms-flex-preferred-size: 58.333%;
    flex-basis: 58.333%;
    max-width: 58.333%;
}

.col-xs-8 {
    -ms-flex-preferred-size: 66.667%;
    flex-basis: 66.667%;
    max-width: 66.667%;
}

.col-xs-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
}

.col-xs-10 {
    -ms-flex-preferred-size: 83.333%;
    flex-basis: 83.333%;
    max-width: 83.333%;
}

.col-xs-11 {
    -ms-flex-preferred-size: 91.667%;
    flex-basis: 91.667%;
    max-width: 91.667%;
}

.col-xs-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
}

.col-xs-offset-1 {
    margin-left: 8.333%;
}

.col-xs-offset-2 {
    margin-left: 16.667%;
}

.col-xs-offset-3 {
    margin-left: 25%;
}

.col-xs-offset-4 {
    margin-left: 33.333%;
}

.col-xs-offset-5 {
    margin-left: 41.667%;
}

.col-xs-offset-6 {
    margin-left: 50%;
}

.col-xs-offset-7 {
    margin-left: 58.333%;
}

.col-xs-offset-8 {
    margin-left: 66.667%;
}

.col-xs-offset-9 {
    margin-left: 75%;
}

.col-xs-offset-10 {
    margin-left: 83.333%;
}

.col-xs-offset-11 {
    margin-left: 91.667%;
}

.start-xs {
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    justify-content: flex-start;
    text-align: start;
}

.center-xs {
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
}

.end-xs {
    -ms-flex-pack: end;
    -webkit-box-pack: end;
    justify-content: flex-end;
    text-align: end;
}

.top-xs {
    -ms-flex-align: start;
    -webkit-box-align: start;
    align-items: flex-start;
}

.middle-xs {
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
}

.bottom-xs {
    -ms-flex-align: end;
    -webkit-box-align: end;
    align-items: flex-end;
}

.around-xs {
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.between-xs {
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
}

.first-xs {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
    order: -1;
}

.last-xs {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    order: 1;
}

@media only screen and (min-width: 48em) {
    .container {
        width: 46rem;
    }

    .col-sm,
    .col-sm-1,
    .col-sm-2,
    .col-sm-3,
    .col-sm-4,
    .col-sm-5,
    .col-sm-6,
    .col-sm-7,
    .col-sm-8,
    .col-sm-9,
    .col-sm-10,
    .col-sm-11,
    .col-sm-12 {
        box-sizing: border-box;
        -ms-flex: 0 0 auto;
        -webkit-box-flex: 0;
        flex: 0 0 auto;
        padding-right: 1rem;
        padding-left: 1rem;
    }

    .col-sm {
        -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
        -webkit-box-flex: 1;
        flex-grow: 1;
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        max-width: 100%;
    }

    .col-sm-1 {
        -ms-flex-preferred-size: 8.333%;
        flex-basis: 8.333%;
        max-width: 8.333%;
    }

    .col-sm-2 {
        -ms-flex-preferred-size: 16.667%;
        flex-basis: 16.667%;
        max-width: 16.667%;
    }

    .col-sm-3 {
        -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
        max-width: 25%;
    }

    .col-sm-4 {
        -ms-flex-preferred-size: 33.333%;
        flex-basis: 33.333%;
        max-width: 33.333%;
    }

    .col-sm-5 {
        -ms-flex-preferred-size: 41.667%;
        flex-basis: 41.667%;
        max-width: 41.667%;
    }

    .col-sm-6 {
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        max-width: 50%;
    }

    .col-sm-7 {
        -ms-flex-preferred-size: 58.333%;
        flex-basis: 58.333%;
        max-width: 58.333%;
    }

    .col-sm-8 {
        -ms-flex-preferred-size: 66.667%;
        flex-basis: 66.667%;
        max-width: 66.667%;
    }

    .col-sm-9 {
        -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
        max-width: 75%;
    }

    .col-sm-10 {
        -ms-flex-preferred-size: 83.333%;
        flex-basis: 83.333%;
        max-width: 83.333%;
    }

    .col-sm-11 {
        -ms-flex-preferred-size: 91.667%;
        flex-basis: 91.667%;
        max-width: 91.667%;
    }

    .col-sm-12 {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 100%;
    }

    .col-sm-offset-1 {
        margin-left: 8.333%;
    }

    .col-sm-offset-2 {
        margin-left: 16.667%;
    }

    .col-sm-offset-3 {
        margin-left: 25%;
    }

    .col-sm-offset-4 {
        margin-left: 33.333%;
    }

    .col-sm-offset-5 {
        margin-left: 41.667%;
    }

    .col-sm-offset-6 {
        margin-left: 50%;
    }

    .col-sm-offset-7 {
        margin-left: 58.333%;
    }

    .col-sm-offset-8 {
        margin-left: 66.667%;
    }

    .col-sm-offset-9 {
        margin-left: 75%;
    }

    .col-sm-offset-10 {
        margin-left: 83.333%;
    }

    .col-sm-offset-11 {
        margin-left: 91.667%;
    }

    .start-sm {
        -ms-flex-pack: start;
        -webkit-box-pack: start;
        justify-content: flex-start;
        text-align: start;
    }

    .center-sm {
        -ms-flex-pack: center;
        -webkit-box-pack: center;
        justify-content: center;
        text-align: center;
    }

    .end-sm {
        -ms-flex-pack: end;
        -webkit-box-pack: end;
        justify-content: flex-end;
        text-align: end;
    }

    .top-sm {
        -ms-flex-align: start;
        -webkit-box-align: start;
        align-items: flex-start;
    }

    .middle-sm {
        -ms-flex-align: center;
        -webkit-box-align: center;
        align-items: center;
    }

    .bottom-sm {
        -ms-flex-align: end;
        -webkit-box-align: end;
        align-items: flex-end;
    }

    .around-sm {
        -ms-flex-pack: distribute;
        justify-content: space-around;
    }

    .between-sm {
        -ms-flex-pack: justify;
        -webkit-box-pack: justify;
        justify-content: space-between;
    }

    .first-sm {
        -ms-flex-order: -1;
        -webkit-box-ordinal-group: 0;
        order: -1;
    }

    .last-sm {
        -ms-flex-order: 1;
        -webkit-box-ordinal-group: 2;
        order: 1;
    }
}

@media only screen and (min-width: 62em) {
    .container {
        width: 61rem;
    }

    .col-md,
    .col-md-1,
    .col-md-2,
    .col-md-3,
    .col-md-4,
    .col-md-5,
    .col-md-6,
    .col-md-7,
    .col-md-8,
    .col-md-9,
    .col-md-10,
    .col-md-11,
    .col-md-12 {
        box-sizing: border-box;
        -ms-flex: 0 0 auto;
        -webkit-box-flex: 0;
        flex: 0 0 auto;
        padding-right: 1rem;
        padding-left: 1rem;
    }

    .col-md {
        -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
        -webkit-box-flex: 1;
        flex-grow: 1;
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        max-width: 100%;
    }

    .col-md-1 {
        -ms-flex-preferred-size: 8.333%;
        flex-basis: 8.333%;
        max-width: 8.333%;
    }

    .col-md-2 {
        -ms-flex-preferred-size: 16.667%;
        flex-basis: 16.667%;
        max-width: 16.667%;
    }

    .col-md-3 {
        -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
        max-width: 25%;
    }

    .col-md-4 {
        -ms-flex-preferred-size: 33.333%;
        flex-basis: 33.333%;
        max-width: 33.333%;
    }

    .col-md-5 {
        -ms-flex-preferred-size: 41.667%;
        flex-basis: 41.667%;
        max-width: 41.667%;
    }

    .col-md-6 {
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        max-width: 50%;
    }

    .col-md-7 {
        -ms-flex-preferred-size: 58.333%;
        flex-basis: 58.333%;
        max-width: 58.333%;
    }

    .col-md-8 {
        -ms-flex-preferred-size: 66.667%;
        flex-basis: 66.667%;
        max-width: 66.667%;
    }

    .col-md-9 {
        -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
        max-width: 75%;
    }

    .col-md-10 {
        -ms-flex-preferred-size: 83.333%;
        flex-basis: 83.333%;
        max-width: 83.333%;
    }

    .col-md-11 {
        -ms-flex-preferred-size: 91.667%;
        flex-basis: 91.667%;
        max-width: 91.667%;
    }

    .col-md-12 {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 100%;
    }

    .col-md-offset-1 {
        margin-left: 8.333%;
    }

    .col-md-offset-2 {
        margin-left: 16.667%;
    }

    .col-md-offset-3 {
        margin-left: 25%;
    }

    .col-md-offset-4 {
        margin-left: 33.333%;
    }

    .col-md-offset-5 {
        margin-left: 41.667%;
    }

    .col-md-offset-6 {
        margin-left: 50%;
    }

    .col-md-offset-7 {
        margin-left: 58.333%;
    }

    .col-md-offset-8 {
        margin-left: 66.667%;
    }

    .col-md-offset-9 {
        margin-left: 75%;
    }

    .col-md-offset-10 {
        margin-left: 83.333%;
    }

    .col-md-offset-11 {
        margin-left: 91.667%;
    }

    .start-md {
        -ms-flex-pack: start;
        -webkit-box-pack: start;
        justify-content: flex-start;
        text-align: start;
    }

    .center-md {
        -ms-flex-pack: center;
        -webkit-box-pack: center;
        justify-content: center;
        text-align: center;
    }

    .end-md {
        -ms-flex-pack: end;
        -webkit-box-pack: end;
        justify-content: flex-end;
        text-align: end;
    }

    .top-md {
        -ms-flex-align: start;
        -webkit-box-align: start;
        align-items: flex-start;
    }

    .middle-md {
        -ms-flex-align: center;
        -webkit-box-align: center;
        align-items: center;
    }

    .bottom-md {
        -ms-flex-align: end;
        -webkit-box-align: end;
        align-items: flex-end;
    }

    .around-md {
        -ms-flex-pack: distribute;
        justify-content: space-around;
    }

    .between-md {
        -ms-flex-pack: justify;
        -webkit-box-pack: justify;
        justify-content: space-between;
    }

    .first-md {
        -ms-flex-order: -1;
        -webkit-box-ordinal-group: 0;
        order: -1;
    }

    .last-md {
        -ms-flex-order: 1;
        -webkit-box-ordinal-group: 2;
        order: 1;
    }
}

@media only screen and (min-width: 75em) {
    .container {
        width: 71rem;
    }

    .col-lg,
    .col-lg-1,
    .col-lg-2,
    .col-lg-3,
    .col-lg-4,
    .col-lg-5,
    .col-lg-6,
    .col-lg-7,
    .col-lg-8,
    .col-lg-9,
    .col-lg-10,
    .col-lg-11,
    .col-lg-12 {
        box-sizing: border-box;
        -ms-flex: 0 0 auto;
        -webkit-box-flex: 0;
        flex: 0 0 auto;
        padding-right: 1rem;
        padding-left: 1rem;
    }

    .col-lg {
        -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
        -webkit-box-flex: 1;
        flex-grow: 1;
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        max-width: 100%;
    }

    .col-lg-1 {
        -ms-flex-preferred-size: 8.333%;
        flex-basis: 8.333%;
        max-width: 8.333%;
    }

    .col-lg-2 {
        -ms-flex-preferred-size: 16.667%;
        flex-basis: 16.667%;
        max-width: 16.667%;
    }

    .col-lg-3 {
        -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
        max-width: 25%;
    }

    .col-lg-4 {
        -ms-flex-preferred-size: 33.333%;
        flex-basis: 33.333%;
        max-width: 33.333%;
    }

    .col-lg-5 {
        -ms-flex-preferred-size: 41.667%;
        flex-basis: 41.667%;
        max-width: 41.667%;
    }

    .col-lg-6 {
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        max-width: 50%;
    }

    .col-lg-7 {
        -ms-flex-preferred-size: 58.333%;
        flex-basis: 58.333%;
        max-width: 58.333%;
    }

    .col-lg-8 {
        -ms-flex-preferred-size: 66.667%;
        flex-basis: 66.667%;
        max-width: 66.667%;
    }

    .col-lg-9 {
        -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
        max-width: 75%;
    }

    .col-lg-10 {
        -ms-flex-preferred-size: 83.333%;
        flex-basis: 83.333%;
        max-width: 83.333%;
    }

    .col-lg-11 {
        -ms-flex-preferred-size: 91.667%;
        flex-basis: 91.667%;
        max-width: 91.667%;
    }

    .col-lg-12 {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 100%;
    }

    .col-lg-offset-1 {
        margin-left: 8.333%;
    }

    .col-lg-offset-2 {
        margin-left: 16.667%;
    }

    .col-lg-offset-3 {
        margin-left: 25%;
    }

    .col-lg-offset-4 {
        margin-left: 33.333%;
    }

    .col-lg-offset-5 {
        margin-left: 41.667%;
    }

    .col-lg-offset-6 {
        margin-left: 50%;
    }

    .col-lg-offset-7 {
        margin-left: 58.333%;
    }

    .col-lg-offset-8 {
        margin-left: 66.667%;
    }

    .col-lg-offset-9 {
        margin-left: 75%;
    }

    .col-lg-offset-10 {
        margin-left: 83.333%;
    }

    .col-lg-offset-11 {
        margin-left: 91.667%;
    }

    .start-lg {
        -ms-flex-pack: start;
        -webkit-box-pack: start;
        justify-content: flex-start;
        text-align: start;
    }

    .center-lg {
        -ms-flex-pack: center;
        -webkit-box-pack: center;
        justify-content: center;
        text-align: center;
    }

    .end-lg {
        -ms-flex-pack: end;
        -webkit-box-pack: end;
        justify-content: flex-end;
        text-align: end;
    }

    .top-lg {
        -ms-flex-align: start;
        -webkit-box-align: start;
        align-items: flex-start;
    }

    .middle-lg {
        -ms-flex-align: center;
        -webkit-box-align: center;
        align-items: center;
    }

    .bottom-lg {
        -ms-flex-align: end;
        -webkit-box-align: end;
        align-items: flex-end;
    }

    .around-lg {
        -ms-flex-pack: distribute;
        justify-content: space-around;
    }

    .between-lg {
        -ms-flex-pack: justify;
        -webkit-box-pack: justify;
        justify-content: space-between;
    }

    .first-lg {
        -ms-flex-order: -1;
        -webkit-box-ordinal-group: 0;
        order: -1;
    }

    .last-lg {
        -ms-flex-order: 1;
        -webkit-box-ordinal-group: 2;
        order: 1;
    }
}

/*------------------------------------*\
    #FLEXBOX
\*------------------------------------*/
.o-flex {
    display: flex;
}

.o-flex--column {
    flex-direction: column;
}

.o-flex--wrap {
    flex-wrap: wrap;
}

.o-flex--no-wrap {
    flex-wrap: nowrap;
}

.o-flex--center {
    align-items: center;
}

.o-flex--baseline {
    align-items: baseline;
}

.o-flex--stretch {
    align-items: stretch;
}

.o-flex--start {
    align-items: flex-start;
}

.o-flex--end {
    align-items: flex-end;
}

.o-flex--justify {
    justify-content: space-between;
}

.o-flex--justify-center {
    justify-content: center;
}

.o-flex--justify-around {
    justify-content: space-around;
}

.o-flex--right {
    justify-content: flex-end;
}

.o-flex--auto {
    flex: 1 1 auto;
    min-width: 0;
    min-height: 0;
}

.o-flex--grow {
    flex: 1 0 auto;
}

.o-flex--none {
    flex: none;
}

.o-flex--first {
    order: -1;
}

.o-flex--last {
    order: 99999;
}

/* ------------------------------------*\
    #WRAPPER
\*------------------------------------ */
.o-container {
    width: 100%;
    max-width: 100%;
    padding-right: 10px;
    padding-left: 10px;
    margin-right: auto;
    margin-left: auto;
}

@media screen and (min-width: 1216px) {
    .o-container {
        max-width: calc(1160px + (20px * 2));
        padding-right: 20px;
        padding-left: 20px;
    }
}

.header-main {
    background-color: #444444;
    height: 65px;
    padding: 0 4px 0 10px;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

    .header-main .refresh {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 3px solid #2ab3b1;
    }

        .header-main .refresh:hover .refresh-img {
            transform: rotate(90deg);
            transition: 0.25s;
        }

.nav__list {
    margin-bottom: 0;
    height: 100%;
}

.nav__list-item {
    height: 100%;
    display: flex;
    align-items: center;
}

    .nav__list-item + .nav__list-item {
        margin-left: 5px;
    }

.nav__link {
    width: 50px;
    height: 55px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #808080;
    border: 1px solid #070707;
}

    .nav__link.is-active, .nav__link:hover {
        background-color: #069c9e;
    }

    .nav__link img {
        max-height: 80%;
    }

.textarea {
    height: 100px;
    resize: none;
    border-radius: 15px;
    background-color: #ffffff;
    border: 1px solid #444444;
    padding: 10px 15px;
    color: #000;
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #060000;
    font-weight: 700;
}
/**
* Reset input styles.
*/
.input {
    -webkit-appearance: none;
    /* removing inner shadow on iOS inputs */
    -webkit-font-smoothing: inherit;
    box-sizing: border-box;
    transition: all .5s ease;
    background: none;
    border: none;
    color: #000;
    width: 100%;
    display: inline-block;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    padding: 0;
    /* remove browser defaults */
    vertical-align: middle;
    width: 100%;
}

    .input:invalid {
        box-shadow: none;
        /* fixes mozilla red outline (shadow) */
    }

    .input[readonly] {
        cursor: text;
    }

    .input::-ms-clear {
        display: none;
        /* remove IE clear icon */
    }

    .input:not(:disabled):focus {
        outline: none;
    }

.input--primary {
    height: 39px;
    border-radius: 15px;
    background-color: #ffffff;
    border: 1px solid #444444;
    padding: 0 20px;
    color: #000;
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #060000;
    font-weight: 700;
    /**
   * @disabled
   */
}

    .input--primary:disabled {
        opacity: 0.5;
        cursor: not-allowed !important;
    }

.input--secondary {
    height: 44px;
    border-radius: 22px;
    background-color: #f5f5f5;
    border: 1px solid #76c6c7;
    padding: 0 20px;
    color: #000;
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #060000;
    /**
   * @disabled
   */
}

    .input--secondary:disabled {
        opacity: 0.5;
        cursor: not-allowed !important;
    }

.input--third {
    height: 38px;
    border-radius: 10px;
    background-color: #fff;
    border: 1px solid #069c9e;
    border-bottom-width: 4px;
    padding: 0 10px;
    color: #000;
    display: flex;
    align-items: center;
    font-size: 17px;
    color: #070707;
    font-weight: 700;
    width: 200px;
    /**
   * @disabled
   */
}

    .input--third:disabled {
        opacity: 0.5;
        cursor: not-allowed !important;
    }

.input--third-small {
    margin-bottom: 2px;
    height: 28px;
    border-radius: 10px;
    background-color: #fff;
    border: 1px solid #069c9e;
    border-bottom-width: 2px;
    padding: 0 10px;
    color: #000;
    display: flex;
    align-items: center;
    font-size: 17px;
    color: #070707;
    font-weight: 700;
    width: 100px;
    /**
   * @disabled
   */
}

    .input--third-small:disabled {
        opacity: 0.5;
        cursor: not-allowed !important;
    }

.input--third-small-long {
    margin-bottom: 2px;
    height: 28px;
    border-radius: 10px;
    background-color: #fff;
    border: 1px solid #069c9e;
    border-bottom-width: 2px;
    padding: 0 10px;
    color: #000;
    display: flex;
    align-items: center;
    font-size: 17px;
    color: #070707;
    font-weight: 700;
    width: 400px;
    /**
   * @disabled
   */
}

    .input--third-small-long:disabled {
        opacity: 0.5;
        cursor: not-allowed !important;
    }

.input--third-medium {
    margin-bottom: 2px;
    height: 28px;
    border-radius: 10px;
    background-color: #fff;
    border: 1px solid #069c9e;
    border-bottom-width: 2px;
    padding: 0 10px;
    color: #000;
    display: flex;
    align-items: center;
    font-size: 17px;
    color: #070707;
    font-weight: 700;
    width: 150px;
    /**
   * @disabled
   */
}

    .input--third-medium:disabled {
        opacity: 0.5;
        cursor: not-allowed !important;
    }

.textarea--third {
    margin-bottom: 2px;
    border-radius: 10px;
    background-color: #fff;
    border: 1px solid #069c9e;
    border-bottom-width: 2px;
    padding: 0 10px;
    color: #000;
    display: flex;
    align-items: center;
    font-size: 17px;
    color: #070707;
    font-weight: 700;
    width: 100%;
    /**
   * @disabled
   */
}

    .textarea--third:disabled {
        opacity: 0.5;
        cursor: not-allowed !important;
    }

.input-box--search svg {
    position: absolute;
    transform: translate(0, -50%);
    right: 10px;
    top: 50%;
    cursor: pointer;
}

.input-box--search input {
    padding-left: 20px;
    padding-right: 50px;
    font-style: italic;
}


.input-box--date svg {
    position: absolute;
    transform: translate(0, -50%);
    right: 10px;
    top: 50%;
    background-color: #fff;
    pointer-events: none;
}

.input-box--date input {
    padding-right: 10px;
}

.input-box {
    position: relative;
    margin-bottom: 10px;
}

    .input-box span {
        font-size: 15px;
        color: #070707;
        white-space: nowrap;
        display: inline-block;
    }

    .input-box p {
        margin-bottom: 0;
        display: inline-block;
        background-color: #fff;
        position: absolute;
        padding: 0 6px;
        left: 15px;
        bottom: 100%;
        transform: translate(0, 50%);
    }

    .input-box select:not(.input--small).input {
        background-image: linear-gradient(45deg, transparent 50%, #000 50%), linear-gradient(135deg, #000 50%, transparent 50%), linear-gradient(to right, #fff, #fff);
        background-position: calc(100% - 20px) calc(1em + 2px), calc(100% - 15px) calc(1em + 2px), 100% 0;
        background-size: 5px 5px, 5px 5px, 2.5em 2.5em;
        background-repeat: no-repeat;
        min-width: 80px;
        padding-right: 40px;
        font-size: 14px;
    }

    .input-box select.input--small {
        background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' fill='black'><polygon points='0,0 100,0 50,50'/></svg>") no-repeat;
        background-size: 10px;
        background-position: calc(100% - 10px) 67%;
        background-repeat: no-repeat;
        font-weight: 400;
        font-size: 12px;
    }

        .input-box select.input--small.input--primary {
            height: 25px;
            padding-left: 15px;
            padding-right: 30px;
            font-size: 12px;
            color: #060000;
            background: #ffffff;
            min-width: 90px;
            font-weight: 700;
        }

.input--big {
    height: 78px;
    background-color: #f5f5f5;
    border-radius: 20px;
    font-size: 30px;
}

.input--small {
    height: 25px;
    border-radius: 10px;
    padding: 0 10px;
}

.select {
    width: 100%;
    border: none !important;
    border-bottom: 2px solid #ccc !important;
    border-radius: 10px !important;
    font-size: 16px !important;
    background-color: transparent;
    height: 30px;
    text-align-last: center;
}

.check-box {
    vertical-align: middle;
}

    .check-box input {
        visibility: hidden;
        opacity: 0;
        position: absolute;
        z-index: -1;
    }

    .check-box label {
        display: flex;
        align-items: center;
        cursor: pointer;
    }

    .check-box .check-icon {
        width: 20px;
        height: 20px;
        border: 1px solid #cccccc;
        background-color: #fff;
        position: relative;
        transition: all .3s ease;
    }

        .check-box .check-icon:before {
            position: absolute;
            left: 50%;
            top: 50%;
            content: "\2714";
            color: #20a0bc;
            -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
            font-size: 15px;
            transition: all .3s ease;
            visibility: hidden;
            opacity: 0;
        }

    .check-box input:checked + label .check-icon:before {
        visibility: visible;
        opacity: 1;
    }

    .check-box input:disabled + label {
        pointer-events: none;
        opacity: .8;
        cursor: not-allowed;
    }

.button {
    -webkit-font-smoothing: inherit;
    display: inline-block;
    vertical-align: middle;
    text-decoration: none;
    color: #000;
    transition: background-color .2s ease, color .2s ease;
    border: none;
    padding: 0;
    margin: 0;
    outline: none;
    transition: all .2s ease;
    background-color: transparent;
    cursor: pointer;
    font-family: "Montserrat", sans-serif;
    text-decoration: none;
    line-height: 1;
}

    .button:not(:disabled):active {
        outline: none;
        box-shadow: none !important;
        text-decoration: none;
    }

    .button:disabled {
        opacity: .5;
        cursor: not-allowed !important;
        background: #4f8685;
    }

.button--primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    width: 100%;
    max-width: 420px;
    padding: 0 20px;
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    border: 1px solid #4f8685;
    background-color: #069c9e;
    border-radius: 21px;
}

    .button--primary:not(:disabled):hover, .button--primary:not(:disabled):focus, .button--primary:not(:disabled):active {
        background-color: #4f8685;
        color: #fff;
    }

.button--secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    width: 100%;
    max-width: 420px;
    padding: 0 20px;
    color: #fff;
    font-size: 22px;
    text-decoration: none;
    border: 1px solid #6b6b6b;
    background-color: #404040;
    border-radius: 21px;
}

    .button--secondary:not(:disabled):hover, .button--secondary:not(:disabled):focus, .button--secondary:not(:disabled):active {
        background-color: #6b6b6b;
    }

.button--third {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    width: 100%;
    max-width: 420px;
    padding: 0 20px;
    color: #444444;
    font-size: 22px;
    text-decoration: none;
    border: 1px solid #a5a5a5;
    background-color: #fff;
    border-radius: 21px;
}

    .button--third:not(:disabled):hover, .button--third:not(:disabled):focus, .button--third:not(:disabled):active {
        background-color: #6b6b6b;
        color: #fff;
    }

.button--small {
    max-width: 270px;
}

.button--big {
    height: 78px;
    font-size: 33px;
    border-radius: 20px;
}

.button--green-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 25px;
    min-width: 25px;
    width: 25px;
    text-decoration: none;
    background-color: #069c9e;
    border-radius: 50%;
}

    .button--green-circle:not(:disabled):hover, .button--green-circle:not(:disabled):focus, .button--green-circle:not(:disabled):active {
        background-color: #4f8685;
    }

    .button--green-circle img {
        height: 60%;
        width: auto;
    }

.button--red-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 25px;
    min-width: 25px;
    width: 25px;
    text-decoration: none;
    background-color: #e50000;
    border-radius: 50%;
}

    .button--red-circle:not(:disabled):hover, .button--red-circle:not(:disabled):focus, .button--red-circle:not(:disabled):active {
        background-color: #740000;
    }

    .button--red-circle img {
        height: 60%;
        width: auto;
    }

.button--blocked-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 25px;
    min-width: 25px;
    width: 25px;
    text-decoration: none;
    background-color: #bdbdbd;
    border-radius: 50%;
    cursor: not-allowed;
}

    .button--blocked-circle img {
        height: 60%;
        width: auto;
    }

.table-responsive {
    overflow: auto;
}

.table {
    display: table;
    width: 100%;
}

    .table tr:first-child th:first-child {
        background-color: #d8d8d9;
        border-bottom: 1px solid #a2a2a2;
    }

    .table tr:last-child td:not(:first-child) {
        border-bottom: 1px solid #a2a2a2;
    }

    .table tr:nth-child(2n+2) td {
        background-color: #f5f5f5;
    }

    .table tr:hover td:first-child, .table tr.active td:first-child {
        background-color: #26b6b3;
        font-weight: 600;
    }

    .table tr:hover td:not(:first-child), .table tr.active td:not(:first-child) {
        background-color: #bfe8e7;
        font-weight: 600;
    }

    .table tbody tr:hover {
        /*transform: scale(1.01);
        box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.2), -1px -1px 8px rgba(0, 0, 0, 0.2);*/
    }

    .table tr.red-row tdh {
        background-color: #fb8faf;
    }

    .table tr.red-row td.active-column {
        background-color: #bfe8e7;
    }

    .table tr.green-row td {
        font-weight: 500;
        background-color: #069c9e;
        color: white;
    }

        .table tr.green-row td.active-column {
            background-color: #bfe8e7;
        }

    .table tbody tr.green-row {
        transform: scale(1.01);
        box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.2), -1px -1px 8px rgba(0, 0, 0, 0.2);
    }

    .table tr.orange-row td {
        background-color: #efcdae;
    }

        .table tr.orange-row td.active-column {
            background-color: #bfe8e7;
        }

    .table tr.teal-row td {
        background-color: #6bebe9;
    }

    .table tr.teal td.active-column {
        background-color: #bfe8e7;
    }

    .table th {
        border-top: 1px solid #a2a2a2;
        border-right: 1px solid #a2a2a2;
        padding: 5px;
        text-align: left;
        color: #000000;
        font-weight: 700;
        font-size: 14px;
        vertical-align: middle;
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        z-index: 2;
        background-color: #eaffff;
    }

        .table th:not(:first-child) {
            border-bottom: 1px solid #a2a2a2;
        }

    .table td {
        padding: 0px 5px;
        border-right: 1px solid #a2a2a2;
        color: #000000;
        font-size: 12px;
        height: 30px;
        vertical-align: middle;
        transition: all .3s ease;
    }

        .table td:not(:first-child) {
            border-top: 1px solid #a2a2a2;
        }

        .table td.active {
            background-color: #26b6b3 !important;
        }

        .table td.red {
            background-color: #fb8faf !important;
        }

    .table.table--no-row-numb tr:last-child td {
        border-bottom: 1px solid #a2a2a2 !important;
    }

    .table tfoot td {
        border: none !important;
        border-top: 2px solid #069c9e !important;
    }

.row-border-top {
    border-top: 1px solid #a2a2a2 !important;
}

.row-border-bottom {
    border-bottom: 1px solid #a2a2a2 !important;
}

.popup {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 9000;
    transition: all 0.3s ease;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}

    .popup.is-active {
        visibility: visible;
        opacity: 1;
        pointer-events: all;
    }

        .popup.is-active .close-popup {
            visibility: visible;
            opacity: 1;
        }

        .popup.is-active .popup__content {
            transform: translate(0, 0);
        }

    .popup.popup--big .close-popup {
        left: 1825px;
    }

    .popup.popup--big .popup__content {
        max-width: 1825px;
    }

.popup__overlay {
    background-color: rgba(255, 255, 255, 0.2);
    width: 100%;
    height: 100%;
    backdrop-filter: blur(5px);
    position: relative;
    z-index: 1;
}

.close-popup {
    position: absolute;
    left: 856px;
    top: 0;
    transform: translate(-60%, 50%);
    z-index: 10;
    transition: background-color 0.3s ease, visibility .3s ease .5s, opacity .3s ease .5s;
    visibility: hidden;
    opacity: 0;
}

.popup__content {
    position: absolute;
    left: 0;
    top: 10px;
    z-index: 2;
    height: calc(100% - 20px);
    width: 100%;
    max-width: 856px;
    background-color: #f1f1f1;
    border: 1px solid #3aadae;
    border-radius: 20px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    overflow: auto;
    transition: all 0.3s ease .5s;
    transform: translate(-100%, 0);
}
    /*.popup__content .cart {
    margin-bottom: 10px; }*/
    .popup__content .cart__body {
        /* border-top: 1px solid #069c9e;
    padding: 15px 15px 0;
    margin-top: 10px;*/
    }

    .popup__content .cart__footer {
        /*  border-top: 1px solid #069c9e;
    padding: 15px 15px 0;
    margin-top: 10px; */
    }

    .popup__content .cart--accordion .cart__header a {
        display: block;
        width: 100%;
        text-decoration: none;
        position: relative;
    }

    .popup__content .cart--accordion .cart__header img {
        position: absolute;
        left: 0;
        top: 50%;
        transform: translate(0, -50%);
        transition: all .3s ease;
    }

    .popup__content .cart--accordion .cart__header.is-active img {
        transform: translate(0, -50%) rotate(180deg);
    }

.tree-box {
    padding-left: 20px;
    margin-left: 10px;
    position: relative;
    margin-top: 6px;
    margin-bottom: 0;
}

    .tree-box:before {
        position: absolute;
        left: 10px;
        top: 0;
        width: 1px;
        height: 100%;
        background-color: #808080;
        content: "";
    }

    .tree-box ul {
        position: relative;
    }

        .tree-box ul:before {
            position: absolute;
            left: 10px;
            top: 0;
            width: 1px;
            height: 100%;
            background-color: #808080;
            content: "";
        }

    .tree-box > li > .list-heading .tree-trigger:before {
        display: none;
    }

    .tree-box > li ul {
        display: none;
        padding-left: 20px;
        margin-left: 18px;
        margin-bottom: 0;
    }

    .tree-box .list-heading {
        display: flex;
        align-items: center;
        height: 40px;
        position: relative;
        padding: 0 20px;
    }

        .tree-box .list-heading:before {
            position: absolute;
            right: 100%;
            top: 50%;
            transform: translate(16px, -50%);
            width: 25px;
            height: 1px;
            background-color: #808080;
            content: "";
        }

        .tree-box .list-heading a {
            text-transform: uppercase;
        }

    .tree-box .tree-trigger {
        display: flex;
        align-items: center;
    }

        .tree-box .tree-trigger span {
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background-color: #099395;
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            margin-right: 5px;
        }

            .tree-box .tree-trigger span:before {
                position: absolute;
                left: 50%;
                top: 50%;
                transform: translate(-50%, -50%);
                content: "";
                transition: all .3s ease;
                visibility: visible;
                opacity: 1;
                line-height: 1;
                width: 0;
                height: 0;
                border-top: 4px solid transparent;
                border-bottom: 4px solid transparent;
                border-left: 7px solid #fff;
                margin-left: 1px;
            }

            .tree-box .tree-trigger span:after {
                position: absolute;
                left: 50%;
                top: 50%;
                transform: translate(-50%, -50%);
                content: "";
                width: 10px;
                height: 2px;
                background-color: #fff;
                transition: all .3s ease;
                visibility: hidden;
                opacity: 0;
                line-height: 1;
            }

        .tree-box .tree-trigger.is-active span:before {
            visibility: hidden;
            opacity: 0;
        }

        .tree-box .tree-trigger.is-active span:after {
            visibility: visible;
            opacity: 1;
        }

        .tree-box .tree-trigger div.tree-trigger-icon {
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background-color: #099395;
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            margin-right: 5px;
        }

            .tree-box .tree-trigger div.tree-trigger-icon:before {
                position: absolute;
                left: 50%;
                top: 50%;
                transform: translate(-50%, -50%);
                content: "";
                transition: all .3s ease;
                visibility: visible;
                opacity: 1;
                line-height: 1;
                width: 0;
                height: 0;
                border-top: 4px solid transparent;
                border-bottom: 4px solid transparent;
                border-left: 7px solid #fff;
                margin-left: 1px;
            }

            .tree-box .tree-trigger div.tree-trigger-icon:after {
                position: absolute;
                left: 50%;
                top: 50%;
                transform: translate(-50%, -50%);
                content: "";
                width: 10px;
                height: 2px;
                background-color: #fff;
                transition: all .3s ease;
                visibility: hidden;
                opacity: 0;
                line-height: 1;
            }

        .tree-box .tree-trigger.is-active div.tree-trigger-icon:before {
            visibility: hidden;
            opacity: 0;
        }

        .tree-box .tree-trigger.is-active div.tree-trigger-icon:after {
            visibility: visible;
            opacity: 1;
        }
/*------------------------------------*\
    #COMPONENTS - CUSTOM
\*------------------------------------*/
.menu-link {
    width: 160px;
    height: 130px;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    font-size: 13px;
    color: #ffffff;
    font-weight: 400;
    padding: 10px 0 20px;
}

.menu-link--green {
    background-color: #2ab3b1;
    box-shadow: 5px 5px 0px 0px #444444;
}

.menu-link--red {
    box-shadow: 0px 14px 14px -7px #cf866c;
    background: linear-gradient(to bottom, #db303b 5%, #ff2631 100%);
    background-color: #db303b;
    border-radius: 11px;
}

    .menu-link--red:hover {
        background: linear-gradient(to bottom, #30DBD0 5%, #26FFF4 100%);
        background-color: #30DBD0;
        box-shadow: inset -1px 0px 13px 1px #1c1c1c8c;
        position: relative;
        top: 2px;
        color: #000;
        font-weight: 600;
    }

.menu-link--dark-grey {
    background-color: #444444;
    box-shadow: 5px 5px 0px 0px #2ab3b1;
}

.menu-link--blue {
    background-color: dodgerblue;
    box-shadow: 5px 5px 0px 0px #2ab3b1;
}

.menu-link img {
    width: 70px;
    margin-bottom: 5px;
}

.menu-link--inputNote {
    box-shadow: 0px 14px 14px -7px #cf866c;
    background: linear-gradient(to bottom, #169d5b 5%, #00a755 100%);
    background-color: #169d5b;
    border-radius: 11px;
}

    .menu-link--inputNote:hover {
        background: linear-gradient(to bottom, #be0003 5%, #f80004 100%);
        background-color: #be0003;
        box-shadow: inset -1px 0px 13px 1px #1c1c1c8c;
        position: relative;
        top: 2px;
        color: #000;
        font-weight: 600;
    }

.menu-link--mix {
    box-shadow: 0px 14px 14px -7px #cf866c;
    background: linear-gradient(to bottom, #56c123 5%, #76d748 100%);
    background-color: #56c123;
    border-radius: 11px;
}

    .menu-link--mix:hover {
        background: linear-gradient(to bottom, #b20092 5%, #e746ca 100%);
        background-color: #b20092;
        box-shadow: inset -1px 0px 13px 1px #1c1c1c8c;
        position: relative;
        top: 2px;
        color: #000;
        font-weight: 600;
    }

.menu-link--finalProduct {
    box-shadow: 0px 14px 14px -7px #cf866c;
    background: linear-gradient(to bottom, #069c9e 5%, #2876b9 100%);
    background-color: #069c9e;
    border-radius: 11px;
}

    .menu-link--finalProduct:hover {
        background: linear-gradient(to bottom, #444444 5%, #444444 100%);
        background-color: #444444;
        box-shadow: inset -1px 0px 13px 1px #1c1c1c8c;
        position: relative;
        top: 2px;
        color: #ffffff;
        /*font-weight: 600;*/
    }

.cart {
    background-color: #fff;
    padding: 10px 0px;
    border-radius: 15px;
    /*filter: drop-shadow(-1.302px 3.782px 2px rgba(216, 216, 217, 0.87)); }*/
    filter: drop-shadow(0px 0px 3px #444444);
}

    .cart.cart--full-height {
        height: 100%;
    }

    .cart.cart--green {
        background-color: #2ab3b1;
    }

.cart__header {
    margin: 0px 10px;
}

.cart__body {
    padding: 0px 10px;
}

.cart--accordion .cart__header.is-active img {
    transform: rotate(180deg);
}

.cart_header_icon {
    height: 18px;
    transition: all 0.5s;
}

.cart_header_icon_rotation {
    transform: rotate(180deg);
}

.cart--accordion .cart__body {
    border-top: 1px solid #444444;
    margin-top: 10px;
    padding-top: 10px;
}

.cart__header--grid {
    gap: 5px;
}

.cart__footer--grid {
    gap: 10px;
}

.cart-main-menu {
    height: calc(100vh - 70px);
    background-image: url("../images/KlanjePozadina.png");
    background-repeat: no-repeat;
    background-position: 50% 100%;
    background-size: cover;
}

    .cart-main-menu ul {
        margin-bottom: 10px;
        gap: 10px;
    }

.grid-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    gap: 5px;
    width: 100%;
}

    .grid-wrapper.grid-wrapper-four-row {
        grid-template-rows: auto auto auto 1fr;
    }

    .grid-wrapper.grid-wrapper-five-row {
        grid-template-rows: auto auto auto auto 1fr;
    }

    .grid-wrapper.grid-wrapper-six-row {
        grid-template-rows: auto auto auto auto auto 1fr;
    }

    .grid-wrapper.grid-wrapper-two-columns {
        grid-template-columns: auto 1fr;
    }

    .grid-wrapper.grid-wrapper-three-columns {
        grid-template-columns: 0.5fr 1fr 1fr;
    }

    .grid-wrapper.grid-wrapper-single-row {
        grid-template-rows: 1fr;
    }

    .grid-wrapper.grid-wrapper-three-row {
        grid-template-rows: auto auto 1fr;
    }

    .grid-wrapper.grid-wrapper-two-row {
        grid-template-rows: auto 1fr;
    }

.aside-menu {
    width: 60px;
    display: flex;
    flex-direction: columns;
    justify-content: center;
    min-height: calc(100vh - 85px);
    margin-right: 10px;
    z-index: 999;
}

.tree-menu {
    width: 350px;
    flex: 0 0 350px;
    border: 1px solid #069b9d;
    min-height: calc(100vh - 70px);
}

    .tree-menu .cart__header a {
        border: 1px solid #808080;
        background-color: #fff;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .tree-menu .cart__header h2 {
        position: relative;
    }

        .tree-menu .cart__header h2:before {
            position: absolute;
            content: "";
            background-color: #808080;
            height: 1px;
            width: 44px;
            right: 100%;
            top: 50%;
            margin-right: 10px;
        }

        .tree-menu .cart__header h2:after {
            position: absolute;
            content: "";
            background-color: #808080;
            height: 1px;
            width: 44px;
            left: 100%;
            top: 50%;
            margin-left: 10px;
        }

.aside-menu__list a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #069c9e;
    font-size: 30px;
}

    .aside-menu__list a.is-active {
        background-color: #069c9e;
        color: #069c9e;
    }

    .aside-menu__list a:hover {
        background-color: #a5e8e9;
        color: #069c9e;
    }

.aside-menu__list li {
    margin-bottom: 10px;
}

.aside-menu-tooltip {
    position: relative;
    z-index: 2;
}

    .aside-menu-tooltip span {
        visibility: hidden;
        width: 300px;
        background-color: #555;
        color: #fff;
        text-align: center;
        border-radius: 6px;
        padding: 5px 0;
        position: absolute;
        z-index: 1;
        left: 105px;
        margin-left: -60px;
        opacity: 0;
        transition: opacity 0.3s;
        font-size: 18px;
        padding: 5px;
    }

        .aside-menu-tooltip span::after {
            content: "";
            position: absolute;
            top: 50%;
            right: 100%;
            margin-top: -5px;
            border-width: 5px;
            border-style: solid;
            border-color: transparent #555 transparent transparent;
        }

    .aside-menu-tooltip:hover span {
        visibility: visible;
        opacity: 1;
    }

.button-tooltip {
    position: relative;
    z-index: 4;
}

    .button-tooltip span {
        visibility: hidden;
        width: 250px;
        background-color: #555;
        color: #fff;
        text-align: center;
        border-radius: 6px;
        padding: 5px 0;
        position: absolute;
        z-index: 5;
        top: 100%;
        left: 50%;
        margin-left: -15px;
        opacity: 0;
        transition: opacity 0.3s;
        font-size: 18px;
        padding: 5px;
    }

    .button-tooltip:hover span {
        visibility: visible;
        opacity: 1;
    }

.button-tooltip-right {
    position: relative;
    z-index: 4;
}

    .button-tooltip-right span {
        visibility: hidden;
        width: 250px;
        background-color: #555;
        color: #fff;
        text-align: center;
        border-radius: 6px;
        padding: 5px 0;
        position: absolute;
        z-index: 5;
        top: 100%;
        left: 50%;
        margin-left: -235px;
        opacity: 0;
        transition: opacity 0.3s;
        font-size: 18px;
        padding: 5px;
    }

    .button-tooltip-right:hover span {
        visibility: visible;
        opacity: 1;
    }

.number-wrapper {
    height: 30px;
    border-radius: 22px;
    color: #444444;
    background-color: #d8d8d9;
    display: flex;
    align-items: center;
    padding: 0 15px;
    font-size: 14px;
    white-space: nowrap;
}

.tab-list {
    border-bottom: 1px solid #808080;
    width: 100%;
}

    .tab-list li {
        margin-right: 20px;
    }

    .tab-list a {
        font-size: 16px;
        color: #050000;
        padding-bottom: 10px;
        display: block;
        position: relative;
    }

        .tab-list a.is-active {
            font-weight: 700;
        }

            .tab-list a.is-active:before {
                visibility: visible;
                opacity: 1;
            }

        .tab-list a:before {
            position: absolute;
            left: 0;
            top: 100%;
            content: "";
            width: 80%;
            height: 6px;
            background-color: #069c9e;
            transform: translate(0, -50%);
            border-radius: 3px;
            visibility: hidden;
            opacity: 0;
            transition: all .3s ease;
        }

.rotated-text {
    color: #fff;
    font-weight: 700;
    writing-mode: vertical-lr;
    transform: rotate(-180deg);
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.calendar-bgr {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-image: url(../images/PozadinaPolaNovo.jpg);
    background-size: cover;
    flex: 0 0 400px;
    margin-right: 10px;
    height: calc(100vh - 70px);
    border-radius: 15px;
}

    .calendar-bgr .logo {
        max-width: 360px;
    }

    .calendar-bgr img:not(.logo) {
        max-width: 250px;
    }

/*.calendar-bgr {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background-image: url("../images/PozadinaPola.png");
    flex: 0 0 672px;
    padding-top: 130px;
    padding-bottom: 20px;
    height: calc(100vh - 66px);
}

    .calendar-bgr .logo {
        max-width: 455px;
    }

    .calendar-bgr img:not(.logo) {
        max-width: 618px;
    }*/

.calendar-main {
    height: calc(100vh - 70px);
}

.calendar-grid {
    display: grid;
    height: 100%;
    grid-template-columns: 290px 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-template-rows: 50px 1fr 1fr 1fr 1fr 1fr;
    grid-template-areas: "nav day1 day2 day3 day4 day5 day6 day7"
        "aside day day day day day day day"
        "aside day day day day day day day"
        "aside day day day day day day day"
        "aside day day day day day day day"
        "aside day day day day day day day";
}

.calendar-nav {
    grid-area: nav;
    border-bottom: 1px solid #444444;
    padding-right: 20px;
}

    .calendar-nav .number-wrapper {
        height: 40px;
    }

.calendar-aside {
    grid-area: aside;
    border-right: 1px solid #e5e7e9;
}

.calendar-day-name {
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #444444;
}

.calendar-day {
    border-right: 1px solid #e5e7e9;
    border-bottom: 1px solid #e5e7e9;
    text-align: center;
    font-size: 12px;
}

    .calendar-day span {
        min-width: 22px;
        height: 22px;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 3px;
    }

    .calendar-day.calendar-day-current span {
        background-color: #d4f0ef;
    }

.row-box {
    color: #fff;
    font-size: 11px;
    display: flex;
    align-items: center;
    padding: 0 2px;
    text-align: left;
    height: 16px;
    margin-bottom: 2px;
    margin-left: 3px;
    border-radius: 0 2px 2px 0;
    position: relative;
}

    .row-box:before {
        width: 2px;
        height: 100%;
        content: "";
        border-radius: 2px 0 0 2px;
        background-color: #0096e5;
        position: absolute;
        right: 100%;
        margin-right: 1px;
        top: 0;
    }

.row-box--blue {
    background-color: #039be5;
}

.row-box--red {
    background-color: #d50000;
}

.row-box--blue-purple {
    background-color: #3e50b4;
}

.row-box--purple {
    background-color: #8e24aa;
}

.row-box--big {
    height: 30px;
    font-size: 14px;
    margin: -15px -7px -15px 0;
    border-radius: 0 4px 4px 0;
}

    .row-box--big:before {
        width: 8px;
        border-radius: 4px 0 0 4px;
    }

.small-calendar__body {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-template-rows: 30px 30px 30px 30px 30px 30px 30px;
}

    .small-calendar__body .cell {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        font-weight: 700;
    }

        .small-calendar__body .cell span {
            min-width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }

    .small-calendar__body .cell--today span {
        color: red;
    }

    .small-calendar__body .cell--current span {
        background-color: #299d9e;
        color: #fff;
    }

    .small-calendar__body .cell.cell--gray {
        color: #7e8387;
        font-weight: 400;
    }

    .small-calendar__body .cell.cell--teal {
        color: teal;
    }

    .small-calendar__body .cell--finished span {
        background-color: #07d965;
        color: #fff;
    }

    .small-calendar__body .cell span:hover {
        background-color: #bcf1f0;
    }

.my-calendars .my-calendars-header {
    cursor: pointer;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

    .my-calendars .my-calendars-header svg {
        transition: all .3s ease;
    }

    .my-calendars .my-calendars-header.is-active svg {
        transform: rotate(180deg);
    }

.my-calendars .check-box {
    margin-bottom: 10px;
}

.my-calendars .check-box--blue input:checked + label .check-icon {
    background-color: #039be5;
}

.my-calendars .check-box--blue .check-icon {
    border-color: #039be5;
}

.my-calendars .check-box--green input:checked + label .check-icon {
    background-color: #18ac67;
}

.my-calendars .check-box--green .check-icon {
    border-color: #18ac67;
}

.my-calendars .check-box--purple input:checked + label .check-icon {
    background-color: #3f51b5;
}

.my-calendars .check-box--purple .check-icon {
    border-color: #3f51b5;
}

.my-calendars .check-box--blue-dark input:checked + label .check-icon {
    background-color: #4285f4;
}

.my-calendars .check-box--blue-dark .check-icon {
    border-color: #4285f4;
}

.my-calendars .check-icon {
    border-radius: 3px;
    border-width: 2px;
}

    .my-calendars .check-icon:before {
        color: #fff;
    }

/*------------------------------------*\
    #TRUMPS - HELPERS
\*------------------------------------*/
.is-hidden {
    display: none !important;
}

.is-invisible {
    visibility: hidden !important;
}

.is-scrollable-y {
    overflow-x: hidden !important;
    overflow-y: auto !important;
}

.is-scrollable-x {
    overflow-x: auto !important;
    overflow-y: hidden !important;
}

.u-no-transition,
.u-no-transition * {
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -ms-transition: none !important;
    transition: none !important;
}

.u-full-heght {
    height: 100% !important;
}

.u-text-center {
    text-align: center !important;
}

.u-text-left {
    text-align: left !important;
}

.u-text-right {
    text-align: right !important;
}

.u-align-middle {
    vertical-align: middle !important;
}

.u-align-top {
    vertical-align: top !important;
}

.u-align-bottom {
    vertical-align: bottom !important;
}

.u-float-left {
    float: left !important;
}

.u-float-right {
    float: right !important;
}

.u-inline-block {
    display: inline-block !important;
}

.u-display-block {
    display: block !important;
}

.italic {
    font-style: italic !important;
}

.w-auto {
    width: auto !important;
}

.w-100 {
    width: 100% !important;
}

.w-50 {
    width: 50% !important;
}


.mw-100 {
    max-width: 100% !important;
}

.h-auto {
    height: auto !important;
}

.h-100 {
    height: 100% !important;
}

.relative {
    position: relative !important;
}

.clr-white {
    color: #fff !important;
}

.clr-dark {
    color: #070707 !important;
}

.clr-green {
    color: #069c9e !important;
}

.font-300 {
    font-weight: 300 !important;
}

.font-700 {
    font-weight: 700 !important;
}

.text-decoration-none {
    text-decoration: none !important;
}

.border-right-radius-none {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.border-top-radius-none {
    border-top-right-radius: 0 !important;
    border-top-left-radius: 0 !important;
}

.border-left-radius-none {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}

.border-bottom-radius-none {
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}

.font-10 {
    font-size: 10px;
}

.font-12 {
    font-size: 12px;
}

.font-16 {
    font-size: 16px !important;
}

.font-18 {
    font-size: 18px !important;
}

/* ------------------------------------*\
    #TRUMPS - SPACING
\*------------------------------------ */
/**
 * Margin and padding helper classes. Use these to tweak layout on a micro
 * level.
 *
 * `.(m|p)(t|r|b|l|h|v)(-|+|0) {}` = margin/padding top/right/bottom/left/horizontal/vertical less/more/none
 */
/**
      * Margin helper classes.
      *
      * Add margins.
      */
.m {
    margin: 20px !important;
}

.mt {
    margin-top: 20px !important;
}

.mr {
    margin-right: 20px !important;
}

.mb {
    margin-bottom: 20px !important;
}

.ml {
    margin-left: 20px !important;
}

.mh {
    margin-right: 20px !important;
    margin-left: 20px !important;
}

.mv {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
}

/**
      * Add extratiny margins.
      */
.m--- {
    margin: calc(20px/8) !important;
}

.mt--- {
    margin-top: calc(20px/8) !important;
}

.mr--- {
    margin-right: calc(20px/8) !important;
}

.mb--- {
    margin-bottom: calc(20px/8) !important;
}

.ml--- {
    margin-left: calc(20px/8) !important;
}

.mh--- {
    margin-right: calc(20px/8) !important;
    margin-left: calc(20px/8) !important;
}

.mv--- {
    margin-top: calc(20px/8) !important;
    margin-bottom: calc(20px/8) !important;
}

/**
      * Add tiny margins.
      */
.m-- {
    margin: calc(20px/4) !important;
}

.mt-- {
    margin-top: calc(20px/4) !important;
}

.mr-- {
    margin-right: calc(20px/4) !important;
}

.mb-- {
    margin-bottom: calc(20px/4) !important;
}

.ml-- {
    margin-left: calc(20px/4) !important;
}

.mh-- {
    margin-right: calc(20px/4) !important;
    margin-left: calc(20px/4) !important;
}

.mv-- {
    margin-top: calc(20px/4) !important;
    margin-bottom: calc(20px/4) !important;
}

/**
      * Add small margins.
      */
.m- {
    margin: calc(20px/2) !important;
}

.mt- {
    margin-top: calc(20px/2) !important;
}

.mr- {
    margin-right: calc(20px/2) !important;
}

.mb- {
    margin-bottom: calc(20px/2) !important;
}

.ml- {
    margin-left: calc(20px/2) !important;
}

.mh- {
    margin-right: calc(20px/2) !important;
    margin-left: calc(20px/2) !important;
}

.mv- {
    margin-top: calc(20px/2) !important;
    margin-bottom: calc(20px/2) !important;
}

/**
      * Add large margins.
      */
.m\+ {
    margin: calc(20px*2) !important;
}

.mt\+ {
    margin-top: calc(20px*2) !important;
}

.mr\+ {
    margin-right: calc(20px*2) !important;
}

.mb\+ {
    margin-bottom: calc(20px*2) !important;
}

.ml\+ {
    margin-left: calc(20px*2) !important;
}

.mh\+ {
    margin-right: calc(20px*2) !important;
    margin-left: calc(20px*2) !important;
}

.mv\+ {
    margin-top: calc(20px*2) !important;
    margin-bottom: calc(20px*2) !important;
}

/**
      * Add huge margins.
      */
.m\+\+ {
    margin: calc(20px*4) !important;
}

.mt\+\+ {
    margin-top: calc(20px*4) !important;
}

.mr\+\+ {
    margin-right: calc(20px*4) !important;
}

.mb\+\+ {
    margin-bottom: calc(20px*4) !important;
}

.ml\+\+ {
    margin-left: calc(20px*4) !important;
}

.mh\+\+ {
    margin-right: calc(20px*4) !important;
    margin-left: calc(20px*4) !important;
}

.mv\+\+ {
    margin-top: calc(20px*4) !important;
    margin-bottom: calc(20px*4) !important;
}

/**
      * Remove margins.
      */
.m0 {
    margin: 0 !important;
}

.mt0 {
    margin-top: 0 !important;
}

.mr0 {
    margin-right: 0 !important;
}

.mb0 {
    margin-bottom: 0 !important;
}

.ml0 {
    margin-left: 0 !important;
}

.mh0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
}

.mv0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

/**
      * Negative margins.
      */
.-m {
    margin: calc(20px*-1) !important;
}

.-mt {
    margin-top: calc(20px*-1) !important;
}

.-mr {
    margin-right: calc(20px*-1) !important;
}

.-mb {
    margin-bottom: calc(20px*-1) !important;
}

.-ml {
    margin-left: calc(20px*-1) !important;
}

.-mh {
    margin-right: calc(20px*-1) !important;
    margin-left: calc(20px*-1) !important;
}

.-mv {
    margin-top: calc(20px*-1) !important;
    margin-bottom: calc(20px*-1) !important;
}

/**
      * Tiny negative margins.
      */
.-m-- {
    margin: calc(calc(20px/4)*-1) !important;
}

.-mt-- {
    margin-top: calc(calc(20px/4)*-1) !important;
}

.-mr-- {
    margin-right: calc(calc(20px/4)*-1) !important;
}

.-mb-- {
    margin-bottom: calc(calc(20px/4)*-1) !important;
}

.-ml-- {
    margin-left: calc(calc(20px/4)*-1) !important;
}

.-mh-- {
    margin-right: calc(calc(20px/4)*-1) !important;
    margin-left: calc(calc(20px/4)*-1) !important;
}

.-mv-- {
    margin-top: calc(calc(20px/4)*-1) !important;
    margin-bottom: calc(calc(20px/4)*-1) !important;
}

/**
      * Small negative margins.
      */
.-m- {
    margin: calc(calc(20px/2)*-1) !important;
}

.-mt- {
    margin-top: calc(calc(20px/2)*-1) !important;
}

.-mr- {
    margin-right: calc(calc(20px/2)*-1) !important;
}

.-mb- {
    margin-bottom: calc(calc(20px/2)*-1) !important;
}

.-ml- {
    margin-left: calc(calc(20px/2)*-1) !important;
}

.-mh- {
    margin-right: calc(calc(20px/2)*-1) !important;
    margin-left: calc(calc(20px/2)*-1) !important;
}

.-mv- {
    margin-top: calc(calc(20px/2)*-1) !important;
    margin-bottom: calc(calc(20px/2)*-1) !important;
}

/**
      * Large negative margins.
      */
.-m\+ {
    margin: calc(calc(20px*2)*-1) !important;
}

.-mt\+ {
    margin-top: calc(calc(20px*2)*-1) !important;
}

.-mr\+ {
    margin-right: calc(calc(20px*2)*-1) !important;
}

.-mb\+ {
    margin-bottom: calc(calc(20px*2)*-1) !important;
}

.-ml\+ {
    margin-left: calc(calc(20px*2)*-1) !important;
}

.-mh\+ {
    margin-right: calc(calc(20px*2)*-1) !important;
    margin-left: calc(calc(20px*2)*-1) !important;
}

.-mv\+ {
    margin-top: calc(calc(20px*2)*-1) !important;
    margin-bottom: calc(calc(20px*2)*-1) !important;
}

/**
      * Huge negative margins.
      */
.-m\+\+ {
    margin: calc(calc(20px*4)*-1) !important;
}

.-mt\+\+ {
    margin-top: calc(calc(20px*4)*-1) !important;
}

.-mr\+\+ {
    margin-right: calc(calc(20px*4)*-1) !important;
}

.-mb\+\+ {
    margin-bottom: calc(calc(20px*4)*-1) !important;
}

.-ml\+\+ {
    margin-left: calc(calc(20px*4)*-1) !important;
}

.-mh\+\+ {
    margin-right: calc(calc(20px*4)*-1) !important;
    margin-left: calc(calc(20px*4)*-1) !important;
}

.-mv\+\+ {
    margin-top: calc(calc(20px*4)*-1) !important;
    margin-bottom: calc(calc(20px*4)*-1) !important;
}

.m-auto {
    margin: auto !important;
}

.mr-auto {
    margin-right: auto !important;
}

.ml-auto {
    margin-left: auto !important;
}

.mt-auto {
    margin-top: auto !important;
}

.mb-auto {
    margin-bottom: auto !important;
}

.mt-10px {
    margin-top: 10px !important;
}

.mt-15px {
    margin-top: 15px !important;
}

.mt-20px {
    margin-top: 20px !important;
}
/**
      * Padding helper classes.
      *
      * Add paddings.
      */
.p {
    padding: 20px !important;
}

.pt {
    padding-top: 20px !important;
}

.pr {
    padding-right: 20px !important;
}

.pb {
    padding-bottom: 20px !important;
}

.pl {
    padding-left: 20px !important;
}

.ph {
    padding-right: 20px !important;
    padding-left: 20px !important;
}

.pv {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
}

/**
      * Add tiny paddings.
      */
.p-- {
    padding: calc(20px/4) !important;
}

.pt-- {
    padding-top: calc(20px/4) !important;
}

.pr-- {
    padding-right: calc(20px/4) !important;
}

.pb-- {
    padding-bottom: calc(20px/4) !important;
}

.pl-- {
    padding-left: calc(20px/4) !important;
}

.ph-- {
    padding-right: calc(20px/4) !important;
    padding-left: calc(20px/4) !important;
}

.pv-- {
    padding-top: calc(20px/4) !important;
    padding-bottom: calc(20px/4) !important;
}

/**
      * Add small paddings.
      */
.p- {
    padding: calc(20px/2) !important;
}

.pt- {
    padding-top: calc(20px/2) !important;
}

.pr- {
    padding-right: calc(20px/2) !important;
}

.pb- {
    padding-bottom: calc(20px/2) !important;
}

.pl- {
    padding-left: calc(20px/2) !important;
}

.ph- {
    padding-right: calc(20px/2) !important;
    padding-left: calc(20px/2) !important;
}

.pv- {
    padding-top: calc(20px/2) !important;
    padding-bottom: calc(20px/2) !important;
}

/**
      * Add large paddings.
      */
.p\+ {
    padding: calc(20px*2) !important;
}

.pt\+ {
    padding-top: calc(20px*2) !important;
}

.pr\+ {
    padding-right: calc(20px*2) !important;
}

.pb\+ {
    padding-bottom: calc(20px*2) !important;
}

.pl\+ {
    padding-left: calc(20px*2) !important;
}

.ph\+ {
    padding-right: calc(20px*2) !important;
    padding-left: calc(20px*2) !important;
}

.pv\+ {
    padding-top: calc(20px*2) !important;
    padding-bottom: calc(20px*2) !important;
}

/**
      * Add huge paddings.
      */
.p\+\+ {
    padding: calc(20px*4) !important;
}

.pt\+\+ {
    padding-top: calc(20px*4) !important;
}

.pr\+\+ {
    padding-right: calc(20px*4) !important;
}

.pb\+\+ {
    padding-bottom: calc(20px*4) !important;
}

.pl\+\+ {
    padding-left: calc(20px*4) !important;
}

.ph\+\+ {
    padding-right: calc(20px*4) !important;
    padding-left: calc(20px*4) !important;
}

.pv\+\+ {
    padding-top: calc(20px*4) !important;
    padding-bottom: calc(20px*4) !important;
}

/**
      * Remove paddings.
      */
.p0 {
    padding: 0 !important;
}

.pt0 {
    padding-top: 0 !important;
}

.pr0 {
    padding-right: 0 !important;
}

.pb0 {
    padding-bottom: 0 !important;
}

.pl0 {
    padding-left: 0 !important;
}

.ph0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
}

.pv0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

/*# sourceMappingURL=app.css.map */

.cursor-pointer {
    cursor: pointer !important;
}

.cursor-not-allowed {
    cursor: not-allowed !important;
}

.d-none {
    display: none;
}

/*---------------Loader---------------*/
.spinner-container {
    width: 100%;
    margin: 30px 0 30px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spinner {
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #299d9e;
    width: 80px;
    height: 80px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
/*---------------Loader---------------*/

/*---------------Login---------------*/
.login-page {
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url('/images/PozadinaCela2Lite.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-cart {
    width: 500px;
    padding: 40px 20px;
    border: 1px solid #e2e2e2;
}

.login-company-logo {
    width: 100px;
    height: 100px;
    border-radius: 50px;
    border: 2px solid #e2e2e2;
    position: absolute;
    top: -75px;
    left: 200px;
}

.login-sirmiumerp-logo {
    width: 200px;
    position: absolute;
    bottom: -120px;
    left: 150px;
}

.login-input-label {
    left: 50px !important;
    font-weight: 500;
}

.login-input {
    border: 1px solid #069c9e;
    padding-left: 50px;
}

.login-input-icon {
    width: 39px;
    height: 39px;
    background: #069c9e;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 15px;
    border-top-right-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-submit-button {
    position: absolute;
    bottom: -21px;
    width: 200px;
    left: 150px;
    border-radius: 15px;
}

.password-eye {
    width: 25px;
    position: absolute;
    top: -5px;
    right: 12px;
    cursor: pointer;
}

    .password-eye img {
        width: 25px;
    }
/*---------------Login---------------*/

/*---------------Culture select---------------*/
.lang-select {
    position: absolute;
    border-radius: 15px;
    background-color: #ffffff;
    border: 1px solid #444444;
    padding: 10px 20px 10px 20px;
    width: 100%;
    z-index: 10;
}

.lang-select-item {
    height: 35px;
    display: flex;
    align-items: center;
    cursor: pointer;
}
/*---------------Culture select---------------*/

/*---------------AUDIT---------------*/
/*---------------Calendar-----------*/
.audit-calendar-header {
    width: 100%;
    margin-top: auto;
    margin-bottom: 5px;
    color: #fff;
}

.audit-calendar-header-row {
    display: flex;
    align-items: center;
    justify-content: start;
}

.audit-dates {
    width: 100%;
    color: #000;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: auto;
}

.audit-lightblue-text {
    color: #abdedf;
}

.audit-lightred-text {
    color: #e41f1f;
}

.audit-sunday-text-color {
    color: #f17373;
    /*cursor: default !important;*/
}

    .audit-sunday-text-color:hover {
        /*background-color: transparent !important;*/
        color: #f17373 !important;
    }

.audit-border-verified {
    border: 1px solid #de1414;
}

.audit-border-completed {
    border: 1px solid #0bbb46;
}

.audit-border-nc {
    border: 1px solid #BB0000;
}

.audit-current-date-background {
    background-color: #299d9e;
}

.audit-w-10-center-center {
    width: 10%;
    align-items: center;
    justify-content: center;
    display: flex;
}

.audit-day-wrapper {
    width: 10%;
    height: calc((100vw - 80px) * 0.3 *0.07);
    align-items: center;
    justify-content: center;
    display: flex;
    box-sizing: border-box;
}

.audit-day-cell {
    width: 90%;
    height: 90%;
    text-align: center;
    box-sizing: border-box;
    border-radius: 60%;
    align-items: center;
    justify-content: center;
    display: flex;
    padding: 2px;
    cursor: pointer;
}

    .audit-day-cell:hover {
        background-color: #8eadbd;
        color: #5ec8c9; /* #cf571d;*/
    }

    .audit-day-cell span {
        height: 16px;
        line-height: 16px;
    }

.audit-month-year {
    font-size: 28px;
    color: #000;
    margin: auto;
    cursor: pointer;
}

    .audit-month-year:hover {
        color: #5ec8c9;
    }
/*---------------!Calendar-----------*/
/*---------------Calendar picker-----------*/
.audit-calendar-picker-freeze-layer {
    position: absolute;
    display: flex;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(25, 56, 58, 0.57);
    z-index: 9002;
    overflow-y: auto;
    cursor: pointer;
}

.audit-calendar-picker-wrapper {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 9002;
}

.audit-calendar-picker-card {
    border-radius: 10px !important;
    position: relative;
    top: 30%;
    width: 250px;
    z-index: 9010;
    margin-right: auto !important;
    margin-left: auto !important;
    background-color: #121212db !important;
}

.audit-calendar-picker-card-body {
    width: 70%;
    margin: auto;
    padding: 5px;
}
/*---------------!Calendar picker-----------*/
/*---------------AUDIT---------------*/

/*---------------SweetAlert---------------*/
.swal2-container {
    z-index: 9999 !important;
}
/*---------------SweetAlert---------------*/

/*---------------Loader---------------*/
.loader-freeze-layer {
    position: fixed;
    display: flex;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(25, 56, 58, 0.57);
    z-index: 2001;
    overflow-y: auto;
}

.loader-cart {
    position: relative;
    width: 300px;
    padding: 10px;
    margin: auto;
    border: 1px solid #e2e2e2;
    border-radius: 15px;
    background: #ffffff !important;
    filter: drop-shadow(-1.302px 3.782px 2px rgba(216, 216, 217, 0.87));
    box-shadow: 0 6px 12px rgb(0 0 0 / 60%);
    z-index: 9998;
}

.loader-text {
    margin-bottom: 30px;
    text-align: center;
    font-size: 18px;
    word-break: break-word;
    font-weight: 500;
}
/*---------------Loader---------------*/
/*---------------Photo Preview---------------*/
.photo-preview-wrapper {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 9001;
}

.photo-preview-card {
    position: relative;
    top: 0;
    z-index: 9001;
    height: 100%;
    width: 100%;
    margin-right: auto !important;
    margin-left: auto !important;
    background-color: #121212db !important;
}

.current_photo_border {
    border: 2px solid #439585;
}
/*---------------Photo Preview---------------*/

/*---------------Ivko radni nalozi---------------*/

.status-box {
    border: 1px solid #a2a2a2;
    padding: 10px;
    border-radius: 5px;
    background-color: #fff;
    text-align: center;
    position: relative;
}

    .status-box h4 {
        font-size: 18px;
    }

    .status-box p {
        font-size: 14px;
    }

    .status-box.status-box--green {
        background-color: #6bebe9;
    }

    .status-box.status-box--red {
        background-color: #d50000;
        color: #fff;
    }

    .status-box.status-box--orange {
        background-color: #efcdae;
    }

    .status-box .status-img {
        position: absolute;
        right: 10px;
        bottom: 10px;
    }
/*---------------Ivko radni nalozi---------------*/

/*---------------Select popup---------------*/
.select-popup-wrapper {
    width: 100vw;
    height: 90vh;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
}

.select-popup {
    position: absolute;
    top: 110%;
    left: 0px;
    right: 0px;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border: 1px solid #3aadae;
    border-radius: 20px;
    padding: 10px;
    z-index: 10;
}

.select-popup-header {
    display: flex;
    margin-bottom: 10px;
    align-items: center;
}

.select-popup-body {
    max-height: 200px;
    overflow-y: scroll;
}
/*---------------Select popup---------------*/

/*---------------NEW NAVIGATION MENU---------------*/
.navigation {
    position: relative;
    width: 715px;
    height: 55px;
    margin-top: 5px;
    margin-bottom: 5px
}

    .navigation ul {
        display: flex;
    }

        .navigation ul li {
            position: relative;
            list-style: none;
            width: 55px;
            height: 55px;
            z-index: 1;
        }

            .navigation ul li a {
                position: relative;
                display: flex;
                justify-content: center;
                align-items: center;
                flex-direction: column;
                color: #fff;
                text-align: center;
                cursor: pointer;
            }

                .navigation ul li a .icon {
                    position: relative;
                    line-height: 65px;
                    transition: 0.5s;
                    /*font-size: 30px;*/
                    width: 40px;
                    transform: translateY(6px);
                }

            .navigation ul li:hover a .icon {
                width: 30px;
                /*font-size: 20px;*/
                transform: translateY(-6px);
            }

            .navigation ul li.active a .icon {
                width: 30px;
                /*font-size: 20px;*/
                transform: translateY(-6px);
            }

            .navigation ul li a .text {
                position: absolute;
                font-size: 8px;
                color: #fff;
                bottom: 20px;
                font-weight: 400;
                transition: 0.25s;
                text-transform: uppercase;
                transform: scale(0);
            }

            .navigation ul li:hover a .text {
                transform: scale(1);
            }

            .navigation ul li.active a .text {
                transform: scale(1);
            }

.indicator {
    position: absolute;
    left: 0;
    width: 55px;
    height: 55px;
    border-radius: 10px;
    transition: 0.5s;
}

.indicator-active {
    position: absolute;
    left: 0;
    width: 55px;
    height: 55px;
    border-radius: 10px;
    transition: 0.5s;
}

.navigation ul li:nth-child(1) {
    margin-right: 5px;
}

    .navigation ul li:nth-child(1):hover ~ .indicator {
        background: #069c9e;
        /*box-shadow: 0 5px 15px #00a75599;*/
        transform: translateX(calc(60px * 0));
    }

    .navigation ul li:nth-child(1).active ~ .indicator-active {
        background: #069c9e;
        /*box-shadow: 0 5px 15px #f53b5799;*/
        transform: translateX(calc(60px * 0));
    }

.navigation ul li:nth-child(2) {
    margin-right: 5px;
}

    .navigation ul li:nth-child(2):hover ~ .indicator {
        background: #069c9e;
        /*box-shadow: 0 5px 15px #56c12399;*/
        transform: translateX(calc(60px * 1));
    }

    .navigation ul li:nth-child(2).active ~ .indicator-active {
        background: #069c9e;
        /*box-shadow: 0 5px 15px #5d62fb99;*/
        transform: translateX(calc(60px * 1));
    }

.navigation ul li:nth-child(3) {
    margin-right: 5px;
}

    .navigation ul li:nth-child(3):hover ~ .indicator {
        background: #069c9e;
        /*box-shadow: 0 5px 15px #0064b999;*/
        transform: translateX(calc(60px * 2));
    }

    .navigation ul li:nth-child(3).active ~ .indicator-active {
        background: #069c9e;
        /*box-shadow: 0 5px 15px #05c46b99;*/
        transform: translateX(calc(60px * 2));
    }

.navigation ul li:nth-child(4) {
    margin-right: 5px;
}

    .navigation ul li:nth-child(4):hover ~ .indicator {
        background: #069c9e;
        /*box-shadow: 0 5px 15px #ffa20099;*/
        transform: translateX(calc(60px * 3));
    }

    .navigation ul li:nth-child(4).active ~ .indicator-active {
        background: #069c9e;
        /*box-shadow: 0 5px 15px #0fbcf999;*/
        transform: translateX(calc(60px * 3));
    }

.navigation ul li:nth-child(5) {
    margin-right: 5px;
}

    .navigation ul li:nth-child(5):hover ~ .indicator {
        background: #069c9e;
        /*box-shadow: 0 5px 15px #ff7b0099;*/
        transform: translateX(calc(60px * 4));
    }

    .navigation ul li:nth-child(5).active ~ .indicator-active {
        background: #069c9e;
        /*box-shadow: 0 5px 15px #ffa80199;*/
        transform: translateX(calc(60px * 4));
    }

.navigation ul li:nth-child(6) {
    margin-right: 5px;
}

    .navigation ul li:nth-child(6):hover ~ .indicator {
        background: #069c9e;
        /*box-shadow: 0 5px 15px #ff263199;*/
        transform: translateX(calc(60px * 5));
    }

    .navigation ul li:nth-child(6).active ~ .indicator-active {
        background: #069c9e;
        /*box-shadow: 0 5px 15px #ffa80199;*/
        transform: translateX(calc(60px * 5));
    }

.navigation ul li:nth-child(7) {
    margin-right: 5px;
}

    .navigation ul li:nth-child(7):hover ~ .indicator {
        background: #069c9e;
        /*box-shadow: 0 5px 15px #ff000a99;*/
        transform: translateX(calc(60px * 6));
    }

    .navigation ul li:nth-child(7).active ~ .indicator-active {
        background: #069c9e;
        /*box-shadow: 0 5px 15px #ffa80199;*/
        transform: translateX(calc(60px * 6));
    }

.navigation ul li:nth-child(8) {
    margin-right: 5px;
}

    .navigation ul li:nth-child(8):hover ~ .indicator {
        background: #069c9e;
        /*box-shadow: 0 5px 15px #b2009299;*/
        transform: translateX(calc(60px * 7));
    }

    .navigation ul li:nth-child(8).active ~ .indicator-active {
        background: #069c9e;
        /*box-shadow: 0 5px 15px #ffa80199;*/
        transform: translateX(calc(60px * 7));
    }

.navigation ul li:nth-child(9) {
    margin-right: 5px;
}

    .navigation ul li:nth-child(9):hover ~ .indicator {
        background: #069c9e;
        /*box-shadow: 0 5px 15px #b2009299;*/
        transform: translateX(calc(60px * 8));
    }

    .navigation ul li:nth-child(9).active ~ .indicator-active {
        background: #069c9e;
        /*box-shadow: 0 5px 15px #ffa80199;*/
        transform: translateX(calc(60px * 8));
    }

.navigation ul li:nth-child(10) {
    margin-right: 5px;
}

    .navigation ul li:nth-child(10):hover ~ .indicator {
        background: #069c9e;
        /*box-shadow: 0 5px 15px #b2009299;*/
        transform: translateX(calc(60px * 9));
    }

    .navigation ul li:nth-child(10).active ~ .indicator-active {
        background: #069c9e;
        /*box-shadow: 0 5px 15px #ffa80199;*/
        transform: translateX(calc(60px * 9));
    }

.navigation ul li:nth-child(11) {
    margin-right: 5px;
}

    .navigation ul li:nth-child(11):hover ~ .indicator {
        background: #069c9e;
        /*box-shadow: 0 5px 15px #b2009299;*/
        transform: translateX(calc(60px * 10));
    }

    .navigation ul li:nth-child(11).active ~ .indicator-active {
        background: #069c9e;
        /*box-shadow: 0 5px 15px #ffa80199;*/
        transform: translateX(calc(60px * 10));
    }

.navigation ul li:nth-child(12) {
    margin-right: 0px;
}

    .navigation ul li:nth-child(12):hover ~ .indicator {
        background: #069c9e;
        /*box-shadow: 0 5px 15px #b2009299;*/
        transform: translateX(calc(60px * 11));
    }

    .navigation ul li:nth-child(12).active ~ .indicator-active {
        background: #069c9e;
        /*box-shadow: 0 5px 15px #ffa80199;*/
        transform: translateX(calc(60px * 11));
    }

.navigation-home {
    position: relative;
    width: 55px;
    height: 55px;
    margin-top: 5px;
    margin-bottom: 5px
}

    .navigation-home ul {
        display: flex;
    }

        .navigation-home ul li {
            position: relative;
            list-style: none;
            width: 55px;
            height: 55px;
            z-index: 1;
        }

            .navigation-home ul li a {
                position: relative;
                display: flex;
                justify-content: center;
                align-items: center;
                flex-direction: column;
                color: #fff;
                text-align: center;
            }

                .navigation-home ul li a .icon {
                    position: relative;
                    line-height: 65px;
                    transition: 0.5s;
                    /*font-size: 30px;*/
                    width: 40px;
                    transform: translateY(6px);
                }

            .navigation-home ul li:hover a .icon {
                width: 30px;
                /*font-size: 20px;*/
                transform: translateY(-6px);
            }

            .navigation-home ul li.active a .icon {
                width: 30px;
                /*font-size: 20px;*/
                transform: translateY(-6px);
            }

            .navigation-home ul li a .text {
                position: absolute;
                font-size: 8px;
                color: #fff;
                bottom: 20px;
                font-weight: 400;
                transition: 0.25s;
                text-transform: uppercase;
                transform: scale(0);
            }

            .navigation-home ul li:hover a .text {
                transform: scale(1);
            }

            .navigation-home ul li.active a .text {
                transform: scale(1);
            }

.indicator-home {
    position: absolute;
    left: 0;
    width: 55px;
    height: 55px;
    border-radius: 10px;
    transition: 0.5s;
}

.indicator-active-home {
    position: absolute;
    left: 0;
    width: 55px;
    height: 55px;
    border-radius: 10px;
    transition: 0.5s;
}

.navigation-home ul li:nth-child(1):hover ~ .indicator-home {
    background: #01afae;
    box-shadow: 0 5px 15px #01afae99;
    transform: translateX(calc(60px * 0));
}

.navigation-home ul li:nth-child(1).active ~ .indicator-active-home {
    background: #01afae;
    /*box-shadow: 0 5px 15px #f53b5799;*/
    transform: translateX(calc(60px * 0));
}

/*---------------NEW NAVIGATION MENU---------------*/

/*---------------NEW INPUT-----------------*/

.form-input {
    position: relative;
}

    .form-input input,
    .form-input select,
    .form-input textarea {
        width: 100%;
        resize: none;
        padding: 1px 5px;
        font-size: 18px;
        font-weight: 600;
        color: #333;
        border: none;
        outline: none;
        border-bottom: 1px solid #777;
    }

    .form-input textarea {
        height: 80px;
    }

    .form-input span {
        position: absolute;
        left: 0;
        padding: 2px 0;
        pointer-events: none;
        font-size: 18px;
        font-weight: 300;
        transition: 0.3s;
    }

    .form-input input[type="date"] ~ span,
    .form-input input:focus ~ span,
    .form-input input:valid ~ span,
    .form-input input:disabled ~ span,
    .form-input select:focus ~ span,
    .form-input select:valid ~ span,
    .form-input textarea:focus ~ span,
    .form-input textarea:valid ~ span {
        transform: translateY(-15px);
        font-size: 12px;
        letter-spacing: 1px;
        color: #095a55;
        font-weight: 500;
    }

    .form-input input:disabled {
        background-color: #d8d8d9;
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
    }

.w30 {
    width: 30px;
}

.h30 {
    height: 30px;
}

/*---------------NEW INPUT-----------------*/


.reset-style, .reset-style * {
    all: revert;
}