*,
*::before,
*::after {
	box-sizing: border-box;
}

body{
	margin: 0;
	text-align: left;
	background-color: #fff;
}
body,input,textarea,select,button{
	font-family: "Roboto", sans-serif;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.6;
	color: #333335;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
	margin-top: 0;
	margin-bottom: 0;
	font-weight: 600;
	line-height: 1.3;
}

/*************************/

.container {
	width: 100%;
	padding-right: 10px;
	padding-left: 10px;
	margin-right: auto;
	margin-left: auto;
	position: relative;
}

@media (min-width: 1200px) {
	.container {
		max-width: 1200px;
	}
}

.dflex{
	display: flex;
	align-items: center;
}
.dflex1{
	min-width:0;
	flex: 1;
}
.d-none{
	display: none !important;
}
.ml10{
	margin-left: 10px;
}
.input{
	background-color: #fff;
	height: 44px;
	padding: 5px 10px;
	border: 1px solid #cccccf;
	border-radius: 3px;
	box-shadow: none;
	outline: none;
	transition: border-color 250ms ease;
	width: 100%;
	position: relative;
}
.input:focus{
	border-color: #0089b3;
	z-index: 2;
}
textarea.input{
	resize: none;
	height: auto;
}

.button{
	background-color: transparent;
	text-transform: uppercase;
	height: 44px;
	padding: 5px 10px;
	border: 1px solid #cccccf;
	border-radius: 3px;
	transition: background 250ms ease, color 250ms ease, border-color 250ms ease;
	outline: none;
	text-align: center;
	cursor: pointer;
	display: inline-block;
	text-decoration: none !important;
}
.button:focus{
	background-color: #0089b3;
	border-color: #0089b3;
	color: #fff;
	z-index: 2;
}

.txc{
	text-align: center;
}
.s10{
	width: 100%;
	height: 10px;
	clear: both;
}

/*************************/
#clicked,
#results{
	margin-top: 20px;
}

#logo{
	max-width: 190px;
	margin: auto;
	display: block;
}
#results,
#clicked,
#frm{
	max-width: 700px;
}
#reset,
#submit{
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
	margin-left: -1px;
}
#src{
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}
.itm{
	color: #333335;
	text-decoration: none;
	padding: 10px;
	position: relative;
}
.itm:hover{
	background:#f5f5f9;
}
.itm-name,
.itm-info{
	display: block;	
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 100%;
}
.itm-dom,
.itm-info{
	color: #99999b;
	font-size: .95em;
}
.itm-logo{
	max-width: 60px;
	max-height: 60px;
	object-fit: contain;
	margin-right: 15px;
}
.itm-sep{
	border-bottom: 1px solid #eeeeef;
	margin: 5px 10px;
}
.remove-itm{
	margin-top: 2px;
	font-size: .85rem;
	color: #666;
	transition: color 250ms ease;
	display: inline-flex;
}
.remove-itm:hover{
	color: #d9257e;
}
#wrap{
	display: flex;
	flex-direction: column;
	height: 100vh;
}
#main{
	flex:1;
}
#footer{
	text-align: center;
	font-size: .9em;
	color: #999;
	padding: 10px;
}
#footer a{
	color: #999;
}


#loader{
	display: none;
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 999991;
	background: url(../imgs/loader.svg) center center no-repeat;
}

#alert-ov{
	visibility: hidden;
	position: fixed;
	left: 0;
	width: 100%;
	top: 0;
	height: 100%;
	background-color: #141a20dd;
	z-index: 99;
}
#alert-ov.visible{
	visibility: visible;
}

#alert-wrap{
	visibility: hidden;
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 99;
	padding: 15px;
	max-width: 600px;
}
#alert-wrap.visible{
	visibility: visible;
}

#alert{
	min-width: 300px;
	min-height: 100px;
	padding: 30px;
	background-color: #ffffff;
	border-radius: 2px;
	text-align: center;
	-webkit-transform:scale(1);
	transform:scale(1)
}
#alert.anim{
	animation: alert-anim .5s;
}
#alert-msg{
	margin-bottom: 30px;
}
#alert-btn{
	text-align: center;
}
@keyframes alert-anim{
	0%{-webkit-transform:scale(.5);transform:scale(.5)}
	45%{-webkit-transform:scale(1.05);transform:scale(1.05)}
	80%{-webkit-transform:scale(.95);transform:scale(.95)}
	to{-webkit-transform:scale(1);transform:scale(1)}
}
.alert-error{
	padding-top: 90px;
	background:url(../imgs/cancel.svg) center top no-repeat;
	background-size: 75px; 
}
.alert-success{
	padding-top: 90px;
	background:url(../imgs/checked.svg) center top no-repeat;
	background-size: 75px; 
}
