#success_message{ display: none;}
#error_message{ display: none;}
#recaptcha_message{ display: none;}
.hidden-for-app{display: none;}

.vertical-center {
  min-height: 100%;  /* Fallback for browsers do NOT support vh unit */
  min-height: 100vh; /* These two lines are counted as one :-)       */
  
  display: flex;
  align-items: center;
}

.g-recaptcha{
  margin-bottom: 15px;
}

body{
  overflow-x: hidden;
  min-height: 100vh;
  min-width: 100vw;
  font-family: "Ubuntu", sans-serif;
  background-image: url(./img/bg.jpeg);
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}

.container{
  width: auto !important;
  padding: 20px 0 !important;
  max-width: 100%;
}
.pyrusExternalWebForm__title, .pyrusExternalWebForm__title_comfortable{
  text-align: center !important;
}

#formHolder, .pyrusExternalWebForm__saveButton, .button__content {
  border-radius: 20px;
}
.container{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.container > div{
  max-width: 100%;
}

a, a:hover, a:focus{
  text-decoration: none;
  color: inherit;
}

.logo{
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 40px;
  border-radius: 50%;
  background-color: #fff;
  padding: 20px;
  height: 150px;
  width: 150px;
}
.maintenance{
  background-color: #fff;
  color: black;
  font-weight: bold;
  border-radius: 5px;
  text-align: center;
  padding: 20px;
}
.back{
  display: inline-block;
  border: 0;
  border-radius: 2px;
  background-color: #ff6000;
  margin-bottom: 30px;
  padding: 0 15px;
  line-height: 38px;
  font-size: 16px;
  color: white;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.back:hover{
  color: white;
}

.request-form{
  background-color: rgba(255, 96, 0, .8);
  border-radius: 10px;
  /* padding: 15px 20px; */
  padding: 55px 55px 37px;
}
h2, label{
  color: white;
}
h2{
  max-width: 80%;
  margin: 30px auto;
  text-align: center;
}
textarea{
  resize: none;
}
.help-block, .has-success .control-label, .has-error .control-label{
  color: white !important;
}

input[type=checkbox]{
  min-width: 20px;
  height: 20px;
  margin: 0 10px 0 0;
}

.flex{
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
}

.el-button{
  display: inline-block;
  line-height: 1;
  min-height: 40px;
  white-space: nowrap;
  background: #eee;
  border: 1px solid #dcdfe6;
  color: #606266;
  -webkit-appearance: none;
  text-align: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: 0;
  margin: 0;
  -webkit-transition: .1s;
  transition: .1s;
  font-weight: 500;
  padding: 12px 20px;
  font-size: 14px;
  border-radius: 4px;
  height: 50px;
  padding: 0 20px;
  border-radius: 25px;
  width: 150px;
  font-size: 16px;
}
.el-button:hover{
  border: 1px solid #dcdfe6;
  background: #fff;
  outline: none;
  color: #606266;
}

.container > .formsList{
  padding: 0 20px;
  display: flex;
  max-width: 1400px;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  align-content: center;
}
.formsList__element{
  transition: all .3s ease-in-out;
  flex: 1 1 0px;
  border-radius: 10px;
  min-width: 300px;
  max-width: 100%;
  text-decoration: none;
  display: block;
  background-color: rgba(255, 255, 255, 1);
  color:black;
  padding: 15px 20px;
}
.formsList__element:hover {
  text-decoration: none;
}
.formsList__element:hover .formsList__element-name, .formsList__element:focus .formsList__element-name{
  text-decoration: none;
  color:rgba(255, 96, 0, .8);
}
.op{
  background-color: rgba(255, 255, 255, .7);
}
.formsList__element-name{
  display: block;
  font-weight: bold;
  text-align: center;
  font-size: 18px;
}
.formsList__element-description{
  padding-top: 15px;
  overflow: hidden;
  display: block;
  text-align: center;
}

@media screen and (min-width: 470px) {
  .formsList__element{
    min-width: 400px;
  }
}

