
.searchbar {
    position: absolute;
    margin-left: auto;
    margin-right:auto;
    margin-bottom: auto;
    top: 0  ;
    left: 0;
    right: 0;
    bottom: 0;
    width: 300px;
    height: 100px;
  }
  .searchbar .search {
    position: absolute;
    margin: auto;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 80px;
    background: rgb(64, 157, 211);
    border-radius: 50%;
    transition: all 1s;
    z-index: 4;
    box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.4);
  }
  .searchbar .search:hover {
    cursor: pointer;
  }
  .searchbar .search::before {
    content: "";
    position: absolute;
    margin: auto;
    top: 22px;
    right: 0;
    bottom: 0;
    left: 22px;
    width: 12px;
    height: 2px;
    background: white;
    transform: rotate(45deg);
    transition: all 0.5s;
  }
  .searchbar .search::after {
    content: "";
    position: absolute;
    margin: auto;
    top: -5px;
    right: 0;
    bottom: 0;
    left: -5px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 2px solid white;
    transition: all 0.5s;
  }
  .searchbar input {
    font-family: 'Inconsolata', monospace;
    position: absolute;
    margin: auto;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 50px;
    outline: none;
    border: none;
    background: rgb(64, 157, 211);
    color: white;
    text-shadow: 0 0 10px rgb(64, 157, 211);
    padding: 0 80px 0 20px;
    border-radius: 30px;
    box-shadow: 0 0 25px 0 rgb(64, 157, 211), 0 20px 25px 0 rgba(0, 0, 0, 0.2);
    transition: all 1s;
    opacity: 0;
    z-index: 5;
    font-weight: bolder;
    letter-spacing: 0.1em;
  }
  .searchbar input:hover {
    cursor: pointer;
  }
  .searchbar input:focus {
    width: 300px;
    opacity: 1;
    cursor: text;
  }
  .searchbar input:focus ~ .search {
    right: -250px;
    background: #151515;
    z-index: 6;
  }
  .searchbar input:focus ~ .search::before {
    top: 0;
    left: 0;
    width: 25px;
  }
  .searchbar input:focus ~ .search::after {
    top: 0;
    left: 0;
    width: 25px;
    height: 2px;
    border: none;
    background: white;
    border-radius: 0%;
    transform: rotate(-45deg);
  }
  .searchbar input::placeholder {
    color: white;
    opacity: 0.5;
    font-weight: bolder;
  }
  
  .border{
	padding: 5px;
		background: linear-gradient(110deg, #db90fd 33%, rgb(64, 157, 211)33%), linear-gradient(110deg, #db90fd 34%, #88d8b0 34%);
	background-size: 400% 400%;
	height: 100%;
	background-position: 25% 50%;
	-webkit-animation: Gradient 15s ease infinite;
	-moz-animation: Gradient 5s ease infinite;
}
.inner-cutout{
	padding: 10px 0;
	display: block;
	background-color:#ffffff;/*#ff6f69*/
		
	margin: 2%;
	padding-bottom: 40px;
	height: 330px;
	
	 background-size: 300%;
    background-position:50% 50%;
    overflow: scroll;

}
.knockout {
	vertical-align: middle;
	text-align: center;
	color: blue;
	color: #db90fd;
	background: linear-gradient(110deg, #db90fd 33%, rgb(64, 157, 211)33%), linear-gradient(110deg, #C5E7D7 34%, #88d8b0 34%);
	background-size: 400%;
	 -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}
.knockout{
		animation: Gradient 5s ease infinite;
		-webkit-animation: Gradient 15s ease infinite;
		-moz-animation: Gradient 5s ease infinite;
}

@-webkit-keyframes Gradient {
	0% {
		background-position: 30% 50%
	}
	50% {
		background-position: 25% 50%
	}
	100% {
		background-position: 30% 50%
	}
	
}

.main{
	width: 500px;
	height: 800px;
	margin-left: 40%;
	margin-right:40%;
	margin-top: 10%;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
    background: linear-gradient(110deg, #db90fd 33%, rgb(64, 157, 211)33%), linear-gradient(110deg, #C5E7D7 34%, #88d8b0 34%);
}
