body,
html {
    width: 100%;
    height: 100%;

}

body,
p {
    color: #555;
    font: 400 1rem/1.625rem "Open Sans", sans-serif;
    ;
}


.mint-header {
    padding-top: 30px;

}

.p-small {
    font: 400 0.875rem/1.5rem "Open Sans", sans-serif;
}

h1 {
    color: #333;
    font: 700 2.5rem/3.125rem "Open Sans", sans-serif;
    letter-spacing: -0.2px;
}

h2 {
    color: #333;
    font: 700 2rem/2.625rem "Open Sans", sans-serif;
    letter-spacing: -0.2px;
}

h3 {
    color: #333;
    font: 700 1.625rem/2.125rem "Open Sans", sans-serif;
    letter-spacing: -0.2px;
}



.p-heading {
    margin-bottom: 3.25rem;
}

*:focus,
.owl-dot:focus {
    outline: 0;
}

.logo {
    padding-bottom: 20px;
}

.blue {
    color: #5f4dee;
}

.white {
    color: #ffffff;
}



/**********************************/
/*     16. Back To Top Button     */
/**********************************/
a.back-to-top {
    position: fixed;
    z-index: 999;
    right: 0.75rem;
    bottom: 0.75rem;
    display: none;
    width: 2.625rem;
    height: 2.625rem;
    border-radius: 1.875rem;
    background: #4f3cda url("../images/up-arrow.png") no-repeat center 47%;
    background-size: 1.125rem 1.125rem;
    text-indent: -9999px;
}

a:hover.back-to-top {
    background-color: #4332c5;
}



/*************************/
/*     02. Preloader     */
/*************************/
.spinner-wrapper {
    position: fixed;
    z-index: 999999;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #fff;
}

.spinner {
    position: absolute;
    top: 50%;
    /* centers the loading animation vertically one the screen */
    left: 50%;
    /* centers the loading animation horizontally one the screen */
    width: 3.75rem;
    height: 1.25rem;
    margin: -0.625rem 0 0 -1.875rem;
    /* is width and height divided by two */
    text-align: center;
}

.spinner>div {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    border-radius: 100%;
    background-color: #5f4dee;
    -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
    animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

.spinner .bounce2 {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {

    0%,
    80%,
    100% {
        -webkit-transform: scale(0);
    }

    40% {
        -webkit-transform: scale(1.0);
    }
}

@keyframes sk-bouncedelay {

    0%,
    80%,
    100% {
        -webkit-transform: scale(0);
        -ms-transform: scale(0);
        transform: scale(0);
    }

    40% {
        -webkit-transform: scale(1.0);
        -ms-transform: scale(1.0);
        transform: scale(1.0);
    }
}


/**************************/
/*     03. Navigation     */
/**************************/
.navbar-custom {
    background-color: #5f4dee;
    box-shadow: 0 0.0625rem 0.375rem 0 rgba(0, 0, 0, 0.1);
    font: 700 0.875rem/0.875rem "Open Sans", sans-serif;
    transition: all 0.2s;
}

.navbar-custom .container {
    max-width: 87.5rem;
}

.navbar-custom .navbar-brand.logo-image img {
    width: 6rem;
    /*height: 1.75rem;*/
}

.navbar-custom .navbar-brand.logo-text {
    font: 700 2rem/1.5rem "Open Sans", sans-serif;
    color: #fff;
    ;
    text-decoration: none;
}

.navbar-custom .navbar-nav {
    margin-top: 0.75rem;
    margin-bottom: 0.5rem;
}

.navbar-custom .nav-item .nav-link {
    padding: 0.625rem 0.75rem 0.625rem 0.75rem;
    color: #f7f5f5;
    opacity: 0.8;
    text-decoration: none;
    transition: all 0.2s ease;
}

.navbar-custom .nav-item .nav-link:hover,
.navbar-custom .nav-item .nav-link.active {
    color: #fff;
    opacity: 1;
}

/* Dropdown Menu */
.navbar-custom .dropdown:hover>.dropdown-menu {
    display: block;
    /* this makes the dropdown menu stay open while hovering it */
    min-width: auto;
    animation: fadeDropdown 0.2s;
    /* required for the fade animation */
}

@keyframes fadeDropdown {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.navbar-custom .dropdown-toggle:focus {
    /* removes dropdown outline on focus */
    outline: 0;
}

.navbar-custom .dropdown-menu {
    margin-top: 0;
    border: none;
    border-radius: 0.25rem;
    background-color: #5f4dee;
}

.navbar-custom .dropdown-item {
    color: #f7f5f5;
    opacity: 0.8;
    font: 700 0.875rem/0.875rem "Open Sans", sans-serif;
    text-decoration: none;
}

.navbar-custom .dropdown-item:hover {
    background-color: #5f4dee;
    color: #fff;
    opacity: 1;
}

.navbar-custom .dropdown-items-divide-hr {
    width: 100%;
    height: 1px;
    margin: 0.75rem auto 0.725rem auto;
    border: none;
    background-color: #c4d8dc;
    opacity: 0.2;
}

/* end of dropdown menu */

.navbar-custom .nav-item .btn-outline-sm {
    /*margin-top: 0.25rem;
	margin-bottom: 1.375rem;*/
    margin-left: 0.5rem;
    border: 0.125rem solid #fff;
    color: #fff;
}


.navbar-custom .nav-item .btn-outline-sm:hover {
    background-color: #fff;
    color: #5f4dee;
}


.navbar-custom .nav-item .btn-social-media {
    opacity: 0.8;
}

.navbar-custom .nav-item .btn-social-media:hover {
    opacity: 1;
}

.navbar-custom .navbar-toggler {
    padding: 0;
    border: none;
    color: #fff;
    font-size: 2rem;
}

.navbar-custom button[aria-expanded='false'] .navbar-toggler-awesome.fa.fa-times {
    display: none;
}

.navbar-custom button[aria-expanded='false'] .navbar-toggler-awesome.fa.fa-bars {
    display: inline-block;
}

.navbar-custom button[aria-expanded='true'] .navbar-toggler-awesome.fa.fa-bars {
    display: none;
}

.navbar-custom button[aria-expanded='true'] .navbar-toggler-awesome.fa.fa-times {
    display: inline-block;
    margin-right: 0.125rem;
}



.btn-outline-sm {
	display: inline-block;
	padding: 0.475rem 1.5rem 0.575rem 1.5rem;
	border: 0.125rem solid #5f4dee;
	border-radius: 2rem;
	background-color: transparent;
	color: #5f4dee;
	font: 700 0.875rem/0 "Open Sans", sans-serif;
	text-decoration: none;
	transition: all 0.2s;
}

.btn-outline-sm:hover {
	background-color: #5f4dee;
	color: #fff;
	text-decoration: none;
}


/*********************/
/*    04. Header     */
/*********************/

.mint-header {
    padding-top: 8rem; 
    padding-bottom: 4rem;
    text-align: center;
}

.mint-header {
    padding-top: 8rem; 
    padding-bottom: 4rem;
    text-align: center;
}

.gray-box {
    background-color: #eef4ff;
    border-radius: 14px;
    padding: 20px;
    -webkit-border-radius: 14px;
    -moz-border-radius: 14px;
    -ms-border-radius: 14px;
    -o-border-radius: 14px;
}

.ibox {

    padding: 5px;
}

.box {
    background-color: #dde9ff;
    border-radius: 10px;
    padding: 5px;
    -webkit-border-radius:10px;
    -moz-border-radius:10px;
    -ms-border-radius:10px;
    -o-border-radius:10px;
}


.bold-king {
    color: #000;
    font-weight: 700;
    font-size: 16px;
}

.congratulations {
    display: block;
    margin: 20px;
    max-width: 300px;
    padding: 10px 40px;
    background-color: #5f4dee;
    border-radius: 50px;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}

.text-blue {
    display: block;
    margin: 6px;
    padding: 4px;
    background-color: #5f4dee;
    border: 2px solid #5f4dee;
    border-radius: 10px;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.small-text {
    font-size: 12px;

}

.details {
    padding: 0px !important;
    border-radius: 20px;
}

.king {
    max-width: 350px;
    padding: 0px !important;
    border-radius: 20px;
    background-color: #fff;
    border: 10px solid #fff;
}

img {
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.btn-wallet-2{
    display: block;
    margin-top: 14px;
    width: 100%;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 10px;
    background: #5f4dee;
    color: #fff;
    transition: 0.3s;
    border-radius: 10px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}


.btn-wallet-2:hover {
    background-color: #4c3ec0;
    color: #fff;
    text-decoration: none;
}

.live {
    background-color: #384457;
    border-radius: 8px;
    color: #fff;
    font-weight: 700 !important;
    font: 18px "Open Sans", sans-serif;
    display: inline-block;
    text-transform: uppercase;
    padding: 12px 24px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.rowking {
    margin: 0 !important;
}

.rowking p {
    line-height: 22px;
}

.rowking p span {
    font-size: 12px;
    color: #5f4dee;
    font-weight: 700;
    text-transform: uppercase;
}



.pking {
    padding: 0px;
}

.mking {
    padding-bottom: 0px;
    padding-right: 0px;
    padding-top: 40px;
    padding-left: 20px;
}

.nking {
    padding-bottom: 0px;
    padding-right: 0px;
    padding-top: 0px;
    padding-left: 20px;
}

.left-p{
    padding-left: 16px;
}

.left-p p{
    text-align: left;
}

.show {
    display: block;
}

.hide {

    display: none;
}

.king-form{
    width: 100%;
    padding-left: 14px;
    padding-right: 14px;
    margin-top: 10px;
}

.king-form span{
    display:block;
    font-size: 14px;
    padding-left: 5px;
    text-align: left;
    margin-bottom: 0;
    margin-top: 0;
    
}
.title-blue{
text-align: left; color: #5f4def;
}
.field-king{
 border: 2px solid #dde9ff;
 background-color: #fff;
 padding: 5px 10px 5px 10px;
 text-align: left;
 width: 100%;
 border-radius: 10px;
 -webkit-border-radius:10px;
 -moz-border-radius:10px;
 -ms-border-radius:10px;
 -o-border-radius:10px;
}


.gas{
font-size: 12px;
float:right

}

input{
    border: 0px solid #fff;
    background-color: transparent;
}




.Mint-btn {
    display: block;
    margin-left: 14px;
    margin-right: 14px;
    margin-top: 14px;
    width: 100%;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 10px;
    background: #5f4dee;
    color: #fff;
    transition: 0.3s;
    border-radius: 10px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    text-decoration: none;
}

.Mint-btn:hover {
    background: #4332c5;
}

@media screen and (max-width: 600px) {
    .mking {
        padding-bottom: 0px;
        padding-right: 0px;
        padding-top: 20px;
        padding-left: 0px;
    }

    .nking {
        padding:0px
    }

    .title-blue{
        padding-top: 10px;
        }

    .text-blue {
        font-size: 13px;
        padding: 0px;

    }


    .small-text {
        font-size: 11px;

    }
}

/**********************/
/*     14. Footer     */
/**********************/
.footer-frame {
    width: 100%;
    height: 1.5rem;
}

.footer {
    padding-top: 3rem;
    padding-bottom: 0.5rem;
    background-color: #5f4dee;
}

.footer .footer-col {
    margin-bottom: 2.25rem;
}

.footer h4 {
    margin-bottom: 0.625rem;
    color: #fff;
}

.footer .list-unstyled,
.footer p {
    color: #f3f7fd;
}

.footer .footer-col.middle .list-unstyled .fas {
    color: #fff;
    font-size: 0.5rem;
    line-height: 1.5rem;
}

.footer .footer-col.middle .list-unstyled .media-body {
    margin-left: 0.5rem;
}

.footer .footer-col.last .list-unstyled .fas {
    color: #fff;
    font-size: 0.875rem;
    line-height: 1.5rem;
}

.footer .footer-col.last .list-unstyled .media-body {
    margin-left: 0.625rem;
}

.footer .footer-col.last .list-unstyled .fas.fa-globe {
    margin-left: 1rem;
    margin-right: 0.625rem;
}

.footer .social-links a {
    font-size: 26px;
    display: inline-block;
    background: #fff;
    border: 2px solid #fff;
    color: #5f4dee;
    padding: 10px 0;
    margin-right: 8px;
    border-radius: 50px;
    text-align: center;
    width: 50px;
    height: 50px;
    transition: 0.3s;
}

.footer .social-links a:hover {
    background-color: #5f4dee;
    color: #FFF;
    border: 2px solid #fff;
    text-decoration: none;
}



.footer-newsletter {
    margin-bottom: 26px;
    text-align: center;
    font-size: 15px;
    color: #444444;
}


.footer-newsletter form {
    margin-top: 16px;
    background: #fff;
    padding: 6px 10px;
    position: relative;
    border-radius: 50px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
    text-align: left;
}

.footer-newsletter form input[type="email"] {
    border: 0;
    padding: 4px 8px;
    width: calc(100% - 100px);
}

.footer-newsletter form input[type="submit"] {
    position: absolute;
    top: 4px;
    right: 4px;
    bottom: 4px;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 20px;
    background: #5f4dee;
    color: #fff;
    transition: 0.3s;
    border-radius: 50px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.footer-newsletter form input[type="submit"]:hover {
    background: #4332c5;
}



/*************************/
/*     15. Copyright     */
/*************************/
.copyright {
    padding-top: 1rem;
    padding-bottom: 0.375rem;
    background-color: #5f4dee;
    text-align: center;
}

.copyright .p-small {
    padding-top: 1.375rem;
    border-top: 1px solid #718ad1;
    color: #f3f7fd;
}

.copyright a {
    color: #f3f7fd;
    text-decoration: none;
}



/* The Modal*/
.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 1;
    /* Sit on top */
    padding-top: 100px;
    /* Location of the box */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4);
    /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 400px;
}

@media screen and (max-width: 600px) {

    .modal-content {
        width: 320px;
    }

}

/* The Close Button */
.close {
    color: #aaaaaa;
    float: right;
    text-align: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.icon_wallet {
    background-color: #f6f6f6;
    text-align: center;
    margin: 10px 0px;
    padding: 30px 10px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.icon_wallet:hover {
    background-color: #ededed;
    cursor: pointer;
}

.connect-wallet{
    font-size: 22px;
}
   
.table th{
    background-color: #5f4dee;
    border: 2px solid #fff;
    color: #fff;
}

.table td{
    border: 2px solid #fff;
}


.table thead th {
    vertical-align: bottom;
    border-bottom: 0px solid #fff;
}

.False{color:#cc0000; font-weight: 700;}

.True{color:#41ad49; font-weight: 700;}
.table-hover tbody tr:hover > td {
    background-color: rgba(192,213,255,0.5);
}

.section-title {
    text-align: center;
    padding-bottom: 10px;
  }
.section-title h2 {
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 5px;
    position: relative;
    color: #5f4dee;
  }
  .section-title h2::before {
    content: "";
    position: absolute;
    display: block;
    width: 120px;
    height: 1px;
    background: #ddd;
    bottom: 1px;
    left: calc(50% - 60px);
  }
  .section-title h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 40px;
    height: 3px;
    background: #47b2e4;
    bottom: 0;
    left: calc(50% - 20px);
  }
    .king-roadmap {
        list-style: none;
    }
    .red {
        color: #cc0000;
    }

    .gas-low{
        color:#28c9b2;
        font-weight: 600;
    }

    .gas-mid{
        color:#4088d6;
        font-weight: 600;
    }

    .gas-high{
        color:#c91c32;
        font-weight: 600;
    }    
  