* {
  box-sizing: border-box;
}

/* Style the header */
.header {
 background-color: transparent;
  padding: 3px;
  text-align: center;
}


/* Create three equal columns that floats */
.column {
  float: left;
  width: 33.33%;
  padding: 15px;
}


/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive layout */
@media screen and (max-width:600px) {
  .column {
    width: 100%;
  }

}

	body{
		background:linear-gradient(90deg,#0162c8,#55e7fc);
	}
	h1{
		text-align: center;
		color:#f0f0f0;
		font-family: 'Baloo Bhai', cursive;
		margin-top: 5px;
	}
    	h2{
		text-align: center;
		color:#f0f0f0;
	font-size: 17px;
    	font-family: MingLiU-ExtB;
        	margin-bottom: 5px;
          
	}
     h3 {
        font-size: 18px;
     
    }

	b{
		color:#0162c8;
		font-size: 30px;
	}
	strong{
		color:#fff; 
	}
    
	select{
	
		font-size:15px;
	}

	table{
		text-align: center;
	}
	select{
		border-radius: 20px;
		color:voilet;
		text-align:center;
		padding-left:auto;
         width:100%;   
	}


    /*user input/code /output  background */
    #divselect {
        
  border-radius: 25px;
  background: #D35400;
  padding: 20px;
  width: 100%;
  height: 100%;
}
 /*code blockbackground */
    #codecontain {
        
       white-space: nowrap; 
  padding-right: 9px;
 overflow: auto;
  text-overflow: "down"; 
   border-left: 5px solid green;
  background: white;
 margin: 5px;
  width: 100%;
  height: 100%;
  font-family:Consolas,Monaco,Lucida Console,Liberation Mono,DejaVu Sans Mono,Bitstream Vera Sans Mono,Courier New;
}
/*table*/
table.vip th, table.vip td {
    text-align: center;
}

table.vip thead {
    line-height: 12px;
    background: #2e63e7;
    text-transform: uppercase;
}

table.vip thead th {
    color: #fff;
    padding: 10px;
    letter-spacing: 1px;
    vertical-align: bottom;
}

table.vip thead th:nth-child(1) {
    width: 20%;
    text-align: left;
    padding-left: 20px;
}

table.vip thead th:nth-child(2) {
    width: 30%;
}

table.vip thead th:nth-child(3) {
    width: 35%;
}

table.vip thead th:nth-child(4) {
    width: 15%;
}

table.vip tbody {
    font-size: 1em;
    line-height: 15px;
}

table.vip tbody tr {
    border-top: 2px solid rgba(109, 176, 231, 0.8);
    transition: background 0.6s, color 0.6s;
}

table.vip tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.2);
}

table.vip tbody tr:hover {
    color: #000;
    background: rgba(255, 255, 255, 0.7);
    font-weight: 900;
}

table.vip tbody td {
    padding: 12px;
}

table.vip tbody tr:hover td:first-child {
    background: rgba(0,0,0,0);
}

table.vip tbody td:first-child {
    text-align: left;
    padding-left: 20px;
    font-weight: 700;
    background: rgba(109, 176, 231, 0.35);
    transition: backgrounf 0.6s;
}

table.vip tfoot {
    font-size: 0.8em;
}

table.vip tfoot tr {
    border-top: 2px solid #2e63e7;
}

table.vip tfoot td {
    color: rgba(255,255,215,0.6);
    text-align: left;
    line-height: 15px;
    padding: 15px 20px;
}


/* Mobile Layout */

@media screen and (max-width: 400px) {
    h1 {
        font-size: 34px;
        line-height: 36px;
        padding-left: 15px;
    }

    table.vip {
        font-size: 0.8em;
    }
}


/*card style*/
.flip-card {
  background-color: transparent;
  width: 100%;
  height:114px;
   margin: 4px;
  border: 1px solid #f1f1f1;
  perspective: 1000px;
}

/* This container is needed to position the front and back side */
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}


.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

/* Position the front and back side */
.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden; /* Safari */
  backface-visibility: hidden;
}

/* Style the front side */
.flip-card-front {
  background-color: #bbb;
  color: black;
}

/* Style the back side */
.flip-card-back {
  background-color: black;
  color: white;
  transform: rotateY(180deg);
}
b{color: #411;
  font-family: Consolas, Courier, monospace;
  font-size: 20px;
  text-shadow: 0 0 15px #411;
  height: 100%;
  }
  
  	.pin{
		color: white;
  font-family: Consolas, Courier, monospace;
  font-size: 20px;
  text-shadow: 0 0 15px #411;
  height: 100%;}
	
  textarea {
    border: none;
     background-color:black;
      color: white;
       width: 100%;
        text-align: center;
       }
/*button*/
.btn{
    background: #10754D;
     cursor: pointer;
      color: #fff;
       padding: 8px;
        border-radius: 5px;
         margin: 2px 2px;
}

.btn:hover{
     color: black;
     background-color:slateblue;
     color: #fff;
}
/*blink code */
@keyframes blinking {
  0%{
    background-color: #ff3d50;
    color: #ddd;
  }
  100%{
    background-color: #222291;
    color: #fff;
  }
}
/*blink container*/
#hidecode1,#hidecode2,#hidecode3,#hidecode4,#hidecode5,#hidecode6,#hidecode7{
      
       white-space: nowrap; 
  padding-right: 9px;
 overflow: auto;
  text-overflow: "---"; 
   border-left: 5px solid green;
width: 100%;
  height: 100%;
  padding: 5px;
  
  animation: blinking 1s infinite;
}
/*test*/
[id=result] {
  margin-top: 1rem;
}

[id=result] h3 {
  background: #EEE4E1;
  padding: 10px;
  margin: 10px 0;
  color: #000;
}
strong{
    color: white;
     font-family: Consolas, Courier, monospace;
  font-size: 16px;
  text-shadow: 0 0 15px #411;
  height: 100%;
}
.opt{
color: white;
  font-family: Consolas, Courier, monospace;
  font-size: 14px;
  text-shadow: 0 0 15px #411;
  height: 100%;}
