/* The Modal (background) */
.modalA {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  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 */
  z-index: 5;
}

/* Modal Content/Box */
.modalA-content {
  background-color: black;
  margin: 15% auto; /* 15% from the top and centered */
  padding: 20px;
  border: 6px solid red;
  width: 80%; /* Could be more or less, depending on screen size */
  z-index: 5;
}

/* The Close Button */
.close {
  color: red!important;
  float: right;
  font-size: 28px;
  font-weight: bold;
  opacity: 1!important;
}

.close:hover,
.close:focus {
  color: yellow;
  text-decoration: none;
  cursor: pointer;
}

.button_pop
{
    font-style: italic;
    border: none;
    text-decoration: underline;
    background-color: transparent;
    color: red;
    font-weight: bold;
}

.card5 {
    background-color: black;
    z-index: 5;
  }

.search-box1{
  width: fit-content;
  height: fit-content;
  position: relative;
}

.input-search1{
  height: 50px;
  width: 50px;
  border-style: none;
  padding: 10px;
  font-size: 18px;
  letter-spacing: 2px;
  outline: none;
  border-radius: 25px;
  transition: all .5s ease-in-out;
  /*background-color: #22a6b3;*/
  background: transparent;
  padding-right: 40px;
  color:yellow;
}
.input-search1::placeholder{
  color:rgba(255,255,255,.5);
  font-size: 18px;
  letter-spacing: 2px;
  font-weight: 100;
}
.btn-search1{
  width: 50px;
  height: 50px;
  border-style: none;
  font-size: 20px;
  font-weight: bold;
  outline: none;
  cursor: pointer;
  border-radius: 50%;
  position: absolute;
  right: 0px;
  color:#ffffff ;
  background-color:transparent;
  pointer-events: painted;  
}
.btn-search1:focus ~ .input-search1{
  width: 300px;
  border-radius: 0px;
  /*background-color: #f3f56e;*/
  /*border-bottom:1px solid rgba(255,255,255,.5);*/
  border-bottom: 1px solid #ffcc00;
  transition: all 500ms cubic-bezier(0, 0.110, 0.35, 2);
}
.input-search1:focus{
  width: 300px;
  border-radius: 0px;
  /*background-color: transparent;*/
  border-bottom:1px solid rgba(255,255,255,.5);
  /*border-bottom: 1px solid #ffcc00;*/
  transition: all 500ms cubic-bezier(0, 0.110, 0.35, 2);
}

form.example input[type=text] {
  padding: 10px;
  font-size: 17px;
  border: 1px solid grey;
  float: left;
  width: 80%;
  background: #f1f1f1;
}

form.example button {
  float: left;
  width: 20%;
  padding: 10px;
  background: #2196F3;
  color: white;
  font-size: 17px;
  border: 1px solid grey;
  border-left: none;
  cursor: pointer;
}

form.example button:hover {
  background: #0b7dda;
}

form.example::after {
  content: "";
  clear: both;
  display: table;
}
