:root {
  --gradient: linear-gradient(to left top, #DD2476 10%, #FF512F 90%) !important;
}

.card {
  background: #222;
    border: none;
    color: rgb(255 255 255);
    margin-bottom: 2rem;
    border-radius: 9px !important;
    max-width: 22vw;
}

@media screen and (max-width: 472px) {
	.card {
		min-width: 80vw;
	}
}
@media screen and (max-width: 990px) {
  .container{
    max-width: 765px;
  }
	.card {
		max-width: 28vw;
	}
}
button.modalbutton {
  font-weight: 600;
  border: none;
  border-image-slice: 1;
  background: var(--gradient) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  border-image-source: var(--gradient) !important;
  text-decoration: none;
  transition: all .5s ease;
  padding: 1vh;
  border-radius: 25px;
}

button.modalbutton:hover, button.modalbutton:focus {
      background: var(--gradient) !important;
  -webkit-background-clip: none !important;
  -webkit-text-fill-color: #fff !important;
  box-shadow: #222 1px 0 10px;
  border: none;
  text-decoration: none;
  padding: 1vh;
  border-radius: 25px;
}
.modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 1;
  padding-top: 20vh;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.4);
}
.modal-content {
  position: relative;
    background-color: #fefefe;
    color: #000;
    margin: auto;
    padding: 0;
    border: none;
    width: 80%;
    box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%), 0 6px 20px 0 rgb(0 0 0 / 19%);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s;
}

@-webkit-keyframes animatetop {
  from {top:-300px; opacity:0}
  to {top:0; opacity:1}
}
@keyframes animatetop {
  from {top:-300px; opacity:0}
  to {top:0; opacity:1}
}
.close {
  color: white;
  float: right;
  font-size: 28px;
  font-weight: bold;
  opacity: 100%;
}
.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}
.modal-header {
  padding: 2px 16px;
  background-color: #e96e65de;
  color: rgb(0, 0, 0);
  
}
.modal-body{
  padding: 2px 16px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-content: center;
}
.liveSearchBar{
  display: flex;
justify-content: center;
flex-wrap: wrap;
}
.liveSearchBar, .liveSearchBar li .search{
margin:0;
padding:0;
list-style:none;
}
.liveSearchBar, .liveSearchBar li .search a{
color:rgb(0, 0, 0) !important;
text-decoration:none;
}
a{
color: black;
}
#live-search fieldset{
border:0;
padding-left:0;
}
:focus{
outline:none;
}
.text-input{
height: 7vh;
background: none;
border: 2px solid #ffffff;
padding: 2px;
font-family: sans-serif;
font-size: 20px;
color: rgb(0, 0, 0);
margin-left: 1vw;
margin-right: 1vw;
text-align: center;
max-width: 70vw;
border-bottom-left-radius: 10px;
border-top-right-radius: 10px;
}
.search{
margin: 3vh;
padding: 3vh;
}
.symp{
  max-width: 20vw;
}
.prec{
  max-width: 20vw;
}
@media screen and (max-width: 600px) {
  .modal-body{
    flex-direction: column;
  }
  .symp{
    max-width: 100%;
  }
  .prec{
    max-width: 100%;
  }
	iframe {
		max-width: 65vw;
    max-height: 80vh

	}
}