@charset "UTF-8";

#calculator_form
{
 position: relative;
 display: none;
}

.companies
{
 display: flex;
 width: 100%;
 gap: 15px;
 margin-top: 0;
 margin-left: 0;
 margin-right: 0;
 margin-bottom: 30px;
 flex-direction: column
}

.company_item
{
 display: flex;
 width: 100%;
 padding: 20px;
 border: 1px solid #CCC;
 border-radius: 10px;
 box-sizing: border-box;
 align-items: center;
 justify-content: space-between
}

.company_item p
{
 font-size: 1rem;
 margin: 0
}

.company_info
{
 width: 50%
}

.company_price
{
 display: flex;
 width: 50%;
 align-items: center;
 justify-content: flex-end
}

.company_price p
{
 font-size: 1.875em;
 font-weight: bold;
 padding-top: 0;
 padding-left: 0;
 padding-right: 30px;
 padding-bottom: 0;
 color: #1D3D91
}

.company_button
{
 font-family: 'Roboto', Helvetica, sans-serif;
 font-size: 0.875rem;
 font-weight: 400;
 color: #FFF !important;
 text-transform: uppercase;
 padding-top: 8px;
 padding-left: 26px;
 padding-right: 26px;
 padding-bottom: 8px;
 margin: 0;
 background: #1D3D91;
 border: 0;
 border-radius: 5px;
 text-decoration: none !important;
 appearance: none;
 cursor: pointer
}

@media screen and (max-width: 780px)
{
 .company_button
 {
  font-size: 0.813rem;
  font-weight: 500;
  padding-top: 10px;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 10px;
  white-space: break-spaces
 }
}

@media screen and (max-width: 480px)
{
 .company_item
 {
  padding: 10px;
  flex-direction: column
 }

 .company_info
 {
  display: flex;
  width: 100%;
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 30px;
  justify-content: center
 }
 
 .company_price
 {
  width: 100%;
  justify-content: center
 }
}