/*@function str-replace($string, $search, $replace: '') {
	$index: str-index($string, $search);

	@if $index {
		@return str-slice($string, 1, $index - 1) + $replace + str-replace(str-slice($string, $index + str-length($search)), $search, $replace);
	}

	@return $string;
}*/
/** RESET **/
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
button,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset,
img {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var,
optgroup {
  font-style: inherit;
  font-weight: inherit;
}

del,
ins {
  text-decoration: none;
}

li {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

q:before,
q:after {
  content: '';
}

abbr,
acronym {
  border: 0;
  font-variant: normal;
}

sup {
  vertical-align: baseline;
}

sub {
  vertical-align: baseline;
}

legend {
  color: #000000;
}

input,
button,
textarea,
select,
optgroup,
option {
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
}

input,
button,
textarea,
select {
  *font-size: 100%;
}

em,
i {
  font-style: italic;
}

li {
  margin-left: 20px;
}

ul > li {
  list-style-type: square;
}

ol > li {
  list-style-type: decimal;
}

strong, b {
  font-weight: 700;
}

header,
nav,
main,
section,
article,
aside,
footer {
  display: block;
}

.ContentRow,
.clearfix {
  zoom: 1;
}
.ContentRow:before, .ContentRow:after,
.clearfix:before,
.clearfix:after {
  content: '';
  display: table;
}
.ContentRow:after,
.clearfix:after {
  clear: both;
}

*, *:before, *:after {
  box-sizing: inherit;
}

*, *:before, *:after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
  background-color: #bfbfbf;
  padding: 30px;
}
@media screen and (max-width: 550px) {
  html {
    padding: 15px;
  }
}

body {
  font-family: Arial, sans-serif;
  background-color: #FFFFFF;
  color: #3D3D3D;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  max-width: 570px;
  margin: 0 auto;
}

section {
  margin: 0 20px;
  padding: 65px 65px;
  border-top: 5px solid #18A0E1;
}
@media screen and (max-width: 550px) {
  section {
    margin: 0;
    padding: 40px 20px;
  }
}
section:first-child {
  border-top: none;
}
section .Title {
  font-size: 35px;
  font-weight: 300;
}
section .Title strong {
  font-weight: 500;
}
section .Button {
  display: inline-block;
  background-color: #18A0E1;
  color: #FFFFFF;
  padding: 5px 9px;
  border: none;
  min-width: 70px;
  cursor: pointer;
  text-transform: uppercase;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
section a.Button {
  border-bottom: none;
  text-decoration: none;
}
section .Button:hover {
  background-color: #3D3D3D;
  color: #FFFFFF;
}
section .Button.Background--Dark {
  background-color: #3D3D3D;
  color: #FFFFFF;
}
section .Button.Background--Dark:hover {
  background-color: #18A0E1;
  color: #FFFFFF;
}
section .Button.Width--Full {
  width: 100%;
}
section .Button.Big {
  padding: 20px 40px;
}
section .Status {
  margin-top: 40px;
  color: #FFFFFF;
  padding: 20px;
}
section .Status a {
  color: inherit;
}
section .Status.Error {
  background-color: tomato;
}
section .Status.Success {
  background-color: #18A0E1;
}
section .Actions {
  margin-top: 40px;
}
section .Actions li {
  display: block;
  list-style-type: none;
}
section .Actions li a {
  display: block;
}
section .Actions li a.Button {
  padding: 30px 10px;
  text-decoration: none;
  text-align: center;
  font-size: 20px;
}
section .Actions li a.Backend {
  font-size: 10px;
  margin-top: 10px;
  color: #8a8a8a;
}
section .Actions:after {
  content: '';
  display: block;
  clear: both;
}
section .Actions.Column-20 {
  width: 18.39%;
}
section .Actions.Column-25 {
  width: 23.5%;
}
section .Actions.Column-33 {
  width: 32%;
}
section .Actions.Column-40 {
  width: 38.79%;
}
section .Actions.Column-50 {
  width: 49%;
}
section .Actions.Column-60 {
  width: 59.2%;
}
section .Actions.Column-67 {
  width: 66%;
}
section .Actions.Column-75 {
  width: 74.5%;
}
section .Actions.Column-80 {
  width: 79.59%;
}
section .Actions.Column-100 {
  width: 100%;
}
section .Actions > li {
  float: left;
  position: relative;
  min-height: 1px;
  margin-left: 2%;
  width: 100%;
}
@media screen and (max-width: 550px) {
  section .Actions > li {
    margin-top: 15px;
    margin-left: 0;
  }
}
section .Actions > li.Column-20 {
  width: 18.39%;
}
section .Actions > li.Column-25 {
  width: 23.5%;
}
section .Actions > li.Column-33 {
  width: 32%;
}
section .Actions > li.Column-40 {
  width: 38.79%;
}
section .Actions > li.Column-50 {
  width: 49%;
}
section .Actions > li.Column-60 {
  width: 59.2%;
}
section .Actions > li.Column-67 {
  width: 66%;
}
section .Actions > li.Column-75 {
  width: 74.5%;
}
section .Actions > li.Column-80 {
  width: 79.59%;
}
section .Actions > li:first-child {
  margin-left: 0;
}
@media screen and (max-width: 550px) {
  section .Actions > li.Column-20, section .Actions > li.Column-25, section .Actions > li.Column-33, section .Actions > li.Column-40, section .Actions > li.Column-50, section .Actions > li.Column-60, section .Actions > li.Column-67, section .Actions > li.Column-75, section .Actions > li.Column-80, section .Actions > li.Column-100 {
    width: 100%;
  }
}

/*# sourceMappingURL=main.css.map */
