/* Reset 
================================================== */

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;
}

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;
}

img {
    display: block;
}

.clear {
    clear: both;
}


/* Colors */

.white {
    color: #fff;
}

.black {
    color: #000;
}

.color-success {
    color: #598527;
}

.color-wrong {
    color: #ff3131;
}

.fwb {
    font-weight: 900 !important;
}


/* Flexbox */

.grid {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -o-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -o-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
}

.grid.wrap {
    -webkit-box-wrap: wrap;
    -moz-box-wrap: wrap;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.grid.wrap-reverse {
    -webkit-box-wrap: wrap-reverse;
    -moz-box-wrap: wrap-reverse;
    -webkit-flex-wrap: wrap-reverse;
    -ms-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
}

@media (max-width:1200px) {
    .grid.wrap-large {
        -webkit-box-wrap: wrap;
        -moz-box-wrap: wrap;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

@media (max-width:1100px) {
    .grid.wrap-average {
        -webkit-box-wrap: wrap;
        -moz-box-wrap: wrap;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

@media (max-width:999px) {
    .grid.wrap-mid {
        -webkit-box-wrap: wrap;
        -moz-box-wrap: wrap;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .grid.column-orient-mid {
        -webkit-box-orient: vertical;
        -moz-box-orient: vertical;
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -o-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

@media (min-width:1000px) {
    .grid.column-orient-mid-large {
        -webkit-box-orient: vertical;
        -moz-box-orient: vertical;
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -o-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

@media (max-width:900px) {
    .grid.wrap-mezzo {
        -webkit-box-wrap: wrap;
        -moz-box-wrap: wrap;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .grid.wrap-mezzo-reverse {
        -webkit-box-wrap: wrap-reverse;
        -moz-box-wrap: wrap-reverse;
        -webkit-flex-wrap: wrap-reverse;
        -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
    }
    .grid-cell.center-small {
        -webkit-align-self: center;
        -align-self: center;
        -moz-align-self: center;
        -ms-align-self: center;
        text-align: center;
    }
}

@media (max-width:800px) {
    .grid.wrap-average {
        -webkit-box-wrap: wrap;
        -moz-box-wrap: wrap;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

@media (max-width:700px) {
    .grid.wrap-narrow {
        -webkit-box-wrap: wrap;
        -moz-box-wrap: wrap;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .grid.wrap-narrow-reverse {
        -webkit-box-wrap: wrap-reverse;
        -moz-box-wrap: wrap-reverse;
        -webkit-flex-wrap: wrap-reverse;
        -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
    }
    .grid.justify-center-narrow {
        -webkit-justify-content: center;
        -moz-justify-content: center;
        -ms-justify-content: center;
        justify-content: center;
    }
}

@media (max-width:500px) {
    .grid.wrap-tiny {
        -webkit-box-wrap: wrap;
        -moz-box-wrap: wrap;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.theme-boxed .grid.boxed-wrap {
    -webkit-box-wrap: wrap;
    -moz-box-wrap: wrap;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.grid.column-orient {
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -o-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.grid.row-orient {
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -o-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
}

.grid.managed-width,
.grid-cell.managed-width {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
}

.grid.narrow-width,
.grid-cell.narrow-width {
    width: 100%;
    max-width: 850px;
    margin: 0 auto;
}

.grid.borders div {
    border-bottom: 1px solid #aaa;
    border-left: 1px solid #aaa;
}

.grid.borders.first-row div {
    border-top: 1px solid #aaa;
    font-weight: 700;
    background: #eaeaea;
    background: -moz-linear-gradient(top, #eaeaea 0%, #d8d8d8 100%);
    background: -webkit-linear-gradient(top, #eaeaea 0%, #d8d8d8 100%);
    background: linear-gradient(to bottom, #eaeaea 0%, #d8d8d8 100%);
}

.grid.borders div:last-child {
    border-right: 1px solid #aaa;
}

.grid.center {
    -webkit-align-content: center;
    -moz-align-content: center;
    -ms-align-content: center;
    align-content: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
}

.grid.nowrap {
    -moz-box-wrap: nowrap!important;
    flex-wrap: nowrap!important;
    -ms-box-wrap: nowrap!important;
}

.grid.bottom {
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    -ms-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-align-content: flex-end;
    -moz-align-content: flex-end;
    -ms-align-content: flex-end;
    align-content: flex-end;
    -webkit-align-items: flex-end;
    -moz-align-items: flex-end;
    -ms-align-items: flex-end;
    align-items: flex-end;
}

.grid.baseline {
    align-items: baseline;
    -webkit-align-items: baseline;
    -moz-align-items: baseline;
    -ms-align-items: baseline;
}

.grid.start {
    align-items: flex-start;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    -ms-align-items: flex-start;
}

.grid.stretch {
    align-items: stretch;
    -webkit-align-items: stretch;
    -moz-align-items: stretch;
    -ms-align-items: stretch;
}

.grid.justify-center {
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
}

.grid.justify-space {
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.grid.justify-space-around {
    justify-content: space-around;
    -moz-justify-content: space-around;
    -ms-justify-content: space-around;
    -webkit-justify-content: space-around;
}

.grid.justify-end {
    justify-content: flex-end;
    -moz-justify-content: flex-end;
    -ms-justify-content: flex-end;
    -webkit-justify-content: flex-end;
}

.grid.justify-start {
    justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    -webkit-justify-content: flex-start;
}

.grid-cell {
    -webkit-box-flex: 1 1 auto;
    -moz-box-flex: 1 1 auto;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.grid-cell.stretch {
    -webkit-align-self: stretch;
    align-self: stretch;
    -moz-align-self: stretch;
    -ms-align-self: stretch;
}

.grid-cell.double-size {
    -webkit-flex-grow: 2;
    -moz-flex-grow: 2;
    flex-grow: 2;
    -ms-flex-grow: 2;
}

.grid-cell.noflex {
    -webkit-box-flex: 0 0 auto;
    -moz-box-flex: 0 0 auto;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

.grid-cell.center {
    -webkit-align-self: center;
    -align-self: center;
    -moz-align-self: center;
    -ms-align-self: center;
    text-align: center;
}

.grid-cell.centerNt {
    -webkit-align-self: center;
    -align-self: center;
    -moz-align-self: center;
    -ms-align-self: center;
}

.grid-cell.right {
    -webkit-align-self: right;
    -align-self: right;
    -moz-align-self: right;
    -ms-align-self: right;
    text-align: right;
}

.grid-cell.center-nonText {
    -webkit-align-self: center;
    -align-self: center;
    -moz-align-self: center;
    -ms-align-self: center;
}

.grid-cell.start {
    -webkit-align-self: flex-start;
    -align-self: flex-start;
    -moz-align-self: flex-start;
    -ms-align-self: flex-start;
}

.grid-cell.end {
    -webkit-align-self: flex-end;
    -align-self: flex-end;
    -moz-align-self: flex-end;
    -ms-align-self: flex-end;
}

.grid-cell.grow0 {
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    flex-grow: 0;
    -ms-flex-grow: 0;
}

.grid-cell.grow2 {
    -webkit-flex-grow: 2;
    -moz-flex-grow: 2;
    flex-grow: 2;
    -ms-flex-grow: 2;
}

.grid-cell.grow3 {
    -webkit-flex-grow: 3;
    -moz-flex-grow: 3;
    flex-grow: 3;
    -ms-flex-grow: 3;
}

.fullWidth {
    padding: 0 35px;
}

.w100 {
    width: 100%;
}

.w90 {
    width: 90%;
}

.w80 {
    width: 80%;
}

.w70 {
    width: 70%;
}

.w66 {
    width: 66.6666%;
}

.w60 {
    width: 60%;
}

.w50 {
    width: 50%;
}

.w40 {
    width: 40%;
}

.w33 {
    width: 33.3333%;
}

.w30 {
    width: 30%;
}

.w20 {
    width: 20%;
}

.mw100 {
    max-width: 100%;
}

.mw90 {
    max-width: 90%;
}

.mw80 {
    max-width: 80%;
}

.mw70 {
    max-width: 70%;
}

.mw66 {
    max-width: 66.6666%;
}

.mw60 {
    max-width: 60%;
}

.mw50 {
    max-width: 50%;
}

.mw33 {
    max-width: 33.3333%;
}

.mw30 {
    max-width: 30%;
}

.mw20 {
    max-width: 20%;
}

.h100 {
    height: 100%;
}

.m0 {
    margin: 0 auto;
}


/* Flexox end */


/* Basics
================================================== */

* {
    -o-transition: color 0.3s ease;
    -ms-transition: color 0.3s ease;
    -moz-transition: color 0.3s ease;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;

    transition: opacity .25s ease-in-out;
    -o-transition: opacity .25s ease-in-out;
    -ms-transition: opacity .25s ease-in-out;
    -moz-transition: opacity .25s ease-in-out;
    -webkit-transition: opacity .25s ease-in-out;
}

body {
    font: 14px "Open Sans", Helvetica, Arial, sans-serif;
    line-height: 1.8;
    color: #444;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
}

html {
    overflow: -moz-scrollbars-vertical;
    overflow-y: scroll;
}

.left {
    float: left !important;
}

.right {
    float: right !important;
}

.hide {
    display: none;
}


/* Typography */

html {
    font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.2125em;
    margin-top: -0.2em;
    margin-bottom: 0.2em;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1rem;
}

h4 {
    font-size: .875rem;
}

h5 {
    font-size: .625rem;
}

h6 {
    font-size: .425rem;
}

.btn-large {
    font-size: 0.75rem;
    height: 3.75rem;
    line-height: 3.75rem;
}

@media (max-width: 1999px) {
    html {
        font-size: 16px;
    }
}

@media (max-width: 1500px) {
    html {
        font-size: 15px;
    }
}

@media (max-width: 1200px) {
    html {
        font-size: 14px;
    }
}

@media (max-width: 1000px) {
    html {
        font-size: 13px;
    }
}

@media (max-width: 800px) {
    html {
        font-size: 12px;
    }
}

@media (max-width: 700px) {
    html {
        font-size: 12px;
    }
}


p {
    margin: 0.625rem 0 0 0;
}

p img {
    margin: 0;
    max-width: 100%;
    height: auto;
}

em {
    font-style: italic;
}

strong {
    font-weight: 600;
}

small {
    font-size: 80%;
}

hr {
    border: solid #f0f0f0;
    border-width: 1px 0 0;
    clear: both;
    margin: 0px;
    height: 0;
    width: 100%;
}

hr.full-width {
    position: absolute;
    left: 0px
}

.no-underline a,
a.no-underline {
    text-decoration: none;
}

.grid-cell.text-left {
    text-align: left;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-center {
    text-align: center;
}

.text-justify {
    text-align: justify;
}

.fixed {
    position: fixed;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.full-width {
    width: 100%;
}

.height-auto {
    height: auto;
}

.display-block {
    display: block;
}



.top-0 {
    top: 0;
}

.left-0 {
    left: 0;
}

.right-0 {
    right: 0;
}

.bottom-0 {
    bottom: 0;
}

.t0 {
    top: 0;
}

.l0 {
    left: 0;
}

.r0 {
    right: 0;
}

.b0 {
    bottom: 0;
}

.pos0 {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.inline-block {
    display: inline-block;
}

.bold {
    font-weight: 600;
}

.text {
    font-size: 1rem;
}

.text-m {
    font-size: 1.143rem;
}

.background-primary {
    background: #54afe9;
}

.px1 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.px2 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.px3 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.py1 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.py2 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.py3 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.p1 {
    padding: 0.5rem;
}

.p2 {
    padding: 1rem;
}

.p3 {
    padding: 1.5rem;
}

.p4 {
    padding: 2rem;
}

.p5 {
    padding: 2.5rem;
}

.p6 {
    padding: 3rem;
}


.pl1 {
    padding-left: 0.5rem;
}

.pl2 {
    padding-left: 1rem;
}

.pl3 {
    padding-left: 1.5rem;
}

.pr1 {
    padding-right: 0.5rem;
}

.pr2 {
    padding-right: 1rem;
}

.pr3 {
    padding-right: 1.5rem;
}

.pl0 {
    padding-left: 0 !important;
}

.pr0 {
    padding-right: 0 !important;
}

.m1 {
    margin: 0.5rem;
}

.m2 {
    margin: 1rem;
}

.m3 {
    margin: 1.5rem;
}

.m4 {
    margin: 2rem;
}

.m5 {
    margin: 2.5rem;
}

.m6 {
    margin: 3rem;
}

.mt0 {
    margin-top: 0 !important;
}

.mt1 {
    margin-top: 0.8rem;
}

.mt2 {
    margin-top: 1.2rem;
}

.mt3 {
    margin-top: 1.6rem;
}

.mb1 {
    margin-bottom: 0.8rem;
}

.mb2 {
    margin-bottom: 1.2rem;
}

.mb3 {
    margin-bottom: 1.6rem;
}

.mb6 {
    margin-bottom: 3.6rem;
}

.mx1 {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}

.mx2 {
    margin-left: 1rem;
    margin-right: 1rem;
}

.mx3 {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
}

.ml1 {
    margin-left: 0.5rem;
}

.ml2 {
    margin-left: 1rem;
}

.ml3 {
    margin-left: 1.5rem;
}

.ml6 {
    margin-left: 6rem;
}

.mr1 {
    margin-right: 0.5rem;
}

.mr2 {
    margin-right: 1rem;
}

.mr3 {
    margin-right: 1.5rem;
}

.mr6 {
    margin-right: 6rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.mra {
    margin-right: auto;
}

.mla {
    margin-left: auto;
}

.mlr {
    margin: 0 1rem;
}

.my1 {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.my2 {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.my3 {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.nowrap {
    white-space: nowrap;
}


.border-bottom {
    border-bottom: 1px solid #e3e3e3;
}

.border-top {
    border-top: 1px solid #e3e3e3;
}

.border-left {
    border-left: 1px solid #e3e3e3;
}

.border-right {
    border-right: 1px solid #e3e3e3;
}

.border {
    border: 1px solid #e3e3e3;
}


/* Links */

a {
    -o-transition: color 0.3s ease, background-color 0.2s ease;
    -ms-transition: color 0.3s ease, background-color 0.2s ease;
    -moz-transition: color 0.3s ease, background-color 0.2s ease;
    -webkit-transition: color 0.3s ease, background-color 0.2s ease;
    transition: color 0.3s ease, background-color 0.2s ease;
    outline: 0;
}

a,
a:visited {
    outline: 0;
    text-decoration: none;
}

a:hover,
a:focus {
    outline: 0;
    text-decoration: none;
}


/* List */

ul {
    list-style: none outside;
}

ol {
    list-style: decimal;
}

ul ul,
ul ol,
ol ol,
ol ul {
    margin: 0.1em 0 0.1em 1em;
    font-size: 90%;
}


/* Input */

input[type="text"],
input[type="password"],
input[type="email"],
textarea,
select {
    border: 1px solid #e5e5e5;
    padding: 6px 10px;
    outline: none;
    font-size: 13px;
    color: #777;
    margin: 0;
    width: 100%;
    display: inline-block;
    background: #fff;
    line-height: 18px;
    max-width: 160px;
    -o-transition: border-color 0.3s ease;
    -ms-transition: border-color 0.3s ease;
    -moz-transition: border-color 0.3s ease;
    -webkit-transition: border-color 0.3s ease;
    transition: border-color 0.3s ease;
}

input[type="text"],
input[type="password"],
input[type="email"],
textarea {
    /*   -webkit-appearance: none; */
    border-radius: 0px;
}

select {
    padding: 0;
}

input[type="text"]::placeholder,
input[type="password"]::placeholder,
input[type="email"]::placeholder,
textarea::placeholder {
    color: #bfbfbf;
    font-size: 12px;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
textarea:focus {
    border: 1px solid #e3e3e3;
    color: #bfbfbf;
}

textarea {
    min-height: 60px;
}

label,
legend,
label span {
    font-size: 12px;
}

input[type="checkbox"] {
    display: inline;
}


/* Buttons */

a.btn,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
    background: #54afe9;
    color: white;
    display: inline-block;
    text-decoration: none;
    font-size: 12px;
    cursor: pointer;
    line-height: 32px;
    height: 32px;
    padding: 0px 8px;
    text-transform: uppercase;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

a.btn:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover {
    text-decoration: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

.languages .flag {
    float: left;
    background-image: url(flags.png);
    background-repeat: no-repeat;
    margin-right: 10px;
    overflow: hidden;
    text-indent: -9999px;
    width: 16px;
    height: 16px;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
}

.languages .flag.nl {
    background-position: -7px -2px;
}

.languages .flag.de {
    background-position: -7px -22px;
}

.languages .flag.en {
    background-position: -7px -42px;
}

.languages .flag.fr {
    background-position: -7px -62px;
}

.languages .flag.es {
    background-position: -7px -82px;
}

.languages .flag.it {
    background-position: -7px -102px;
}

.languages .flag.el {
    background-position: -7px -122px;
}

.languages .flag.tr {
    background-position: -7px -142px;
}

.languages .flag.pt {
    background-position: -7px -162px;
}

.languages .flag.pl {
    background-position: -7px -182px;
}

.languages .flag.sv {
    background-position: -7px -202px;
}

.languages .flag.ru {
    background-position: -7px -222px;
}

.languages .flag.da {
    background-position: -7px -242px;
}

.languages .flag.no {
    background-position: -7px -262px;
}

.languages .flag.fc {
    background-position: -7px -282px;
}

.languages .flag.us {
    background-position: -3px -302px;
}



/* GUI
================================================== */

.gui {
    margin-top: 30px;
}

.gui a.gui-button-large,
.gui a.gui-button-small,
.gui-block,
.gui-block.gui-closed .gui-block-title,
.gui-block-option,
.gui-block-option img.gui-border,
.gui-block-option-block,
.gui-block-title span,
.gui-image,
.gui-input,
.gui-text,
.gui-messages ul,
.messages ul,
.gui-number,
.gui-popover,
.gui-popover-bg,
.gui-popover-content,
.gui-popover-title a,
.gui-select,
.gui-table,
.gui-block-content .gui-mask,
.gui-block-content {
    -webkit-border-radius: 0px !important;
    -moz-border-radius: 0px !important;
    border-radius: 0px !important;
}

.gui .gui-progressbar {
    background-color: transparent;
}

.messages {
    margin-top: 30px;
    margin-bottom: 0px !important;
}

.gui-popover {
    position: fixed;
    left: 50%;
    top: 50%;
    width: 80%;
    max-width: 800px;
}


/* HIIDEN & VISIBLE IN BREAKPPOINTS */

.visible-small {
    display: none !important;
}

.visible-small_visibility {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    left: -9999px;
    top: -9999px;
}

.visible-tiny {
    display: none;
}

.visible-mid {
    display: none;
}

.visible-large {
    display: none;
}

@media (min-width:1500px) {
    .visible-large {
        display: block;
    }
}

@media (min-width:1000px) {
    .visible-mid {
        display: block;
    }
}

@media (max-width:900px) {
    .hidden-small {
        display: none !important;
    }
    .hidden-small_invisible {
        visibility: hidden;
        opacity: 0;
        position: absolute;
        left: -9999px;
        top: -9999px;
    }
    .visible-small_visibility {
        visibility: visible;
        opacity: 1;
        position: initial;
        left: initial;
        top: initial;
    }
    .visible-small {
        display: block !important;
    }
}

@media (max-width:700px) {
    .visible-tiny {
        display: block;
    }
    .hidden-tiny {
        display: none !important;
    }
}


/* HIIDEN & VISIBLE IN BREAKPPOINTS END */


/* NICE SELECT STYLES */

.nice-select {
    -webkit-tap-highlight-color: transparent;
    background-color: #fff;
    border-radius: 0;
    border: solid 1px #e8e8e8;
    box-sizing: border-box;
    clear: both;
    cursor: pointer;
    display: block;
    float: left;
    font-family: inherit;
    font-size: 14px;
    font-weight: normal;
    height: 33px;
    line-height: 35px;
    outline: none;
    padding-left: 18px;
    padding-right: 30px;
    position: relative;
    text-align: left !important;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap;
    width: auto;
}

.nice-select:hover {
    border-color: #dbdbdb;
}

.nice-select:active,
.nice-select.open,
.nice-select:focus {
    border-color: #999;
}

.nice-select:after {
    border-bottom: 2px solid #999;
    border-right: 2px solid #999;
    content: '';
    display: block;
    height: 5px;
    margin-top: -4px;
    pointer-events: none;
    position: absolute;
    right: 12px;
    top: 50%;
    -webkit-transform-origin: 66% 66%;
    -ms-transform-origin: 66% 66%;
    transform-origin: 66% 66%;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -o-transition: all 0.15s ease-in-out;
    -ms-transition: all 0.15s ease-in-out;
    -moz-transition: all 0.15s ease-in-out;
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    width: 5px;
}

.nice-select.open:after {
    -webkit-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

.nice-select.open .list {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: scale(1) translateY(0);
    -ms-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
}

.nice-select.disabled {
    border-color: #ededed;
    color: #999;
    pointer-events: none;
}

.nice-select.disabled:after {
    border-color: #cccccc;
}

.nice-select.wide {
    width: 100%;
}

.nice-select.wide .list {
    left: 0 !important;
    right: 0 !important;
}

.nice-select.right {
    float: right;
}

.nice-select.right .list {
    left: auto;
    right: 0;
}

.nice-select.small {
    font-size: 12px;
    height: 36px;
    line-height: 34px;
}

.nice-select.small:after {
    height: 4px;
    width: 4px;
}

.nice-select.small .option {
    line-height: 34px;
    min-height: 34px;
}

.nice-select .list {
    max-height: 350px;
    background-color: #fff;
    border-radius: 0;
    box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
    box-sizing: border-box;
    margin-top: 4px;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    pointer-events: none;
    position: absolute;
    top: 100%;
    left: 0;
    -webkit-transform-origin: 50% 0;
    -ms-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -webkit-transform: scale(0.75) translateY(-21px);
    -ms-transform: scale(0.75) translateY(-21px);
    transform: scale(0.75) translateY(-21px);
    -o-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    -ms-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    -moz-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    z-index: 9;
}

.nice-select .list:hover .option:not(:hover) {
    background-color: transparent !important;
}

.nice-select .option {
    cursor: pointer;
    font-weight: 400;
    line-height: 40px;
    list-style: none;
    min-height: 40px;
    outline: none;
    padding-left: 18px;
    padding-right: 29px;
    text-align: left;
    -o-transition: all 0.2s;
    -ms-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
    background-color: #f6f6f6;
}

.nice-select .option.selected {
    font-weight: bold;
}

.nice-select .option.disabled {
    background-color: transparent;
    color: #999;
    cursor: default;
}

.no-csspointerevents .nice-select .list {
    display: none;
}

.no-csspointerevents .nice-select.open .list {
    display: block;
}


/* NICE SELECT STYLES END */


/* CHECKBOXES and RADIOS */


/*checkbox*/

.content:not(.content-fixed_pages) .styled-checkbox {
    position: absolute;
    opacity: 0;
    z-index: 10;
}

.content:not(.content-fixed_pages) .styled-checkbox+label {
    position: relative;
    cursor: pointer;
    padding: 0;
    margin: 8px 0;
    white-space: nowrap;
}

.content:not(.content-fixed_pages) .styled-checkbox+label:before {
    content: '';
    margin-right: 10px;
    display: inline-block;
    vertical-align: middle;
    width: 13px;
    height: 13px;
    background: white;
    border: 1px solid #000;
}

.content:not(.content-fixed_pages) .styled-checkbox:hover+label:before {
    background: transparent;
}

.content:not(.content-fixed_pages) .styled-checkbox:focus+label:before {
    box-shadow: none;
}

.content:not(.content-fixed_pages) .styled-checkbox:checked+label:before {
    background: transparent;
}

.content:not(.content-fixed_pages) .styled-checkbox:disabled+label {
    color: #b8b8b8;
    cursor: auto;
}

.content:not(.content-fixed_pages) .styled-checkbox:disabled+label:before {
    box-shadow: none;
    background: #ddd;
}

.content:not(.content-fixed_pages) .styled-checkbox:checked+label:after {
    content: '\f00c';
    position: absolute;
    left: 0;
    top: 0;
    background: transparent;
    width: 16px;
    text-align: center;
    height: 13px;
    color: #000;
    font: normal normal normal 16px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 23px;
    font-size: 14px;
}


/*radio*/

.gui-payment-methods [type="radio"]:checked,
.gui-payment-methods [type="radio"]:not(:checked) {
    position: initial;
    left: initial;
    margin-top: 3px;
}

.content:not(.content-fixed_pages) [type="radio"]:checked,
.content:not(.content-fixed_pages) [type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

.content:not(.content-fixed_pages) [type="radio"]:checked+label,
.content:not(.content-fixed_pages) [type="radio"]:not(:checked)+label {
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 17px;
    display: inline-block;
    color: #c1c1c1;
}

.content:not(.content-fixed_pages) .styled-checkbox[type=radio] + label {
    display:inherit;
    position: relative;
    cursor: pointer;
    padding: 0;
    margin: 8px 0;
    white-space: nowrap;
}

.content:not(.content-fixed_pages) [type="radio"]:checked+label:before,
.content:not(.content-fixed_pages) [type="radio"]:not(:checked)+label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 15px;
    height: 15px;
    border: 1px solid #000;
    border-radius: 100%;
    background: #fff;
}
.content:not(.content-fixed_pages) .styled-checkbox[type=radio] + label:before {
	position:inherit;
}
.content:not(.content-fixed_pages) [type="radio"]:checked+label:after,
.content:not(.content-fixed_pages) [type="radio"]:not(:checked)+label:after {
    content: '';
    width: 9px;
    height: 9px;
    background: #000;
    position: absolute;
    top: 4px;
    left: 4px;
    border-radius: 100%;
    -o-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.content:not(.content-fixed_pages) [type="radio"]:checked+label:after, .content:not(.content-fixed_pages) [type="radio"]:not(:checked)+label:after {
	top:6px;
}

.content:not(.content-fixed_pages) [type="radio"]:not(:checked)+label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.content:not(.content-fixed_pages) [type="radio"]:checked+label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}


/* CHECKBOXES  END */


/* FLAGS */

.ui.selection.dropdown {
    font-size: 13px;
    position: relative;
    height: 30px;
    line-height: 30px;
    min-height: 0;
    padding: 0px 10px;
    border-radius: 0;
    border: 1px solid #e1e1e1;
    min-width: auto;
    padding-right: 55px;
    display: inline-block;
    vertical-align: middle;
    max-width: none;
}

.ui.selection.dropdown .text {
    height: 30px;
    overflow: hidden;
}

.ui.selection.dropdown:hover,
.ui.selection.dropdown.active:hover,
.ui.selection.dropdown.active,
.ui.selection.active.dropdown .menu,
.ui.selection.active.dropdown .menu:hover,
.ui.selection.active.dropdown:hover .menu,
.ui.selection.dropdown:focus {
    border: 1px solid #e1e1e1;
    box-shadow: none;
}

.ui.selection.dropdown>.search.icon,
.ui.selection.dropdown>.delete.icon,
.ui.selection.dropdown>.dropdown.icon {
    color: #ffa200;
    position: absolute;
    width: 30px;
    height: 30px;
    display: block;
    padding: 0;
    text-align: center;
    line-height: 31px;
    right: -1px;
    top: -1px;
    margin: 0;
    padding: 0;
    border: 1px solid #e1e1e1;
    background-color: #f3f3f3;
}

.ui.selection.dropdown .menu>.item.custom-language {
    font-size: 12px;
    padding: 0px!important;
}

.ui.selection.dropdown .menu>.item.custom-language a {
    display: block;
    width: 100%;
    padding: 10px;
}

.custom-language-bg>span {
    background-image: url(flags.png?);
    background-position: 0 -160px;
    background-repeat: no-repeat;
}

.custom-language-da>span {
    background-image: url(flags.png?);
    background-position: 0 -139px;
    background-repeat: no-repeat;
}

.custom-language-de>span {
    background-image: url(flags.png?);
    background-position: 0 -20px;
    background-repeat: no-repeat;
}

.custom-language-el>span {
    background-image: url(flags.png?);
    background-position: 0 -75px;
    background-repeat: no-repeat;
}

.custom-language-en>span {
    background-image: url(flags.png?);
    background-position: 0 -30px;
    background-repeat: no-repeat;
}

.custom-language-es>span {
    background-image: url(flags.png?);
    background-position: 0 -53px;
    background-repeat: no-repeat;
}

.custom-language-fr>span {
    background-image: url(flags.png?);
    background-position: 0 -40px;
    background-repeat: no-repeat;
}

.custom-language-fc>span {
    background-image: url(flags.png?);
    background-position: 0 -171px;
    background-repeat: no-repeat;
}

.custom-language-it>span {
    background-image: url(flags.png?);
    background-position: 0 -64px;
    background-repeat: no-repeat;
}

.custom-language-nl>span {
    background-image: url(flags.png?);
    background-position: 0 -10px;
    background-repeat: no-repeat;
}

.custom-language-no>span {
    background-image: url(flags.png?);
    background-position: 0 -150px;
    background-repeat: no-repeat;
}

.custom-language-pl>span {
    background-image: url(flags.png?);
    background-position: 0 -107px;
    background-repeat: no-repeat;
}

.custom-language-pt>span {
    background-image: url(flags.png?);
    background-position: 0 -96px;
    background-repeat: no-repeat;
}

.custom-language-ru>span {
    background-image: url(flags.png?);
    background-position: 0 -128px;
    background-repeat: no-repeat;
}

.custom-language-sv>span {
    background-image: url(flags.png?);
    background-position: 0 -118px;
    background-repeat: no-repeat;
}

.custom-language-tr>span {
    background-image: url(flags.png?);
    background-position: 0 -86px;
    background-repeat: no-repeat;
}

.custom-language-us>span {
    background-image: url(flags.png?);
    background-position: 0 -182px;
    background-repeat: no-repeat;
}

.custom-language-en-us>span {
    background-image: url(flags.png?);
    background-position: 0 -182px;
    background-repeat: no-repeat;
}

.custom-language>span {
    display: inline-block;
    height: 10px;
    width: 16px;
    background-size: 100% auto;
}

.ui.selection.dropdown {}

.ui.selection.dropdown .custom-language>span {
    margin-right: 7px;
}

.custom-language-nl>span {
    background-position: 0 -11px;
}

.custom-language-fr>span {
    background-position: 0 -43px;
}

.custom-language-de>span {
    background-position: 0 -22px;
}

.custom-language-en>span {
    background-position: 0px -32px;
}

.custom-dropdown {
    position: relative;
    padding: 5px;
    padding-right: 0;
    display: inline-block;
}

.custom-dropdown i {
    margin-left: 7px;
    font-size: 8px;
    margin-top: -3px;
    vertical-align: middle;
}

.custom-dropdown .custom-languages {
    position: absolute;
    left: initial;
    right: 0;
    top: 100%;
    background: #fff;
    color: #090802;
    z-index: 1200;
    padding: 15px;
    opacity: 0;
    visibility: hidden;
    -o-transition: -o-transform 0.25s, opacity 0.15s, bottom 0.20s;
    -ms-transition: -ms-transform 0.25s, opacity 0.15s, bottom 0.20s;
    -moz-transition: -moz-transform 0.25s, opacity 0.15s, bottom 0.20s;
    -webkit-transition: -webkit-transform 0.25s, opacity 0.15s, bottom 0.20s;
    transition: transform 0.25s, opacity 0.15s, bottom 0.20s;
    -webkit-transform: scale(0.5);
    -ms-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0;
    filter: alpha(opacity=0);
}

.custom-dropdown .custom-languages .menu a:hover {
    color: #000;
}

.custom-dropdown:hover .custom-languages {
    display: block;
    opacity: 1;
    visibility: visible;
    filter: alpha(opacity=100);
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    background: #fbfbfb;
}

.custom-dropdown .custom-languages .custom-title {
    font-size: 15px;
}

.custom-dropdown .custom-languages .options {
    white-space: nowrap;
    margin-right: 11px;
    margin-top: 10px;
}

.custom-dropdown .custom-languages .options .option {
    display: inline-block;
    vertical-align: bottom;
    margin-right: 5px;
}

.custom-dropdown .custom-languages .options .go {
    display: inline-block;
    vertical-align: bottom;
}

.custom-dropdown .custom-languages .options .go a.btn {
    background: #e9b61b;
    text-align: center;
    height: 30px;
    width: 40px;
    padding: 0;
    line-height: 27px;
    border-radius: 0;
}

.custom-dropdown .custom-languages .options .go a.btn i {
    font-size: 15px;
    margin: 0;
}

.custom-dropdown .custom-languages .options .option label {
    display: block;
    font-size: 13px;
}

.ui.selection.dropdown .menu {
    width: 100%;
    min-width: 100%;
    left: -1px;
    margin: 0;
}

.custom-dropdown .options label {
    text-align: left;
}

/* FLAGS END */