.sogl {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10000;
  box-sizing: border-box;
  padding: 22px 20px;
  background: #ffffff;
  border-top: 1px solid #dbdbdb;
  box-shadow: 0 -8px 24px rgba(68, 85, 111, 0.16);
  transition: 0.5s;
}

.sogl .cont {
  box-sizing: border-box;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}

.sogl .cont p {
  margin: 0;
  max-width: 920px;
  color: #44556F;
  font-family: Roboto, Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
  text-align: left;
}

.sogl .cont p a {
  color: #01579b;
  font-size: inherit;
  font-weight: 500;
  line-height: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.sogl .cont p a:hover {
  text-decoration: none;
}

.sogl .cont .button {
  flex: 0 0 auto;
  box-sizing: border-box;
  min-width: 164px;
  height: 46px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #01579b;
  border: 1px solid #01579b;
  border-radius: 2px;
  color: #ffffff;
  font-family: Roboto, Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.2s, border-color 0.2s;
}

.sogl .cont .button:hover {
  background: #004686;
  border-color: #004686;
  color: #ffffff;
}

.sogl.invise {
  display: none !important;
}

@media (max-width: 767px) {
  .sogl {
    padding: 18px 16px;
  }

  .sogl .cont {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .sogl .cont p {
    max-width: none;
    font-size: 13px;
    line-height: 1.45;
  }

  .sogl .cont .button {
    width: 100%;
    min-width: 0;
  }
}
