.search_main {
    display: flex;
    flex-direction: row;
    gap: 10px;
    border: 1px solid #d1d3ce75;
    border-radius: 20px;
    padding: 20px;
    margin: 15px;
    align-items: center;
}

.search_form {
    border-radius: 20px;
    padding-inline: 20px;
    font-family: sans-serif;
    font-size: 1.3rem;
    background-color: #d1d3ce75;
    border: 0px;
    width: 630px;
    height: 45px;
    text-align: center;
}

.search_form:hover {
  color: gray;
  border: 0px solid rgb(198,198,198);
  background: #cfcfcf75 linear-gradient(#cfcfcf75, #cfcfcf75);
  box-shadow: 0 1px 2px rgba(0,0,0,.1);
}

.search_form:active {
  color: rgb(51,51,51);
  border: 0px solid rgb(204,204,204);
  background: white linear-gradient(white, white);
  /*box-shadow: 0 1px 2px rgba(0,0,0,.1) inset;*/
}

.search_form:focus {
  color: gray;
  border: 0px solid rgb(204,204,204);
  background: white linear-gradient(white, white);
  border-color: #d1d3ce75;
  border: 0px white;
  outline-color: #d1d3ce75;
  /*box-shadow: 0 1px 2px rgba(0,0,0,.1) inset;*/
}


.search_button {
    display: flex;
    border-radius: 20px;
    background-color: #d1d3ce75;
    align-items: center;
    justify-content: center;
    transition: all .218s ease 0s;
    border: 0;
    font-family: sans-serif;
    font-size: 16px;
    width: 180px;
    height: 45px;
}

.search_button:hover {
  color: rgb(24,24,24);
  border: 0px solid rgb(198,198,198);
  background: #cfcfcf75 linear-gradient(#cfcfcf75, #cfcfcf75);
  box-shadow: 0 1px 2px rgba(0,0,0,.1);
}

.search_button:active {
  color: rgb(51,51,51);
  border: 0px solid rgb(204,204,204);
  background: rgb(238,238,238) linear-gradient(rgb(238,238,238), rgb(224,224,224));
  box-shadow: 0 1px 2px rgba(0,0,0,.1) inset;
}

.tags {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
}

.tags_place {
    display: flex;
    flex-direction: row;
}

@media (max-width: 900px) {
    .search_button {
        display: flex;
        border-radius: 20px;
        background-color: #d1d3ce75;
        align-items: center;
        justify-content: center;
        transition: all .218s ease 0s;
        border: 0;
        font-family: sans-serif;
        font-size: 35px;
        width: 280px;
        height: 85px;
    }
    .search_form {
        border-radius: 20px;
        padding-inline: 20px;
        font-family: sans-serif;
        font-size: 2.3rem;
        background-color: #d1d3ce75;
        border: 0px;
        width: 435px;
        height: 85px;
        text-align: center;
    }
    .number_content_green {
        border-radius: 20px;
        display: flex;
        flex-direction: column;
        width: 280px;
        height: 280px;
        background-color: #1cca20;
        align-items: center;
        justify-content: center;
    }
    .number_font_white {
        font-size: 10rem;
        font-family: sans-serif;
        font-weight: bold;
        color: white;
    }
}
