.nav.nav-tabs {
    margin-top:10px;
}
        
#whoischeck h2 ,
#singlecheck h2,
#bulkcheck h2,
#masscheck h2 {
    margin:30px 0;
    text-align: center;
}
/* loading style */
#loadingdomain {
	text-align:center;
	font-size:14px;
	display: none;
	margin:0px auto;
}
#loadingdomain .animate-spin-list {
	margin-right:25px;
	display:block;
	width:100%;
	color:#444;
	margin-bottom:30px;
}
#loadingdomain .animate-spin-list:before {
	font-size:80px; /**change font-size the spin animation bigger*/
	position:relative;
	vertical-align:middle;
    padding:0 10px;
    top:-3px;
}
.progress-animate{
    -webkit-animation:loading 5s infinite linear;
    -moz-animation:loading 5s infinite linear;
            animation:loading 5s infinite linear;
}

@keyframes loading {
    0%{
        width:0%;
    }
    80% {
        width:100%;
    }
    100% {
        width:0%;
    }
}
@-moz-keyframes loading {
    0%{
        width:0%;
    }
    80% {
        width:100%;
    }
    100% {
        width:0%;
    }
}
@-webkit-keyframes loading {
    0%{
        width:0%;
    }
    80% {
        width:100%;
    }
    100% {
        width:0%;
    }
}

#showdomain {
	
}

.domainresult {
    margin:20px auto;
}
/* the animations */
.animate-spin {
    -webkit-animation: spin 2s infinite linear;
            animation: spin 2s infinite linear;
  
}
.animate-spin-list:before {
    display:inline-block;
    -webkit-animation: spin 2s infinite linear;
            animation: spin 2s infinite linear;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(359deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
           -moz-transform: rotate(0deg);
            -ms-transform: rotate(0deg);
             -o-transform: rotate(0deg);
                transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(359deg);
           -moz-transform: rotate(359deg);
            -ms-transform: rotate(359deg);
             -o-transform: rotate(359deg);
                transform: rotate(359deg);
    }
}

