﻿*, *::after, *::before {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

svg {
  max-width: 100%;
}

a {
  text-decoration: none;
}

body {
  font-size: 1.6rem;
  font-family: "Open Sans", sans-serif;
  margin: 0;
}

div.error-section {
    text-align: center;
}

img.error-img {
    display:block;
    margin: 0 auto;
}

span.error-message {
    font-size: 28px;
    font-weight: 100;
    border: 1px solid black;
    padding: 10px 20px;
    border-radius: 10px;
    text-align: center;
}

.row.is-flex {
    display: flex;
    flex-wrap: wrap;
}
.row.is-flex > [class*='col-'] {
    display: flex;
    flex-direction: column;
}

/*
* And with max cross-browser enabled.
* Nobody should ever write this by hand. 
* Use a preprocesser with autoprefixing.
*/
.row.is-flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.row.is-flex > [class*='col-'] {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.k-checkbox{
    margin-left:5px;
}

.badge{
    background-color: deepskyblue !important;
}