/* Reset Bootstrap 5 button styles */
.btn, .btn-primary, .btn-danger, .btn-success, .btn-info, .btn-warning,
.btn-large, .btn-small, .btn-mini, .btn-group > .btn {
  all: unset;
}

/* Base button style (Bootstrap 2) */
.btn {
  display: inline-block;
  padding: 4px 10px 4px;
  margin-bottom: 0;
  font-size: 13px;
  line-height: 20px;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  color: #333;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
  background-color: #f5f5f5;
  background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);
  background-repeat: repeat-x;
  border: 1px solid #bbb;
  border-color: #e6e6e6 #e6e6e6 #bfbfbf;
  border-bottom-color: #a2a2a2;
  border-radius: 4px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: none;
}

/* Button colors */
.btn-primary {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #28e4ff;
  background-image: linear-gradient(to bottom, #28e4ff, #007cbc);
  border-color: #007cbc #007cbc #007cbc;
}

.btn-danger {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #da4f49;
  background-image: linear-gradient(to bottom, #ee5f5b, #bd362f);
  border-color: #bd362f #bd362f #802420;
}

.btn-success {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #5bb75b;
  background-image: linear-gradient(to bottom, #62c462, #51a351);
  border-color: #51a351 #51a351 #387038;
}

.btn-info {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #49afcd;
  background-image: linear-gradient(to bottom, #5bc0de, #2f96b4);
  border-color: #2f96b4 #2f96b4 #1f6377;
}

.btn-warning {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #faa732;
  background-image: linear-gradient(to bottom, #fbb450, #f89406);
  border-color: #f89406 #f89406 #ad6704;
}

/* Button sizes */
.btn-large {
  padding: 9px 14px;
  font-size: 15px;
  border-radius: 5px;
}

.btn-small {
  padding: 2px 10px;
  font-size: 11.9px;
  border-radius: 3px;
}

.btn-mini {
  padding: 0 6px;
  font-size: 10.5px;
  border-radius: 3px;
}

/* Button states */
.btn:hover,
.btn:focus {
  color: #333;
  text-decoration: none;
  background-color: #e6e6e6;
  background-position: 0 -15px;
  -webkit-transition: background-position 0.1s linear;
  -moz-transition: background-position 0.1s linear;
  -ms-transition: background-position 0.1s linear;
  -o-transition: background-position 0.1s linear;
  transition: background-position 0.1s linear;
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active, .btn-primary.disabled, .btn-primary[disabled] {
  background-color: #05c;
}

.btn-success:hover, .btn-success:focus, .btn-success:active, .btn-success.active, .btn-success.disabled, .btn-success[disabled] {
  background-color: #51a351;
}

.btn-danger:hover, .btn-danger:focus, .btn-danger:active, .btn-danger.active, .btn-danger.disabled, .btn-danger[disabled] {
  background-color: #da4f49;
}

.btn-info:hover, .btn-info:focus, .btn-info:active, .btn-info.active, .btn-info.disabled, .btn-info[disabled] {
  background-color: #49afcd;
}

.btn-primary, .btn-primary:hover, .btn-warning, .btn-warning:hover, .btn-danger, .btn-danger:hover, .btn-success, .btn-success:hover, .btn-info, .btn-info:hover, .btn-inverse, .btn-inverse:hover {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-danger:hover,
.btn-danger:focus,
.btn-success:hover,
.btn-success:focus,
.btn-info:hover,
.btn-info:focus,
.btn-warning:hover,
.btn-warning:focus {
  color: #fff;
  background-position: 0 -15px;
}

.btn:active,
.btn.active {
  background-image: none;
  outline: 0;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
}

.btn.disabled,
.btn[disabled] {
  cursor: default;
  background-image: none;
  opacity: 0.65;
  box-shadow: none;
  text-shadow: none;
}

body {
  font-family: "MyriadPro", "Trebuchet MS", Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 15px;
  color: #555555;
}

.form-control {
  border: 1px solid #CCCCCC;
  border-radius: 3px 3px 3px 3px;
  color: #666666;
  display: inline-block;
  font-size: 13px;
  line-height: 18px;
  padding: 4px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) inset;
}

.form-select {
  display: block;
  width: 100%;
  padding: 4px;
  font-size: 13px;
  line-height: 1.42857143;
  color: #666666;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 3px 3px 3px 3px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
.form-select:focus {
  border-color: #66afe9;
  outline: 0;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}

a {
  color: #11B4DE;
  text-decoration: none;
}
a:hover {
  color: #005580;
  text-decoration: underline;
}

.btn-lg {
  padding: 9px 14px;
  font-size: 15px;
  line-height: normal;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: inherit;
  font-weight: bold;
  color: inherit;
  text-rendering: optimizelegibility;
}

h3 {
  font-size: 18px;
  line-height: 27px;
}

hr {
  background: #eee;
  height: 1px;
  width: 100%;
  border: 0;
  opacity: 1;
}

.help-block {
  font-size: 12px;
  color: red;
}

.nav-tabs .nav-link {
  color: #555555;
}
.nav-tabs .nav-link.active {
  color: #11B4DE;
}

.form-control {
  box-shadow: none !important;
}
.form-control:read-only {
  background-color: #eee;
}

.nav-pills .nav-link {
  display: inline-block;
  padding: 4px 10px 4px;
  margin-bottom: 0;
  font-size: 13px;
  line-height: 20px;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  color: #333;
  background-repeat: repeat-x;
  border-radius: 4px;
  transition: none;
  box-shadow: none;
}
.nav-pills .nav-link.active {
  color: #fff;
  background-color: #49afcd;
  background-image: linear-gradient(to bottom, #5bc0de, #2f96b4);
  border-color: #2f96b4 #2f96b4 #1f6377;
}

.header {
  padding-top: 30px;
}
.header .login-form-text {
  text-transform: uppercase;
  font-size: 16px;
  text-align: right;
  color: #0A928A;
}
.header .control-group {
  margin-bottom: 18px;
}
.header .control-group .form-control {
  width: 220px;
}
.header #login-error-alert {
  max-width: 430px;
  text-align: center;
  margin: 0 0 0 auto;
  font-size: 13px;
  padding: 6px;
}
.header .site-login {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.header .welcome-main h4 {
  font-size: 15px;
}

.site-title {
  margin-bottom: 30px;
}
.site-title h1 {
  text-align: center;
  margin: 40px 0 20px;
  color: #EE7216;
  font-size: 24px;
  line-height: 26px;
}
.site-title .location, .site-title .date {
  font-size: 18px;
  line-height: 27px;
}

.welcome h3 {
  margin-bottom: 10px;
}
.welcome .organizers {
  margin-top: 40px;
}
.welcome .organizers .organizer-item {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  margin: 10px 20px;
}

.information-participants .material-links {
  color: #000;
  width: 275px;
  margin: 0 auto 60px;
  text-align: center;
}
.information-participants .material-links a {
  color: #000;
  display: flex;
  align-items: center;
  margin-top: 10px;
}
.information-participants .material-links a div {
  min-width: 50px;
  text-align: center;
  margin-right: 10px;
}
.information-participants .peculiarities {
  margin-top: 80px;
}

.contacts {
  margin: 40px auto 20px;
}
.contacts a {
  display: flex;
  align-items: center;
  color: #000;
  margin-bottom: 60px;
  width: 250px;
  text-align: left;
}
.contacts a div {
  margin-right: 12px;
  min-width: 20px;
}

#register .terms {
  height: 162px;
  overflow: auto;
  border: 1px solid #CCCCCC;
  border-radius: 3px 3px 3px 3px;
  display: block;
  font-size: 13px;
  margin-top: 24px;
  margin-bottom: 10px;
  padding: 15px;
}
#register label {
  font-size: 13px;
  font-weight: normal;
  line-height: 18px;
  margin-bottom: 5px;
}
#register .information-participants .form-group {
  margin-bottom: 30px;
}
#register .information-company .form-group {
  margin-bottom: 9px;
}
#register .table td, #register .table tr, #register .table th {
  border-color: #000;
  color: #555555;
}
#register .table td {
  padding: 5px;
}
#register .info_nmo {
  color: #017FBE;
}

.pay-tab .table td, .pay-tab .table tr, .pay-tab .table th {
  border-color: #000;
  color: #555555;
}
.pay-tab .table td {
  padding: 5px;
}

.tab-certificate .form-header {
  padding: 20px;
  margin-top: 18px;
  margin-bottom: 18px;
  background-color: #f5f5f5;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
.tab-certificate .control-label {
  font-size: 13px;
}
.tab-certificate div[role=radiogroup] label {
  display: inline-flex;
  align-items: center;
  margin-right: 0.5rem;
  font-size: 13px;
}
.tab-certificate div[role=radiogroup] label input {
  margin-right: 0.2rem;
}

#users table {
  font-size: 13px;
  --bs-table-striped-bg: #f9f9f9;
}