.button1 {
    background-color: skyblue;
    /* Green */
    color: black;
    padding: 20px 40px;
    text-align: center;
    display: inline-block;
    font-size: 15px;
    margin-left: 30px;
}

#errorMsg{
    color:red;
    background-color: #ffb3d9;
    
}

.search-container {
    margin-top: 30px;
    margin-left: 50px;
    /* float: right; */
}


.alertError {
    background-color: rgb(240, 168, 168, 50);
    width: 700px;
}

#quickSearch {
    background-color: lightcoral;
    color: black;
    width: 250px;
    height: 30px;
}

.input__field {
    outline: 0;
    border-width: 0 0 2px;
    border-color: black;
}

.center {
    margin: auto;
    width: 50%;
    border: 3px solid green;
    padding: 10px;
}

.container {
    /* display: flex; */
    margin: 0 auto;
    position: relative;
    /* display: block; */
    /* text-align: center; */
    /* width: 100%; */
    /* overflow: hidden; */
}

.box {
    /* width: 20%; */
    /* height: 100px; */
    vertical-align:top !important;
    display: inline-block;
    position: relative;
}

.resize5 {
    width: 220px;
    height: auto;
}

.resize3 {
    width: 300px;
    height: auto;
}

.resize1 {
    width: 500px;
    height: 500px;
}


/* Style the Image Used to Trigger the Modal */
#myImg {
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
  }
  
  #myImg:hover {opacity: 0.7;}
  
  /* The Modal (background) */
  .modal {
    color:pink;  
    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,0.1); /* Fallback color */
    background-color: rgba(0,0,0,0.9); /* Black w/ opacity  */
  }
  
  /* Modal Content (Image) */
  .modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
  }
  
  
  /* Add Animation - Zoom in the Modal */
  .modal-content, #caption {
    animation-name: zoom;
    animation-duration: 0.6s;
  }
  
  @keyframes zoom {
    from {transform:scale(0)}
    to {transform:scale(1)}
  }
  
  /* The Close Button */
  .close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
  }
  
  .close:hover,
  .close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
  }
  
  /* 100% Image Width on Smaller Screens */
  @media only screen and (max-width: 700px){
    .modal-content {
      width: 100%;
    }
  }

.loader {
    margin-top: 30px;
    border: 16px solid #f3f3f3;
    /* Light grey */
    border-top: 16px solid #3498db;
    /* Blue */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

-webkit-animation: spin 2s linear infinite;

/* Safari */

animation: button-loading-spinner 1s ease infinite;