/*! HTML5 Boilerplate v4.3.0 | MIT License | http://h5bp.com/ */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */
/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */
html,
button,
input,
select,
textarea {
  color: #222;
}
html {
  font-size: 1em;
  line-height: 1.4;
}
/*
 * Remove text-shadow in selection highlight: h5bp.com/i
 * These selection rule sets have to be separate.
 * Customize the background color to match your design.
 */
::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}
::selection {
  background: #b3d4fc;
  text-shadow: none;
}
/*
 * A better looking default horizontal rule
 */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}
/*
 * Remove the gap between images, videos, audio and canvas and the bottom of
 * their containers: h5bp.com/i/440
 */
audio,
canvas,
img,
video {
  vertical-align: middle;
}
/*
 * Remove default fieldset styles.
 */
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}
/*
 * Allow only vertical resizing of textareas.
 */
textarea {
  resize: vertical;
}

a:link, a:visited {

    color: #363958;
    padding: 4px 5px;
    text-align: center; 
    text-decoration: none;
    display: inline-block;
}

a:hover, a:active {
    text-decoration: none;
	color: red;
}
input[type=text] {
	color: white;
	font-size: large;
    max-width: 70%;
	padding: 12px 30px;
    margin: 8px 0;
    box-sizing: border-box;
	border: none;
/*	background-color: #3CBC8D;   */
	background-color: #1d1f5a;
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
body {
/*  background: #e8e8e8f0 url(../img/img.jpg) no-repeat center bottom fixed; */
  background: #e8e8e8f0;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
}
.login-form {
  margin: 20px auto;
  background: #1d1f5a;
  padding: 20px 0;
  position: relative;
  -webkit-box-shadow: 0 0 5px 3px rgba(0, 0, 0, 0.125);
  box-shadow: 0 0 5px 3px rgba(0, 0, 0, 0.125);
    color: #fff;
    height: auto;
}
.login-form #form-loading {
  text-align: center;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  opacity: 0.5;
  filter: alpha(opacity=50);
  z-index: 1000;
  background: #555555;
}
.login-form #form-loading i {
  font-size: 100px;
}
.login-form #form-message {
  text-align: center;
  color: #555555;
}
.login-form .h1 {
  font-size: 30px;
  color: #009ee8;
  padding: 5px 5px 15px 5px;

  text-align: center;
}
.login-form .logo {
  height: auto;
  max-width: 100%;
}
.login-form .group {
  *zoom: 1;
  -webkit-transition: all ease .2s;
  transition: all ease .2s;
  border-left: 4px solid #009ee8;
  padding: 10px 0;
}
.login-form .group:before,
.login-form .group:after {
  content: " ";
  display: table;
}
.login-form .group:after {
  clear: both;
}
.login-form .group > label {
  padding-left: 15px;
  padding-top: 5px;
  font-size: 16px;
  display: block;
}
.login-form .group > label.empty {
  display: block;
  height: 1px;
  padding: 0;
  margin: 0;
}
.login-form .group > div {
  padding: 0 15px;
  
}
.login-form .group > div.addon-right {
  position: relative;
  padding-right: 50px;
}
.login-form .group > div.addon-right > i {
  position: absolute;
  right: 25px;
  top: 9px;
  z-index: 999;
  color: #555555;
}
.login-form .group > div .error-message {
  font-size: 12px;
  color: red;
  margin-top: 5px;
}
.login-form .group.active {
  background: #F6F6F6;
  color: #1d1f5a;
  border-left-color: #40C2FF;
  -webkit-box-shadow: inset 0px 0px 3px rgba(0, 0, 0, 0.03);
  box-shadow: inset 0px 0px 3px rgba(0, 0, 0, 0.03);
}
.login-form input[type=submit] {
  border: none;
  background: #009ee8;
  color: white;
  font-family: 'Roboto', sans-serif;
  padding: 5px 20px;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 1px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: background ease-in-out .15s;
  transition: background ease-in-out .15s;
  cursor:pointer;
}
.login-form input[type=submit]:hover {
  background: #375299;
}

.login-form {
  width: 320px;
}
@media (min-width: 550px) {
  .login-form {
    width: 520px;
  }
  .login-form .group > label {
    float: left;
    width: 180px;
  }
  .login-form .group > div {
    margin-left: 180px;
    padding-left: 0;
  }
}
.form-control {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.428571429;
  color: #555555;
  background-color: #ffffff;
  background-image: none;
  border: 1px solid #cccccc;
  border-radius: 1px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  font-family: 'Roboto', sans-serif;
}
.form-control:focus {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
}
.form-control::-moz-placeholder {
  color: #999999;
  opacity: 1;
}
.form-control:-ms-input-placeholder {
  color: #999999;
}
.form-control::-webkit-input-placeholder {
  color: #999999;
}
.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
  cursor: not-allowed;
  background-color: #eeeeee;
  opacity: 1;
}
textarea.form-control {
  height: auto;
}


/*============================================= */
.search-form-resolve {
  margin: 50px auto;
  background: #acc0c36b;
  padding: 30px 0;
  position: relative;
  -webkit-box-shadow: 0 0 5px 3px rgba(0, 0, 0, 0.125);
  box-shadow: 0 0 5px 3px rgba(0, 0, 0, 0.125);
  height: auto;
}
.search-form-resolve #form-loading {
  text-align: center;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  opacity: 0.5;
  filter: alpha(opacity=50);
  z-index: 1000;
  background: #555555;
}
.search-form-resolve #form-loading i {
  font-size: 100px;
}
.search-form-resolve #form-message {
  text-align: center;
  color: #555555;
}
.search-form-resolve .h1 {
  font-size: 30px;
  color: #3EC038;
  padding: 15px 15px 35px 15px;
  text-transform: uppercase;
  text-align: center;
}
.search-form-resolve .logo {
  height: auto;
  max-width: 100%;
}
.search-form-resolve .group {
  *zoom: 1;
  -webkit-transition: all ease .2s;
  transition: all ease .2s;
  border-left: 4px solid #fff;
  padding: 10px 0;
}
.search-form-resolve .group:before,
.search-form-resolve .group:after {
  content: " ";
  display: table;
}
.search-form-resolve .group:after {
  clear: both;
}
.search-form-resolve .group > label {
  padding-left: 15px;
  padding-top: 5px;
  color: #555555;
  font-size: 16px;
  display: block;
}
.search-form-resolve .group > label.empty {
  display: block;
  height: 1px;
  padding: 0;
  margin: 0;
}
.search-form-resolve .group > div {
  padding: 0 15px;
}
.search-form-resolve .group > div.addon-right {
  position: relative;
  padding-right: 50px;
}
.search-form-resolve .group > div.addon-right > i {
  position: absolute;
  right: 25px;
  top: 9px;
  z-index: 999;
  color: #555555;
}
.search-form-resolve .group > div .error-message {
  font-size: 12px;
  color: red;
  margin-top: 5px;
}
.search-form-resolve .group.active {
  background: #F6F6F6;
  border-left-color: #40C2FF;
  -webkit-box-shadow: inset 0px 0px 3px rgba(0, 0, 0, 0.03);
  box-shadow: inset 0px 0px 3px rgba(0, 0, 0, 0.03);
}
.search-form-resolve input[type=submit] {
  border: none;
  background: #272a77;
  color: white;
  font-family: 'Roboto', sans-serif;
  padding: 12px 20px;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 1px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: background ease-in-out .15s;
  transition: background ease-in-out .15s;
  cursor:pointer;
}
.search-form-resolve input[type=submit]:hover {
  background: #66afe9;
}
.search-form-resolve {
  width: 320px;
}
@media (min-width: 550px) {
  .search-form-resolve {
    width: 520px;
  }
  .search-form-resolve .group > label {
    float: left;
    width: 180px;
  }
  .search-form-resolve .group > div {
    margin-left: 180px;
    padding-left: 0;
  }
}

.search-form-resolve input[type="text"] {
    text-transform: lowercase;
}


/* ==========================================================================
   Helper classes
   ========================================================================== */
.search-form {
  margin: 50px auto;
  background: white;
  padding: 30px 0;
  position: relative;
  -webkit-box-shadow: 0 0 5px 3px rgba(0, 0, 0, 0.125);
  box-shadow: 0 0 5px 3px rgba(0, 0, 0, 0.125);
  height: auto;
}
.search-form #form-loading {
  text-align: center;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  opacity: 0.5;
  filter: alpha(opacity=50);
  z-index: 1000;
  background: #555555;
}
.search-form #form-loading i {
  font-size: 100px;
}
.search-form #form-message {
  text-align: center;
  color: #555555;
}
.search-form .h1 {
  font-size: 30px;
  color: #3EC038;
  padding: 15px 15px 35px 15px;
  text-transform: uppercase;
  text-align: center;
}
.search-form .logo {
  height: auto;
  max-width: 100%;
}
.search-form .group {
  *zoom: 1;
  -webkit-transition: all ease .2s;
  transition: all ease .2s;
  border-left: 4px solid #fff;
  padding: 10px 0;
}
.search-form .group:before,
.search-form .group:after {
  content: " ";
  display: table;
}
.search-form .group:after {
  clear: both;
}
.search-form .group > label {
  padding-left: 15px;
  padding-top: 5px;
  color: #555555;
  font-size: 16px;
  display: block;
}
.search-form .group > label.empty {
  display: block;
  height: 1px;
  padding: 0;
  margin: 0;
}
.search-form .group > div {
  padding: 0 15px;
}
.search-form .group > div.addon-right {
  position: relative;
  padding-right: 50px;
}
.search-form .group > div.addon-right > i {
  position: absolute;
  right: 25px;
  top: 9px;
  z-index: 999;
  color: #555555;
}
.search-form .group > div .error-message {
  font-size: 12px;
  color: red;
  margin-top: 5px;
}
.search-form .group.active {
  background: #F6F6F6;
  border-left-color: #40C2FF;
  -webkit-box-shadow: inset 0px 0px 3px rgba(0, 0, 0, 0.03);
  box-shadow: inset 0px 0px 3px rgba(0, 0, 0, 0.03);
}
.search-form input[type=submit] {
  border: none;
  background: #272a77;
  color: white;
  font-family: 'Roboto', sans-serif;
  padding: 12px 20px;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 1px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: background ease-in-out .15s;
  transition: background ease-in-out .15s;
  cursor:pointer;
}
.search-form input[type=submit]:hover {
  background: #66afe9;
}
.search-form {
  width: 320px;
}
@media (min-width: 550px) {
  .search-form {
    width: 520px;
  }
  .search-form .group > label {
    float: left;
    width: 180px;
  }
  .search-form .group > div {
    margin-left: 180px;
    padding-left: 0;
  }
}

.search-form input[type="text"] {
    text-transform: lowercase;
}

.resault-form{
  margin: 20px auto;
  background: #dcdcd6;
  font-family: Century Gothic;
  color: #000F55;
  padding: 30px 0;
  position: relative;
  -webkit-box-shadow: 0 0 5px 3px rgba(0, 0, 0, 0.125);
  box-shadow: 0 0 5px 3px rgba(0, 0, 0, 0.125);
  height: auto;
  max-width: 70%;
  width: 100%;
  min-width: 350px;
}
.resault-form-forthnet{
  margin: 20px auto;
  background-color: #acc0c3;
  background-image: url(../img/logo.png); 
  background-repeat: no-repeat;
  background-position-x: 95%; 
  font-family: Century Gothic;
  color: #000F55;
  padding: 30px 0;
  position: relative;
  -webkit-box-shadow: 0 0 5px 3px rgba(0, 0, 0, 0.125);
  box-shadow: 0 0 5px 3px rgba(0, 0, 0, 0.125);
  height: auto;
  max-width: 70%;
  width: 100%;
  min-width: 350px;
}
.resault-form-ote{
  margin: 20px auto;
  background-color: #bfca74;
  background-image: url(../img/cosmo-logo2.png); 
  /*  background-size: 85px;   */
  background-repeat: no-repeat;
  background-position-x: 95%; 
  font-family: Century Gothic;
  color: #000F55;
  padding: 30px 0;
  position: relative;
  -webkit-box-shadow: 0 0 5px 3px rgba(0, 0, 0, 0.125);
  box-shadow: 0 0 5px 3px rgba(0, 0, 0, 0.125);
  height: auto;
  max-width: 70%;
  width: 100%;
  min-width: 350px;
}
.resault-form-vodafone{
  margin: 20px auto;
  background-color: #f600005e;
  background-image: url(../img/voda-logo2.png); 
/*  background-size: 85px;   */
  background-repeat: no-repeat;
  background-position-x: 95%; 
  font-family: Century Gothic;
  color: #000F55;
  padding: 30px 0;
  position: relative;
  -webkit-box-shadow: 0 0 5px 3px rgba(0, 0, 0, 0.125);
  box-shadow: 0 0 5px 3px rgba(0, 0, 0, 0.125);
  height: auto;
  max-width: 70%;
  width: 100%;
  min-width: 350px;
}
.resault-form-wind{
  margin: 20px auto;
  background-color: #009de654;
  background-image: url(../img/logowind.png); 
  background-size: 85px;
  background-repeat: no-repeat;
  background-position-x: 95%; 
  font-family: Century Gothic;
  color: #000F55;
  padding: 30px 0;
  position: relative;
  -webkit-box-shadow: 0 0 5px 3px rgba(0, 0, 0, 0.125);
  box-shadow: 0 0 5px 3px rgba(0, 0, 0, 0.125);
  height: auto;
  max-width: 70%;
  width: 100%;
  min-width: 350px;
}
.resault-form-cyta{
  margin: 20px auto;
  background-color: #fed12b85;
  background-image: url(../img/cyta-logo2.png); 
  /*  background-size: 85px;   */
  background-repeat: no-repeat;
  background-position-x: 95%; 
  font-family: Century Gothic;
  color: #000F55;
  padding: 30px 0;
  position: relative;
  -webkit-box-shadow: 0 0 5px 3px rgba(0, 0, 0, 0.125);
  box-shadow: 0 0 5px 3px rgba(0, 0, 0, 0.125);
  height: auto;
  max-width: 70%;
  width: 100%;
  min-width: 350px;
}
.empty-form{
  margin: 20px auto;
  background: #e8e8e8f0;
  font-family: Courier New;
  color: #ababab;
  padding: 20px 0;
  text-align: center;
  position: relative;
  height: auto;
  max-width: 40%;
  min-width: 20%;
}
.none-empty-form{
  margin: 20px auto;
/*  background: #e8e8e8f0;  */
  font-family: Courier New;
  color: #848484cc;
  padding: 20px 0;
  text-align: center;
  position: relative;
  height: auto;
  max-width: 40%;
  min-width: 20%;
}
.mx-blacklist-check {
  margin: 10px auto;
/*  background: #e8e8e8f0;  */
  font-family: Courier New;
  color: #848484cc;
  padding: 10px 0;
  font-size: smaller;
  text-align: left;
  position: relative;
  height: auto;
  max-width: 90%;
  min-width: 20%;
}
	
.whois-form {
  margin: 5px auto;
  font-size: smaller;
 /* background: #e8e8e8f0;  */
  font-family: initial;
  color: #8e8e8e;
  padding: 5px 0;
  text-align: left;
  position: relative;
  height: auto;
  max-width: 60%;
/*  min-width: 800px;  */
}
.whois-ip-form {
   margin: 20px auto;
/*  background: #e8e8e8f0;  */
  font-family: Courier New;
  color: #848484cc;
  padding: 20px 0;
  text-align: center;
  position: relative;
  height: auto;
  max-width: 80%;
  min-width: 20%;
}
i.fa.fa-refresh {
    font-size: large;
}
/* ==========================================================================
   Helper classes
   ========================================================================== */
.hide {
  display: none !important;
}
.show {
  display: block !important;
}
.one-line {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.arrow-up {
  border-left-color: transparent;
  border-right-color: transparent;
  border-top-style: none;
}
.arrow-down {
  border-left-color: transparent;
  border-right-color: transparent;
  border-bottom-style: none;
}
.arrow-right {
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-right-style: none;
}
.arrow-left {
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-left-style: none;
}
.arrow {
  width: 0;
  height: 0;
  display: inline-block;
  vertical-align: middle;
  border-color: white;
  border-width: 5px;
  border-style: solid;
}
.arrow.up {
  border-left-color: transparent;
  border-right-color: transparent;
  border-top-style: none;
}
.arrow.down {
  border-left-color: transparent;
  border-right-color: transparent;
  border-bottom-style: none;
}
.arrow.right {
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-right-style: none;
}
.arrow.left {
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-left-style: none;
}



label.err {
    color: red;
    display: block;
    margin: 0;
    width: auto;
}
em {
    display: block;
    margin: 5px 0 0px 180px;
    font-style: inherit;
}
.welcome{
	line-height: 50px;
	padding-left:30px;
	padding-right: 30px;
	color: #ffffff;
}
/*
 * pageup
 */	
#myBtn {
  display: none;
  position: fixed;
  bottom: 15px;
  right: 50%;
  margin-right: -19px;
  z-index: 99;
  font-size: 18px;
  border: none;  
  outline: none;
  background-color: #007bb5;
  color: white;
  cursor: pointer;
  padding: 0 20px;
  border-radius: 4px;
  opacity: 0.8;
  -khtml-opacity: 0.8;
  filter: alpha(opacity=80);
}

#myBtn:hover {
  background-color: #004fa1;
}
 /*
 * pageup
 */	
 
 /* ==========================================================================
   Μεταρτοπή σε ascii
   ========================================================================== */
 
 
 .convert input[type=submit] {
  border: none;
  background: #449f44;
  color: white;
  font-family: 'Roboto', sans-serif;
  padding: 12px 20px;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 1px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: background ease-in-out .15s;
  transition: background ease-in-out .15s;
  cursor:pointer;
}