:root {
  --bg-clr: #eaeaea;
  --grey-clr: #aaa;
  --blue-main: #1447c0;
  --blue-main-ligh: #2457d0;
  --blue-light: #428bea;
  --logo-clr: #358ac2;
  --red-clr: #f55;
  --green-clr: #228b22;
}

@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300;
  src: url(../fonts/roboto.woff) format('woff');
}

* {
box-sizing: border-box;
 }
body {
  background-color: var(--bg-clr);
  color: var(--txt-clr);
  font-family: 'Roboto';
  margin: 0;
  padding: 0;
}
.main-col {
	box-sizing: border-box;
	margin: 0 auto;
	padding: 10px;
	max-width: 440px;
  	margin: auto;
}
.blue {
  color: var(--blue-main);
}
.green {
	color: var(--green-clr);
}
.red {
	color: var(--red-clr);
}
.inactive {
	background: var(--grey-clr) !important;
}
.big {
	font-size: 110%;
}
.err {
  border: 1px solid var(--red-clr) !important;
  color: var(--red-clr) !important;
}
.right {
  display:flex;
  justify-content:flex-end;
  align-items:center; 
}
.frm {
  padding: 40px;
  width: 100%;
  min-width: 250px;
  position: relative;	
}
.frm-wrapper {
	background: #fff;
	margin: 40px auto;
	border-radius: 3px;
	-webkit-box-shadow: 0 0 200px rgba(255, 255, 255, 0.5), 0 1px 2px rgba(0, 0, 0, 0.3);
	box-shadow: 0 0 200px rgba(255, 255, 255, 0.5), 0 1px 2px rgba(0, 0, 0, 0.3);
}
.frm-wrapper .title {
	line-height: 40px;
	font-weight: bold;
	color: #777;
	text-align: center;
	text-shadow: 0 1px 	white;
	background: #f3f3f3;
	border-bottom: 1px solid #cfcfcf;
	border-radius: 3px 3px 0 0;
	background-image: -webkit-linear-gradient(top, whiteffd, #eef2f5);
	background-image: -moz-linear-gradient(top, whiteffd, #eef2f5);
	background-image: -o-linear-gradient(top, whiteffd, #eef2f5);
	background-image: linear-gradient(to bottom, whiteffd, #eef2f5);
	-webkit-box-shadow: 0 1px whitesmoke;
	box-shadow: 0 1px whitesmoke;
}
.btn {
  background: var(--blue-main);
  color: #fff;
  padding: 10px 20px;
  cursor: pointer;
  border: 0;
  border-radius: 4px;
  box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, .2);
  transition: all 0.5s ease;
  overflow: hidden;
}
.btn:hover {
    background: var(--blue-main-ligh);
	box-shadow: 0 5px 5px 0 rgba(0,0,0,0.2);
}
.btn-iconed {
  font-size: 14px;
  transition: 0.15s ease-in-out;
}
.btn-iconed [class~="fa"] {
  opacity: 0;
  -webkit-transform: translateX(-10px) scale(1.25);
  transform: translateX(-10px) scale(1.25);
  transition: 0.15s ease-out;
}
.loader {
  background: #fff url(/assets/images/gif/loader.gif) no-repeat 50% 50%;
  display: none;
  height: 32px;
  margin: 11px auto;
  position: relative;
  width: 32px;
}

.input-wrapper {
  display: flex;
  flex-direction: row;
  flex: 1 1 auto;
}
.icon {
  padding: 15px;
  background: var(--blue-main);
  color: white;
  min-width: 50px;
  text-align: center;
}

.i-left {
  display: block;
  float: left;
}

.inp {
  padding: 10px;
  flex: 1;
  border: 1px solid #ddd;
  box-sizing: border-box;
  color: #1447c0;
  transition: all 0.2s ease 0s;
}

.inp:hover {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
.select-wrapper {
  position: relative;
}

.select-wrapper select {
  display: block;
  background: #fff;
  width: 100%;
  padding: 9px 20px;
  border: 1px solid #ddd;
  border-radius: 3px;
  color: #1447c0;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.select-wrapper:after {
  content: url("/assets/images/icons/arrow-down.png");
  float: right;
  display: block;
  border-color: transparent;
  pointer-events: none;
  position: absolute;
  top: 20%;
  right: 5px;
}

.select-wrapper:hover {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.select-wrapper select:focus,
.input-wrapper input:focus {
  outline: none !important;
  border: 1px solid #1447c0;
  box-shadow: 0 0 10px #719ECE;
}


.align-vertically {
    display: flex;
    align-items: center;
}
.fullheight { 
	height: 100vh; 
}
.truncate {
  width: 250px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
} 
::selection {
  background-color: #013896;
  color: #f1f1f1;
} 
.hidden {
	display: none;
}
/**
img {
  font-family: 'Helvetica';
  font-weight: 300;
  line-height: 2;  
  text-align: center;
  width: 100%;
  height: auto;
  display: block;
  position: relative;
}

img:before { 
  content: "К сожалению, изображение не смогло загрузиться :(";
  display: block;
  margin-bottom: 10px;
}

img:after { 
  content: "(url: " attr(src) ")";
  display: block;
  font-size: 12px;
}
**/
a {
  color: #1b80b7;
  transition: all .2s linear;
}
a:hover { 
  color: #52bff2; 
}


@media screen and (max-width: 350px) {
	.big {
		font-size: 100%;
		width: 100%;
	}
	.icon {
		display: none !important;
	}
}

