﻿/* ==========================================================================
  BASE STYLES                                            
========================================================================== */
@import url("https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900|Noticia+Text:400,700&display=swap&subset=cyrillic,cyrillic-ext,greek,greek-ext,latin-ext,vietnamese");
/* Colors */
/* Branding */
/* Typography */
/* material variable*/
/*telerik customization variable*/
/* Clearfix Extend ==> how to use: .row { @extend %clearfix; } */
/* Mixin */
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

html,
body {
  margin: 0;
  min-height: 100%;
  padding: 0;
  min-width: 300px; }

html {
  font-size: 62.5%;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; }

body {
  background: #ffffff;
  color: #333333;
  font-family: "Segoe UI", "Roboto", Helvetica, Arial, sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6; }

a {
  color: #4285f4;
  text-decoration: none;
  cursor: pointer; }
  a:hover {
    color: #0CB29A; }
  a:focus {
    color: #0CB29A;
    outline: none;
    border: 1px solid #0CB29A; }
  a[disabled], a.disabled {
    background: #cccccc;
    border-color: #cccccc;
    color: #333333;
    cursor: not-allowed;
    pointer-events: visible;
    opacity: 0.5; }
    a[disabled]:hover, a[disabled]:focus, a.disabled:hover, a.disabled:focus {
      background: #cccccc;
      border-color: #cccccc;
      color: #333333;
      cursor: not-allowed; }

hr {
  background-color: #cccccc;
  border: none;
  color: #cccccc;
  height: 0; }

::-moz-selection {
  color: #ffffff;
  background: #0CB29A;
  text-shadow: none; }

::selection {
  color: #ffffff;
  background: #0CB29A;
  text-shadow: none; }

table tr td img {
  max-width: initial; }

/* Typography */
p {
  margin: 0 0 1.5rem; }

small {
  font-size: 80%; }

b,
strong {
  font-weight: bold; }

em {
  font-style: italic; }

kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1rem; }

code {
  background: #F1F1F1;
  border: 1px solid #E1E1E1;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  font-family: monospace, monospace;
  font-size: 90%;
  margin: 0 .2rem;
  padding: .2rem .5rem;
  white-space: nowrap; }

pre {
  overflow: auto; }
  pre > code {
    display: block;
    padding: 1rem 1.5rem;
    white-space: pre; }

sup,
sub {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 2rem;
  font-weight: 300; }
  h1 a,
  h2 a,
  h3 a,
  h4 a,
  h5 a,
  h6 a {
    color: inherit; }

h1 {
  font-size: 3rem;
  letter-spacing: -.1rem;
  line-height: 1.2; }
  @media only screen and (min-width: 768px) {
    h1 {
      font-size: 3.6rem; } }

h2 {
  font-size: 2.8rem;
  letter-spacing: -.1rem;
  line-height: 1.25; }
  @media only screen and (min-width: 768px) {
    h2 {
      font-size: 3.2rem; } }

h3 {
  font-size: 2.6rem;
  letter-spacing: -.1rem;
  line-height: 1.3; }
  @media only screen and (min-width: 768px) {
    h3 {
      font-size: 3rem; } }

h4 {
  font-size: 2.4rem;
  letter-spacing: -.08rem;
  line-height: 1.35; }
  @media only screen and (min-width: 768px) {
    h4 {
      font-size: 2.8rem; } }

h5 {
  font-size: 2rem;
  letter-spacing: -.05rem;
  line-height: 1.5; }
  @media only screen and (min-width: 768px) {
    h5 {
      font-size: 2.4rem; } }

h6 {
  font-size: 1.6rem;
  letter-spacing: 0;
  line-height: 1.6; }
  @media only screen and (min-width: 768px) {
    h6 {
      font-size: 2rem; } }

ol,
ul {
  margin-top: 0;
  padding-left: 1.5rem; }
  ol ul,
  ol ol,
  ul ul,
  ul ol {
    font-size: 90%;
    margin: 1.5rem 0; }
  ol.unstyled,
  ul.unstyled {
    list-style-type: none;
    margin: 0;
    padding: 0; }

li {
  margin-bottom: 1rem; }
  li:last-child {
    margin-bottom: 0; }

/* Other */
article,
aside,
details,
figcaption,
figure,
hgroup,
section,
summary {
  display: block; }

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline; }

audio:not([controls]) {
  display: none;
  height: 0; }

[hidden],
.hidden {
  display: none; }

abbr[title] {
  border-bottom: 1px dotted; }

dfn {
  font-style: italic; }

mark {
  background: #ff0;
  color: #000; }

img {
  border: 0; }

svg:not(:root) {
  overflow: hidden; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

th,
td {
  border-bottom: 1px solid #E1E1E1;
  padding: 1.2rem 1.5rem;
  text-align: left; }
  th:first-child,
  td:first-child {
    padding-left: 0; }
  th:last-child,
  td:last-child {
    padding-right: 0; }

/* ==========================================================================
  CUSTOM CLASSES                                            
========================================================================== */
.transparent {
  background: transparent; }

.thin {
  font-weight: 100; }

.light {
  font-weight: 300; }

.regular {
  font-weight: 400; }

.bold {
  font-weight: 700; }

.italic {
  font-style: italic; }

.uppercase {
  text-transform: uppercase; }

.lowercase {
  text-transform: lowercase; }

.capitalize {
  text-transform: capitalize; }

.full-width {
  width: 100%; }

.no-margin {
  margin: 0; }
  .no-margin-top {
    margin-top: 0; }
  .no-margin-right {
    margin-right: 0; }
  .no-margin-bottom {
    margin-bottom: 0; }
  .no-margin-left {
    margin-left: 0; }

.no-padding {
  padding: 0; }
  .no-padding-top {
    padding-top: 0; }
  .no-padding-right {
    padding-right: 0; }
  .no-padding-bottom {
    padding-bottom: 0; }
  .no-padding-left {
    padding-left: 0; }

.no-border {
  border: 0 none; }
  .no-border-top {
    border-top: 0 none; }
  .no-border-right {
    border-right: 0 none; }
  .no-border-bottom {
    border-bottom: 0 none; }
  .no-border-left {
    border-left: 0 none; }

.text-left {
  text-align: left; }

.text-center {
  text-align: center; }

.text-right {
  text-align: right; }

.text-justify {
  text-align: justify; }

.image-left {
  display: block;
  float: left;
  margin: 0 1.5rem 1.5rem 0; }

.image-center {
  display: block;
  float: none;
  margin: 0 auto; }

.image-right {
  display: block;
  float: right;
  margin: 0 0 1.5rem 1.5rem; }

/* ==========================================================================
  GRID
  ========================================================================== */
.container {
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  width: 100%; }
  @media only screen and (min-width: 480px) {
    .container {
      max-width: 48rem; } }
  @media only screen and (min-width: 768px) {
    .container {
      max-width: 72rem; } }
  @media only screen and (min-width: 1024px) {
    .container {
      max-width: 99.2rem; } }
  @media only screen and (min-width: 1200px) {
    .container {
      max-width: 117rem; } }

.row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -1.5rem;
  margin-left: -1.5rem; }
  .row + .row {
    margin-top: 1.5rem; }
    .row + .row.no-margin {
      margin: 0; }
      .row + .row.no-margin-top {
        margin-top: 0; }
      .row + .row.no-margin-right {
        margin-right: 0; }
      .row + .row.no-margin-bottom {
        margin-bottom: 0; }
      .row + .row.no-margin-left {
        margin-left: 0; }

.no-gutters {
  margin-right: 0;
  margin-left: 0; }
  .no-gutters > .col,
  .no-gutters > [class*="col-"] {
    padding-right: 0;
    padding-left: 0; }

div[class*="col-"] > *:last-child {
  margin-bottom: 0; }

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .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, .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, .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, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 {
  -ms-flex: 0 0 calc(100% - 3rem);
  flex: 0 0 calc(100% - 3rem);
  margin-left: 1.5rem;
  margin-right: 1.5rem;
  max-width: calc(100% - 3rem);
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  position: relative;
  width: 100%; }
  .col-1.no-padding, .col-2.no-padding, .col-3.no-padding, .col-4.no-padding, .col-5.no-padding, .col-6.no-padding, .col-7.no-padding, .col-8.no-padding, .col-9.no-padding, .col-10.no-padding, .col-11.no-padding, .col-12.no-padding, .col-sm-1.no-padding, .col-sm-2.no-padding, .col-sm-3.no-padding, .col-sm-4.no-padding, .col-sm-5.no-padding, .col-sm-6.no-padding, .col-sm-7.no-padding, .col-sm-8.no-padding, .col-sm-9.no-padding, .col-sm-10.no-padding, .col-sm-11.no-padding, .col-sm-12.no-padding, .col-md-1.no-padding, .col-md-2.no-padding, .col-md-3.no-padding, .col-md-4.no-padding, .col-md-5.no-padding, .col-md-6.no-padding, .col-md-7.no-padding, .col-md-8.no-padding, .col-md-9.no-padding, .col-md-10.no-padding, .col-md-11.no-padding, .col-md-12.no-padding, .col-lg-1.no-padding, .col-lg-2.no-padding, .col-lg-3.no-padding, .col-lg-4.no-padding, .col-lg-5.no-padding, .col-lg-6.no-padding, .col-lg-7.no-padding, .col-lg-8.no-padding, .col-lg-9.no-padding, .col-lg-10.no-padding, .col-lg-11.no-padding, .col-lg-12.no-padding, .col-xl-1.no-padding, .col-xl-2.no-padding, .col-xl-3.no-padding, .col-xl-4.no-padding, .col-xl-5.no-padding, .col-xl-6.no-padding, .col-xl-7.no-padding, .col-xl-8.no-padding, .col-xl-9.no-padding, .col-xl-10.no-padding, .col-xl-11.no-padding, .col-xl-12.no-padding {
    padding-left: 0;
    padding-right: 0; }
  .col-1.no-margin, .col-2.no-margin, .col-3.no-margin, .col-4.no-margin, .col-5.no-margin, .col-6.no-margin, .col-7.no-margin, .col-8.no-margin, .col-9.no-margin, .col-10.no-margin, .col-11.no-margin, .col-12.no-margin, .col-sm-1.no-margin, .col-sm-2.no-margin, .col-sm-3.no-margin, .col-sm-4.no-margin, .col-sm-5.no-margin, .col-sm-6.no-margin, .col-sm-7.no-margin, .col-sm-8.no-margin, .col-sm-9.no-margin, .col-sm-10.no-margin, .col-sm-11.no-margin, .col-sm-12.no-margin, .col-md-1.no-margin, .col-md-2.no-margin, .col-md-3.no-margin, .col-md-4.no-margin, .col-md-5.no-margin, .col-md-6.no-margin, .col-md-7.no-margin, .col-md-8.no-margin, .col-md-9.no-margin, .col-md-10.no-margin, .col-md-11.no-margin, .col-md-12.no-margin, .col-lg-1.no-margin, .col-lg-2.no-margin, .col-lg-3.no-margin, .col-lg-4.no-margin, .col-lg-5.no-margin, .col-lg-6.no-margin, .col-lg-7.no-margin, .col-lg-8.no-margin, .col-lg-9.no-margin, .col-lg-10.no-margin, .col-lg-11.no-margin, .col-lg-12.no-margin, .col-xl-1.no-margin, .col-xl-2.no-margin, .col-xl-3.no-margin, .col-xl-4.no-margin, .col-xl-5.no-margin, .col-xl-6.no-margin, .col-xl-7.no-margin, .col-xl-8.no-margin, .col-xl-9.no-margin, .col-xl-10.no-margin, .col-xl-11.no-margin, .col-xl-12.no-margin {
    margin: 0; }
    .col-1.no-margin-top, .col-2.no-margin-top, .col-3.no-margin-top, .col-4.no-margin-top, .col-5.no-margin-top, .col-6.no-margin-top, .col-7.no-margin-top, .col-8.no-margin-top, .col-9.no-margin-top, .col-10.no-margin-top, .col-11.no-margin-top, .col-12.no-margin-top, .col-sm-1.no-margin-top, .col-sm-2.no-margin-top, .col-sm-3.no-margin-top, .col-sm-4.no-margin-top, .col-sm-5.no-margin-top, .col-sm-6.no-margin-top, .col-sm-7.no-margin-top, .col-sm-8.no-margin-top, .col-sm-9.no-margin-top, .col-sm-10.no-margin-top, .col-sm-11.no-margin-top, .col-sm-12.no-margin-top, .col-md-1.no-margin-top, .col-md-2.no-margin-top, .col-md-3.no-margin-top, .col-md-4.no-margin-top, .col-md-5.no-margin-top, .col-md-6.no-margin-top, .col-md-7.no-margin-top, .col-md-8.no-margin-top, .col-md-9.no-margin-top, .col-md-10.no-margin-top, .col-md-11.no-margin-top, .col-md-12.no-margin-top, .col-lg-1.no-margin-top, .col-lg-2.no-margin-top, .col-lg-3.no-margin-top, .col-lg-4.no-margin-top, .col-lg-5.no-margin-top, .col-lg-6.no-margin-top, .col-lg-7.no-margin-top, .col-lg-8.no-margin-top, .col-lg-9.no-margin-top, .col-lg-10.no-margin-top, .col-lg-11.no-margin-top, .col-lg-12.no-margin-top, .col-xl-1.no-margin-top, .col-xl-2.no-margin-top, .col-xl-3.no-margin-top, .col-xl-4.no-margin-top, .col-xl-5.no-margin-top, .col-xl-6.no-margin-top, .col-xl-7.no-margin-top, .col-xl-8.no-margin-top, .col-xl-9.no-margin-top, .col-xl-10.no-margin-top, .col-xl-11.no-margin-top, .col-xl-12.no-margin-top {
      margin-top: 0; }
    .col-1.no-margin-right, .col-2.no-margin-right, .col-3.no-margin-right, .col-4.no-margin-right, .col-5.no-margin-right, .col-6.no-margin-right, .col-7.no-margin-right, .col-8.no-margin-right, .col-9.no-margin-right, .col-10.no-margin-right, .col-11.no-margin-right, .col-12.no-margin-right, .col-sm-1.no-margin-right, .col-sm-2.no-margin-right, .col-sm-3.no-margin-right, .col-sm-4.no-margin-right, .col-sm-5.no-margin-right, .col-sm-6.no-margin-right, .col-sm-7.no-margin-right, .col-sm-8.no-margin-right, .col-sm-9.no-margin-right, .col-sm-10.no-margin-right, .col-sm-11.no-margin-right, .col-sm-12.no-margin-right, .col-md-1.no-margin-right, .col-md-2.no-margin-right, .col-md-3.no-margin-right, .col-md-4.no-margin-right, .col-md-5.no-margin-right, .col-md-6.no-margin-right, .col-md-7.no-margin-right, .col-md-8.no-margin-right, .col-md-9.no-margin-right, .col-md-10.no-margin-right, .col-md-11.no-margin-right, .col-md-12.no-margin-right, .col-lg-1.no-margin-right, .col-lg-2.no-margin-right, .col-lg-3.no-margin-right, .col-lg-4.no-margin-right, .col-lg-5.no-margin-right, .col-lg-6.no-margin-right, .col-lg-7.no-margin-right, .col-lg-8.no-margin-right, .col-lg-9.no-margin-right, .col-lg-10.no-margin-right, .col-lg-11.no-margin-right, .col-lg-12.no-margin-right, .col-xl-1.no-margin-right, .col-xl-2.no-margin-right, .col-xl-3.no-margin-right, .col-xl-4.no-margin-right, .col-xl-5.no-margin-right, .col-xl-6.no-margin-right, .col-xl-7.no-margin-right, .col-xl-8.no-margin-right, .col-xl-9.no-margin-right, .col-xl-10.no-margin-right, .col-xl-11.no-margin-right, .col-xl-12.no-margin-right {
      margin-right: 0; }
    .col-1.no-margin-bottom, .col-2.no-margin-bottom, .col-3.no-margin-bottom, .col-4.no-margin-bottom, .col-5.no-margin-bottom, .col-6.no-margin-bottom, .col-7.no-margin-bottom, .col-8.no-margin-bottom, .col-9.no-margin-bottom, .col-10.no-margin-bottom, .col-11.no-margin-bottom, .col-12.no-margin-bottom, .col-sm-1.no-margin-bottom, .col-sm-2.no-margin-bottom, .col-sm-3.no-margin-bottom, .col-sm-4.no-margin-bottom, .col-sm-5.no-margin-bottom, .col-sm-6.no-margin-bottom, .col-sm-7.no-margin-bottom, .col-sm-8.no-margin-bottom, .col-sm-9.no-margin-bottom, .col-sm-10.no-margin-bottom, .col-sm-11.no-margin-bottom, .col-sm-12.no-margin-bottom, .col-md-1.no-margin-bottom, .col-md-2.no-margin-bottom, .col-md-3.no-margin-bottom, .col-md-4.no-margin-bottom, .col-md-5.no-margin-bottom, .col-md-6.no-margin-bottom, .col-md-7.no-margin-bottom, .col-md-8.no-margin-bottom, .col-md-9.no-margin-bottom, .col-md-10.no-margin-bottom, .col-md-11.no-margin-bottom, .col-md-12.no-margin-bottom, .col-lg-1.no-margin-bottom, .col-lg-2.no-margin-bottom, .col-lg-3.no-margin-bottom, .col-lg-4.no-margin-bottom, .col-lg-5.no-margin-bottom, .col-lg-6.no-margin-bottom, .col-lg-7.no-margin-bottom, .col-lg-8.no-margin-bottom, .col-lg-9.no-margin-bottom, .col-lg-10.no-margin-bottom, .col-lg-11.no-margin-bottom, .col-lg-12.no-margin-bottom, .col-xl-1.no-margin-bottom, .col-xl-2.no-margin-bottom, .col-xl-3.no-margin-bottom, .col-xl-4.no-margin-bottom, .col-xl-5.no-margin-bottom, .col-xl-6.no-margin-bottom, .col-xl-7.no-margin-bottom, .col-xl-8.no-margin-bottom, .col-xl-9.no-margin-bottom, .col-xl-10.no-margin-bottom, .col-xl-11.no-margin-bottom, .col-xl-12.no-margin-bottom {
      margin-bottom: 0; }
    .col-1.no-margin-left, .col-2.no-margin-left, .col-3.no-margin-left, .col-4.no-margin-left, .col-5.no-margin-left, .col-6.no-margin-left, .col-7.no-margin-left, .col-8.no-margin-left, .col-9.no-margin-left, .col-10.no-margin-left, .col-11.no-margin-left, .col-12.no-margin-left, .col-sm-1.no-margin-left, .col-sm-2.no-margin-left, .col-sm-3.no-margin-left, .col-sm-4.no-margin-left, .col-sm-5.no-margin-left, .col-sm-6.no-margin-left, .col-sm-7.no-margin-left, .col-sm-8.no-margin-left, .col-sm-9.no-margin-left, .col-sm-10.no-margin-left, .col-sm-11.no-margin-left, .col-sm-12.no-margin-left, .col-md-1.no-margin-left, .col-md-2.no-margin-left, .col-md-3.no-margin-left, .col-md-4.no-margin-left, .col-md-5.no-margin-left, .col-md-6.no-margin-left, .col-md-7.no-margin-left, .col-md-8.no-margin-left, .col-md-9.no-margin-left, .col-md-10.no-margin-left, .col-md-11.no-margin-left, .col-md-12.no-margin-left, .col-lg-1.no-margin-left, .col-lg-2.no-margin-left, .col-lg-3.no-margin-left, .col-lg-4.no-margin-left, .col-lg-5.no-margin-left, .col-lg-6.no-margin-left, .col-lg-7.no-margin-left, .col-lg-8.no-margin-left, .col-lg-9.no-margin-left, .col-lg-10.no-margin-left, .col-lg-11.no-margin-left, .col-lg-12.no-margin-left, .col-xl-1.no-margin-left, .col-xl-2.no-margin-left, .col-xl-3.no-margin-left, .col-xl-4.no-margin-left, .col-xl-5.no-margin-left, .col-xl-6.no-margin-left, .col-xl-7.no-margin-left, .col-xl-8.no-margin-left, .col-xl-9.no-margin-left, .col-xl-10.no-margin-left, .col-xl-11.no-margin-left, .col-xl-12.no-margin-left {
      margin-left: 0; }

@media only screen and (max-width: 1023px) {
  div[class*="col-"] + div[class*="col-"] {
    margin-top: 1.5rem; }
    div[class*="col-"] + div[class*="col-"].no-margin {
      margin: 0; }
      div[class*="col-"] + div[class*="col-"].no-margin-top {
        margin-top: 0; }
      div[class*="col-"] + div[class*="col-"].no-margin-right {
        margin-right: 0; }
      div[class*="col-"] + div[class*="col-"].no-margin-bottom {
        margin-bottom: 0; }
      div[class*="col-"] + div[class*="col-"].no-margin-left {
        margin-left: 0; } }

@media only screen and (min-width: 480px) {
  .col-sm-1 {
    -ms-flex: 0 0 calc(8.333333% - 3rem);
    flex: 0 0 calc(8.333333% - 3rem);
    max-width: calc(8.333333% - 3rem); }
  .col-sm-2 {
    -ms-flex: 0 0 calc(16.666667% - 3rem);
    flex: 0 0 calc(16.666667% - 3rem);
    max-width: calc(16.666667% - 3rem); }
  .col-sm-3 {
    -ms-flex: 0 0 calc(25% - 3rem);
    flex: 0 0 calc(25% - 3rem);
    max-width: calc(25% - 3rem); }
  .col-sm-4 {
    -ms-flex: 0 0 calc(33.333333% - 3rem);
    flex: 0 0 calc(33.333333% - 3rem);
    max-width: calc(33.333333% - 3rem); }
  .col-sm-5 {
    -ms-flex: 0 0 calc(41.666667% - 3rem);
    flex: 0 0 calc(41.666667% - 3rem);
    max-width: calc(41.666667% - 3rem); }
  .col-sm-6 {
    -ms-flex: 0 0 calc(50% - 3rem);
    flex: 0 0 calc(50% - 3rem);
    max-width: calc(50% - 3rem); }
  .col-sm-7 {
    -ms-flex: 0 0 calc(58.333333% - 3rem);
    flex: 0 0 calc(58.333333% - 3rem);
    max-width: calc(58.333333% - 3rem); }
  .col-sm-8 {
    -ms-flex: 0 0 calc(66.666667% - 3rem);
    flex: 0 0 calc(66.666667% - 3rem);
    max-width: calc(66.666667% - 3rem); }
  .col-sm-9 {
    -ms-flex: 0 0 calc(75% - 3rem);
    flex: 0 0 calc(75% - 3rem);
    max-width: calc(75% - 3rem); }
  .col-sm-10 {
    -ms-flex: 0 0 calc(83.333333% - 3rem);
    flex: 0 0 calc(83.333333% - 3rem);
    max-width: calc(83.333333% - 3rem); }
  .col-sm-11 {
    -ms-flex: 0 0 calc(91.666667% - 3rem);
    flex: 0 0 calc(91.666667% - 3rem);
    max-width: calc(91.666667% - 3rem); }
  .col-sm-12 {
    -ms-flex: 0 0 calc(100% - 3rem);
    flex: 0 0 calc(100% - 3rem);
    max-width: calc(100% - 3rem); } }

@media only screen and (min-width: 768px) {
  .col-md-1 {
    -ms-flex: 0 0 calc(8.333333% - 3rem);
    flex: 0 0 calc(8.333333% - 3rem);
    max-width: calc(8.333333% - 3rem); }
  .col-md-2 {
    -ms-flex: 0 0 calc(16.666667% - 3rem);
    flex: 0 0 calc(16.666667% - 3rem);
    max-width: calc(16.666667% - 3rem); }
  .col-md-3 {
    -ms-flex: 0 0 calc(25% - 3rem);
    flex: 0 0 calc(25% - 3rem);
    max-width: calc(25% - 3rem); }
  .col-md-4 {
    -ms-flex: 0 0 calc(33.333333% - 3rem);
    flex: 0 0 calc(33.333333% - 3rem);
    max-width: calc(33.333333% - 3rem); }
  .col-md-5 {
    -ms-flex: 0 0 calc(41.666667% - 3rem);
    flex: 0 0 calc(41.666667% - 3rem);
    max-width: calc(41.666667% - 3rem); }
  .col-md-6 {
    -ms-flex: 0 0 calc(50% - 3rem);
    flex: 0 0 calc(50% - 3rem);
    max-width: calc(50% - 3rem); }
  .col-md-7 {
    -ms-flex: 0 0 calc(58.333333% - 3rem);
    flex: 0 0 calc(58.333333% - 3rem);
    max-width: calc(58.333333% - 3rem); }
  .col-md-8 {
    -ms-flex: 0 0 calc(66.666667% - 3rem);
    flex: 0 0 calc(66.666667% - 3rem);
    max-width: calc(66.666667% - 3rem); }
  .col-md-9 {
    -ms-flex: 0 0 calc(75% - 3rem);
    flex: 0 0 calc(75% - 3rem);
    max-width: calc(75% - 3rem); }
  .col-md-10 {
    -ms-flex: 0 0 calc(83.333333% - 3rem);
    flex: 0 0 calc(83.333333% - 3rem);
    max-width: calc(83.333333% - 3rem); }
  .col-md-11 {
    -ms-flex: 0 0 calc(91.666667% - 3rem);
    flex: 0 0 calc(91.666667% - 3rem);
    max-width: calc(91.666667% - 3rem); }
  .col-md-12 {
    -ms-flex: 0 0 calc(100% - 3rem);
    flex: 0 0 calc(100% - 3rem);
    max-width: calc(100% - 3rem); } }

@media only screen and (min-width: 1024px) {
  .col-lg-1 {
    -ms-flex: 0 0 calc(8.333333% - 3rem);
    flex: 0 0 calc(8.333333% - 3rem);
    max-width: calc(8.333333% - 3rem); }
  .col-lg-2 {
    -ms-flex: 0 0 calc(16.666667% - 3rem);
    flex: 0 0 calc(16.666667% - 3rem);
    max-width: calc(16.666667% - 3rem); }
  .col-lg-3 {
    -ms-flex: 0 0 calc(25% - 3rem);
    flex: 0 0 calc(25% - 3rem);
    max-width: calc(25% - 3rem); }
  .col-lg-4 {
    -ms-flex: 0 0 calc(33.333333% - 3rem);
    flex: 0 0 calc(33.333333% - 3rem);
    max-width: calc(33.333333% - 3rem); }
  .col-lg-5 {
    -ms-flex: 0 0 calc(41.666667% - 3rem);
    flex: 0 0 calc(41.666667% - 3rem);
    max-width: calc(41.666667% - 3rem); }
  .col-lg-6 {
    -ms-flex: 0 0 calc(50% - 3rem);
    flex: 0 0 calc(50% - 3rem);
    max-width: calc(50% - 3rem); }
  .col-lg-7 {
    -ms-flex: 0 0 calc(58.333333% - 3rem);
    flex: 0 0 calc(58.333333% - 3rem);
    max-width: calc(58.333333% - 3rem); }
  .col-lg-8 {
    -ms-flex: 0 0 calc(66.666667% - 3rem);
    flex: 0 0 calc(66.666667% - 3rem);
    max-width: calc(66.666667% - 3rem); }
  .col-lg-9 {
    -ms-flex: 0 0 calc(75% - 3rem);
    flex: 0 0 calc(75% - 3rem);
    max-width: calc(75% - 3rem); }
  .col-lg-10 {
    -ms-flex: 0 0 calc(83.333333% - 3rem);
    flex: 0 0 calc(83.333333% - 3rem);
    max-width: calc(83.333333% - 3rem); }
  .col-lg-11 {
    -ms-flex: 0 0 calc(91.666667% - 3rem);
    flex: 0 0 calc(91.666667% - 3rem);
    max-width: calc(91.666667% - 3rem); }
  .col-lg-12 {
    -ms-flex: 0 0 calc(100% - 3rem);
    flex: 0 0 calc(100% - 3rem);
    max-width: calc(100% - 3rem); } }

@media only screen and (min-width: 1200px) {
  .col-xl-1 {
    -ms-flex: 0 0 calc(8.333333% - 3rem);
    flex: 0 0 calc(8.333333% - 3rem);
    max-width: calc(8.333333% - 3rem); }
  .col-xl-2 {
    -ms-flex: 0 0 calc(16.666667% - 3rem);
    flex: 0 0 calc(16.666667% - 3rem);
    max-width: calc(16.666667% - 3rem); }
  .col-xl-3 {
    -ms-flex: 0 0 calc(25% - 3rem);
    flex: 0 0 calc(25% - 3rem);
    max-width: calc(25% - 3rem); }
  .col-xl-4 {
    -ms-flex: 0 0 calc(33.333333% - 3rem);
    flex: 0 0 calc(33.333333% - 3rem);
    max-width: calc(33.333333% - 3rem); }
  .col-xl-5 {
    -ms-flex: 0 0 calc(41.666667% - 3rem);
    flex: 0 0 calc(41.666667% - 3rem);
    max-width: calc(41.666667% - 3rem); }
  .col-xl-6 {
    -ms-flex: 0 0 calc(50% - 3rem);
    flex: 0 0 calc(50% - 3rem);
    max-width: calc(50% - 3rem); }
  .col-xl-7 {
    -ms-flex: 0 0 calc(58.333333% - 3rem);
    flex: 0 0 calc(58.333333% - 3rem);
    max-width: calc(58.333333% - 3rem); }
  .col-xl-8 {
    -ms-flex: 0 0 calc(66.666667% - 3rem);
    flex: 0 0 calc(66.666667% - 3rem);
    max-width: calc(66.666667% - 3rem); }
  .col-xl-9 {
    -ms-flex: 0 0 calc(75% - 3rem);
    flex: 0 0 calc(75% - 3rem);
    max-width: calc(75% - 3rem); }
  .col-xl-10 {
    -ms-flex: 0 0 calc(83.333333% - 3rem);
    flex: 0 0 calc(83.333333% - 3rem);
    max-width: calc(83.333333% - 3rem); }
  .col-xl-11 {
    -ms-flex: 0 0 calc(91.666667% - 3rem);
    flex: 0 0 calc(91.666667% - 3rem);
    max-width: calc(91.666667% - 3rem); }
  .col-xl-12 {
    -ms-flex: 0 0 calc(100% - 3rem);
    flex: 0 0 calc(100% - 3rem);
    max-width: calc(100% - 3rem); } }

/* ==========================================================================
  GLOBAL COMPONENTS
========================================================================== */
/* Form */
form .form-group {
  align-items: center;
  display: flex; }
  form .form-group + .form-group {
    margin-top: 1.5rem; }
  form .form-group > label {
    font-size: 1.4rem;
    font-weight: normal;
    min-width: 12rem; }
  form .form-group.textarea {
    align-items: flex-start; }

form .input-group {
  position: relative;
  width: 100%; }
  form .input-group.checkbox {
    display: inline-block;
    width: auto; }

/* Inputs */
input[type="text"], input[type="password"], input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"], input[type="color"], input[type="file"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #ffffff;
  border: 1px solid #cccccc;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  color: #333333;
  display: block;
  font-family: "Segoe UI", "Roboto", Helvetica, Arial, sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  margin: 0;
  min-height: 3rem;
  padding: 0.5rem 1rem;
  width: 100%; }
  input[type="text"]:focus, input[type="password"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="date"]:focus, input[type="month"]:focus, input[type="time"]:focus, input[type="week"]:focus, input[type="number"]:focus, input[type="email"]:focus, input[type="url"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="color"]:focus, input[type="file"]:focus {
    border: 1px solid #33C3F0; }

input[type="checkbox"] {
  cursor: pointer;
  display: inline-block;
  left: -999.9rem;
  margin: 3px 3px 3px 4px;
  padding: initial; }
  input[type="checkbox"] ~ label.k-checkbox-label {
    cursor: pointer;
    display: block;
    font-weight: 400;
    line-height: 1.8rem;
    margin: 0 0 0.7rem;
    position: relative !important;
    transform: none !important;
    padding: 0 0 0 3rem;
    width: 100%; }
    input[type="checkbox"] ~ label.k-checkbox-label:before {
      background: #ffffff !important;
      border: 0.2rem solid #032E58 !important;
      -webkit-border-radius: 0.4rem;
      -moz-border-radius: 0.4rem;
      border-radius: 0.4rem;
      color: #032E58 !important;
      content: "" !important;
      display: block;
      height: 2rem;
      left: 0;
      position: absolute;
      -webkit-transition: all 0.3s;
      -moz-transition: all 0.3s;
      -ms-transition: all 0.3s;
      -o-transition: all 0.3s;
      transition: all 0.3s;
      -webkit-transform: translate(0, -50%);
      -moz-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
      -o-transform: translate(0, -50%);
      transform: translate(0, -50%);
      top: 50%;
      width: 2rem; }
    input[type="checkbox"] ~ label.k-checkbox-label:after {
      background: #ffffff !important;
      border: solid #032E58 !important;
      border-width: 0 0.3rem 0.3rem 0 !important;
      -webkit-box-sizing: unset;
      -moz-box-sizing: unset;
      box-sizing: unset;
      color: #032E58 !important;
      content: "" !important;
      display: block;
      height: 0.7rem;
      left: 0.2rem;
      opacity: 0;
      position: absolute;
      top: 46%;
      -webkit-transition: all 0.3s;
      -moz-transition: all 0.3s;
      -ms-transition: all 0.3s;
      -o-transition: all 0.3s;
      transition: all 0.3s;
      -webkit-transform: rotate(45deg) translate(0, -70%) !important;
      -moz-transform: rotate(45deg) translate(0, -70%) !important;
      -ms-transform: rotate(45deg) translate(0, -70%) !important;
      -o-transform: rotate(45deg) translate(0, -70%) !important;
      transform: rotate(45deg) translate(0, -70%) !important;
      visibility: hidden;
      width: 0.4rem; }
  input[type="checkbox"]:checked ~ label.k-checkbox-label:after {
    opacity: 1;
    visibility: visible; }
  input[type="checkbox"].k-invalid ~ label.k-checkbox-label:before {
    border: 0.2rem solid #D64246 !important;
    color: #D64246 !important; }
  input[type="checkbox"].k-invalid ~ label.k-checkbox-label:after {
    border: solid #D64246 !important;
    border-width: 0 0.3rem 0.3rem 0 !important;
    color: #D64246 !important; }

input[type="radio"] {
  cursor: pointer;
  display: inline-block;
  left: -999.9rem;
  padding: 0;
  position: absolute; }
  input[type="radio"] + label {
    cursor: pointer;
    display: block;
    font-weight: 400;
    line-height: 1.8rem;
    margin: 0 0 0.7rem;
    position: relative;
    padding: 0 0 0 3rem;
    width: 100%; }
    input[type="radio"] + label:before {
      background: #ffffff;
      border: 0.1rem solid #032E58;
      -webkit-border-radius: 50%;
      -moz-border-radius: 50%;
      border-radius: 50%;
      content: "";
      display: block;
      height: 2rem;
      left: 0;
      position: absolute;
      -webkit-transition: all 0.3s;
      -moz-transition: all 0.3s;
      -ms-transition: all 0.3s;
      -o-transition: all 0.3s;
      transition: all 0.3s;
      -webkit-transform: translate(0, -50%);
      -moz-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
      -o-transform: translate(0, -50%);
      transform: translate(0, -50%);
      top: 50%;
      width: 2rem; }
    input[type="radio"] + label:after {
      background: #ffffff;
      -webkit-border-radius: 50%;
      -moz-border-radius: 50%;
      border-radius: 50%;
      content: "";
      display: block;
      height: 0.8rem;
      left: 0.5rem;
      position: absolute;
      top: 50%;
      -webkit-transition: all 0.3s;
      -moz-transition: all 0.3s;
      -ms-transition: all 0.3s;
      -o-transition: all 0.3s;
      transition: all 0.3s;
      -webkit-transform: translate(0, -50%);
      -moz-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
      -o-transform: translate(0, -50%);
      transform: translate(0, -50%);
      width: 0.8rem; }
  input[type="radio"]:checked + label:after {
    background: #032E58; }

input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button {
  height: auto; }

input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

textarea,
select {
  background: #ffffff;
  border: 1px solid #cccccc;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  color: #333333;
  display: block;
  font-family: "Segoe UI", "Roboto", Helvetica, Arial, sans-serif;
  font-size: 1.6rem !important;
  line-height: 1.6;
  margin: 0;
  min-height: 3rem;
  padding: 0.5rem 1rem;
  width: 100%; }
  textarea:focus,
  select:focus {
    border: 1px solid #33C3F0; }

textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  min-height: 6.5rem;
  overflow: auto;
  resize: vertical; }

label {
  display: block; }

legend {
  border: 0;
  display: block;
  font-weight: 600;
  margin-bottom: .5rem;
  padding: 0; }

optgroup {
  font-weight: bold; }

fieldset {
  border: 0 none;
  margin: 0;
  padding: 0; }

/* Buttons */
button,
.btn,
input[type="submit"],
input[type="reset"],
input[type="button"] {
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  background: transparent;
  border: 1px solid #cccccc;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  color: #333333;
  cursor: pointer;
  display: inline-block;
  font-family: "Segoe UI", "Roboto", Helvetica, Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 0.075rem;
  min-height: 3rem;
  line-height: 1.6;
  padding: 0 2rem;
  text-align: center;
  text-decoration: none;
  white-space: nowrap; }
  button:hover, button:focus,
  .btn:hover,
  .btn:focus,
  input[type="submit"]:hover,
  input[type="submit"]:focus,
  input[type="reset"]:hover,
  input[type="reset"]:focus,
  input[type="button"]:hover,
  input[type="button"]:focus {
    color: #ffffff; }
  button[disabled], button.disabled,
  .btn[disabled],
  .btn.disabled,
  input[type="submit"][disabled],
  input[type="submit"].disabled,
  input[type="reset"][disabled],
  input[type="reset"].disabled,
  input[type="button"][disabled],
  input[type="button"].disabled {
    background: #cccccc;
    cursor: not-allowed;
    opacity: 0.5; }

.btn-primary {
  background: #0CB29A;
  border: 1px solid #0CB29A;
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: bold;
  min-height: 2.7rem; }
  .btn-primary:focus {
    color: #ffffff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(12, 178, 154, 0.4); }
  .btn-primary:hover {
    background: #098271;
    border: 1px solid #098271;
    color: #ffffff; }
  .btn-primary[disabled], .btn-primary.disabled {
    background: #cccccc;
    border-color: #cccccc;
    color: #333333;
    cursor: not-allowed;
    pointer-events: visible;
    opacity: 0.5; }
    .btn-primary[disabled]:hover, .btn-primary[disabled]:focus, .btn-primary.disabled:hover, .btn-primary.disabled:focus {
      background: #cccccc;
      border-color: #cccccc;
      color: #333333;
      cursor: not-allowed; }

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

.ManageAccountSmallText {
  float: left;
  padding-right: 15px;
  padding-top: 5px; }

/* Loader */
.k-i-loading {
  background-image: url(../../../img/custom/loading-image.svg); }

.k-loading-image {
  background-image: url(../../../img/custom/loading-image.svg); }

.k-loading-color {
  background-color: #a9a9a9; }
