﻿@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;400;800&display=swap");
body {
  margin: 0;
  background-color: #fff;
  color: #131313;
  font-family: "Poppins", sans-serif;
  font-size: 10pt;
}

.sections,
html,
body {
  min-height: 100%;
  margin: 0;
}

.sections {
  display: flex;
  flex-flow: column;
}

.section.fill {
  flex: 1;
  overflow: auto;
}

::-webkit-scrollbar {
  -webkit-appearance: none;
}

::-webkit-scrollbar:vertical {
  width: 7px;
}

::-webkit-scrollbar:horizontal {
  height: 7px;
}

::-webkit-scrollbar-thumb {
  background-color: #808080;
  border-radius: 4px;
  border: 1px solid #f0f0f0;
}

::-webkit-scrollbar-track {
  border-radius: 7px;
  background-color: #f0f0f0;
}

::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  font-style: italic;
  color: #b0b0b0;
  opacity: 1; /* Firefox */
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  font-style: italic;
  color: #b0b0b0;
}

::-ms-input-placeholder {
  /* Microsoft Edge */
  font-style: italic;
  color: #b0b0b0;
}

/***** top strip *****/

.top-strip {
  display: flex;
  padding: 3px;
  flex-direction: row;
  max-width: 1200px;
  margin: 0 auto;
}

.top-strip .mobile-logo {
  width: 80px;
  min-width: 80px;
  height: 100px;
  background: url(images/logo-srnec.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto;
}

.top-strip .title {
  font-family: "Poppins", sans-serif;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-left: 20px;
  justify-items: center;
  font-weight: 200;
}

@media screen and (max-width: 450px) {
  .top-strip .title {
    flex-direction: column;
    justify-content: center;
  }
  .top-strip .title .second {
    width: 100%;
    justify-content: center;
  }
}

.top-strip .title .first {
  font-size: 20px;
  text-align: center;
  color: #2a4d2a;
  display: flex;
  align-items: center;
  font-family: "Poppins", sans-serif;
}

.top-strip .title .second {
  font-size: 20px;
  text-align: center;
  color: #2a4d2a;
  display: flex;
  align-items: center;
  font-family: "Poppins", sans-serif;
}

/***** member strip *****/

.member-strip {
  margin-top: 20px;
  text-align: center;
  font-weight: bold;
  background: #fff;
  color: #131313;
  max-width: 420px;
  margin: 20px auto;
  border-radius: 15px;
  display: flex;
  flex-direction: row;
  padding: 20px 0;
}

.member-strip_title {
  color: #fff;
  margin: 20px auto 0 auto;
  font-size: 20px;
  text-align: center;
}

.member-strip .name {
  font-size: 16pt;
}

.member-strip .info {
  font-size: 12px;
}

.member-strip .info .yes {
  color: #006000;
}

.member-strip .info .no {
  color: #a02020;
}

.member-strip .member-strip_inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-left: 40px;
  text-align: left;
}

.member-strip_inner .yes {
  color: #006000;
}
.member-strip_inner .no {
  color: #a02020;
}

.member-strip_icon-holder {
  display: flex;
  justify-content: center;
}

.membership-icon {
  min-width: 50px;
  min-height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  border-radius: 7px;
  margin-right: 40px;
  margin-top: auto;
  margin-bottom: auto;
}

.membership-icon.yes {
  background: #006000;
}
.membership-icon.no {
  background: #a02020;
}

@media screen and (max-width: 350px) {
  .member-strip .name {
    font-size: 13pt !important;
  }

  .member-strip .info {
    font-size: 10pt !important;
  }
}

/***** button section *****/

.button-section {
  margin-top: 20px;
  margin-left: 20px;
  margin-right: 20px;
  max-width: 420px;
  border: 2px solid #bbbaba;
  border-radius: 15px;
  margin: 20px auto;
  overflow: hidden;
}

.button-section .button {
  height: 60px;
  width: 100%;
  background-color: #ebebeb;
  border: none;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: bold;
  color: #131313;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
}

.button-section .button.active {
  background-color: #ebebeb;
}

.button-section .content {
  display: none;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}

.button.more-less {
  font-size: 12px;
  height: auto;
  padding: 10px;
  background: #ebebeb;
  color: #615d5d;
}

.button-section.open .button.more-less {
  background: #fff;
  color: #615d5d;
}

.button-section .less-info,
.button-section .more-info {
  display: flex;
  align-items: center;
  flex-direction: flex-row;
  gap: 10px;
}

.button-section .less-info {
  display: none;
}
.button-section.open .less-info {
  display: flex;
}
.button-section .more-info {
  display: flex;
}
.button-section.open .more-info {
  display: none;
}

@media screen and (max-width: 350px) {
  .button-section .button {
    font-size: 13pt;
  }
}

/***** bottom strip *****/

.search-strip {
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
}

.search-strip .input {
  padding-left: 20px;
  flex: 1;
  padding-right: 30px;
}

.search-strip .input input {
  border: solid 2px black;
  background-color: white;
  color: black;
  font-size: 14pt;
  font-weight: bold;
  height: 40px;
  padding: 0px 8px 0px 8px;
  width: 100%;
}

.search-strip .button {
  padding-right: 20px !important;
}

.search-strip .button button {
  height: 40px;
  border: none;
  background-color: #4c4324;
  color: white;
  font-weight: bold;
  font-size: 14pt;
}

.search-strip .result {
  font-weight: bold;
  font-size: 14pt;
  color: white;
  display: inline-block;
  padding-top: 7px;
  padding-left: 20px;
  padding-right: 20px;
}

@media screen and (max-width: 350px) {
  .search-strip .input input {
    font-size: 12pt;
  }

  .search-strip .button button {
    font-size: 12pt;
  }

  .search-strip .result {
    font-size: 12pt;
  }
}

/***** kynologie *****/

.list-section {
  margin-top: 15px;
  font-size: 11pt;
  background-color: white;
  color: black;
}

.list-section .line {
  padding-top: 2px;
  padding-bottom: 2px;
  text-align: left;
  padding-left: 20px;
}

.list-section .name {
  font-weight: bold;
  text-transform: uppercase;
  color: #74bc3b;
}

.list-section .item {
}

@media screen and (max-width: 350px) {
  .list-section {
    font-size: 9pt;
  }
}

.section.bg-helper {
  background-image: url(images/login-bg.png);
  background-repeat: no-repeat, repeat;
  background-size: cover;
  color: #fff;
  max-height: 250px;
  height: 250px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  border-radius: 15px;
  padding: 0 3px;
}
