.wg-form [class*=field--date] {
  position: relative;
}
.wg-form [class*=field--date] .bootstrap-datetimepicker-widget {
  position: absolute;
  z-index: 1000;
  top: 0;
  left: 0;
  margin-top: 10px;
  background-color: white;
  border: 1px solid #3D4651;
  border-radius: var(--input-border-radius, 5px);
}
.wg-form [class*=field--date] .bootstrap-datetimepicker-widget table th.prev, .wg-form [class*=field--date] .bootstrap-datetimepicker-widget table th.next {
  width: 40px;
}
.wg-form [class*=field--date] .bootstrap-datetimepicker-widget table th.prev span:before, .wg-form [class*=field--date] .bootstrap-datetimepicker-widget table th.next span:before {
  font-family: "fontello";
  font-size: 24px;
  line-height: 24px;
}
.wg-form [class*=field--date] .bootstrap-datetimepicker-widget table th.prev span:before {
  content: "\f104";
}
.wg-form [class*=field--date] .bootstrap-datetimepicker-widget table th.next span:before {
  content: "\f105";
}

.wg-form .field--file input[type=file] {
  display: none;
}
.wg-form .field--file .field__holder {
  position: relative;
}
.wg-form .field--file .field__holder input[type=text] {
  padding-right: 89px;
}
.wg-form .field--file .field__holder input[type=text][readonly] {
  background-color: white;
}
.wg-form .field--file .field__holder .wg-btn--small {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  bottom: 0;
  right: calc(5px + var(--input-border-radius) / 2);
  height: calc(var(--input-size, 30px) - 12px);
  padding: 0 14px;
  margin: auto;
}

.wg-form .field--grade {
  padding: 0 14px;
}
.wg-form .field--grade > label {
  margin-bottom: 0;
  padding: 0;
}
.wg-form .field--grade .scope {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 0;
  gap: 7px;
}
.wg-form .field--grade .grades {
  display: flex;
  border: 1px solid #6b737f;
  border-radius: var(--input-border-radius);
}
.wg-form .field--grade .grades label {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 14px 7px;
  border-left: 1px solid #6b737f;
  min-height: var(--input-size, 40px);
  box-sizing: border-box;
  cursor: pointer;
  margin: 0;
}
.wg-form .field--grade .grades label:first-child {
  border-left: 0;
}
.wg-form .field--grade .grades label:hover {
  background-color: var(--hover-color);
}
.wg-form .field--grade .grades label:has(input:checked) {
  background-color: currentColor;
}
.wg-form .field--grade .grades label span {
  color: #1A2129;
}
.wg-form .field--grade .grades label input {
  display: none;
}
.wg-form .field--grade[disabled] .grades {
  pointer-events: none;
  background-color: rgba(107, 115, 127, 0.5);
}
.wg-form .field--grade.field--error .grades {
  border-color: #F9213C;
}

.wg-form [class*=field--password] {
  position: relative;
}
.wg-form [class*=field--password] .eye-holder {
  position: relative;
  display: block;
}
.wg-form [class*=field--password] i[class*=icon-eye] {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: var(--input-size, 40px);
  height: var(--input-size, 40px);
  right: 0;
  bottom: 0;
  font-size: 16px;
  cursor: pointer;
  color: #26303A;
}
.wg-form [class*=field--password] i[class*=icon-eye]:hover {
  color: var(--hover-color);
}

.wg-form .field__message {
  display: block;
  padding: 10px;
  background-color: #F9213C;
  font-size: var(--font-size-infos);
  line-height: 140%;
  color: white;
}
.wg-form .field__message ul li {
  color: white;
}

.wg-form .field-spacer hr {
  margin: 28px 0;
  border-bottom: 1px solid var(--card-border-color);
}
.wg-form .field-spacer p {
  padding-top: 28px;
}
.wg-form .field-spacer p + hr {
  margin: 14px 0 28px;
}

.wg-view .dark .wg-form .field-spacer, .wg-view.dark .wg-form .field-spacer,
.wg-view [data-shade=dark] .wg-form .field-spacer,
.wg-view .widget-skin--dark .wg-form .field-spacer {
  color: white;
}

.wg-steps__map {
  position: relative;
  display: flex;
  margin: 28px auto;
}
.wg-steps__map:before, .wg-steps__map:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 0;
  top: 14px;
  height: 4px;
  width: 100%;
  border-radius: 2px;
  background: #EEE;
}
.wg-steps__map:after {
  top: 15px;
  width: calc(100% / var(--wg-steps-total) * (var(--wg-steps-current) + 1) - 100% / var(--wg-steps-total) / 2);
  height: 2px;
  background: var(--primary-color);
  transition-duration: 200ms;
}
.wg-steps__map span {
  flex: 1;
  position: relative;
  z-index: 1;
  padding-top: 32px;
  text-align: center;
  color: #1A2129;
  font-size: var(--font-size-small);
}
.wg-steps__map span:before, .wg-steps__map span:after {
  content: "";
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 28px;
  height: 28px;
  border-radius: 14px;
  margin: auto;
}
.wg-steps__map span:before {
  border: 1px solid #E1E7EC;
  background-color: white;
}
.wg-steps__map span:after {
  top: 2px;
  width: 26px;
  height: 26px;
  background-color: #EEE;
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  color: white;
  font-size: 10px;
  transition-duration: 200ms;
  transform: scale(0.6) rotate(-45deg);
}
.wg-steps__map[style*="--wg-steps-current: 0"] span:nth-child(-n+1)::after {
  background-color: var(--primary-color);
}
.wg-steps__map[style*="--wg-steps-current: 0"] span:nth-child(-n+0) {
  cursor: pointer;
}
.wg-steps__map[style*="--wg-steps-current: 0"] span:nth-child(-n+0)::after {
  transform: scale(1);
  background-color: #32E39B;
  content: "\e808";
}
.wg-steps__map[style*="--wg-steps-current: 0"] span:nth-child(-n+0):hover::after {
  background-color: var(--hover-color);
}
.wg-steps__map[style*="--wg-steps-total: 1; --wg-steps-current: 0;"]::after {
  width: 100%;
}
.wg-steps__map[style*="--wg-steps-total: 1; --wg-steps-current: 0;"].wg-steps__map--has-conclusion span::after {
  transform: scale(1) !important;
  background-color: #32E39B !important;
  content: "\e808" !important;
}
.wg-steps__map[style*="--wg-steps-current: 1"] span:nth-child(-n+2)::after {
  background-color: var(--primary-color);
}
.wg-steps__map[style*="--wg-steps-current: 1"] span:nth-child(-n+1) {
  cursor: pointer;
}
.wg-steps__map[style*="--wg-steps-current: 1"] span:nth-child(-n+1)::after {
  transform: scale(1);
  background-color: #32E39B;
  content: "\e808";
}
.wg-steps__map[style*="--wg-steps-current: 1"] span:nth-child(-n+1):hover::after {
  background-color: var(--hover-color);
}
.wg-steps__map[style*="--wg-steps-total: 2; --wg-steps-current: 1;"]::after {
  width: 100%;
}
.wg-steps__map[style*="--wg-steps-total: 2; --wg-steps-current: 1;"].wg-steps__map--has-conclusion span::after {
  transform: scale(1) !important;
  background-color: #32E39B !important;
  content: "\e808" !important;
}
.wg-steps__map[style*="--wg-steps-current: 2"] span:nth-child(-n+3)::after {
  background-color: var(--primary-color);
}
.wg-steps__map[style*="--wg-steps-current: 2"] span:nth-child(-n+2) {
  cursor: pointer;
}
.wg-steps__map[style*="--wg-steps-current: 2"] span:nth-child(-n+2)::after {
  transform: scale(1);
  background-color: #32E39B;
  content: "\e808";
}
.wg-steps__map[style*="--wg-steps-current: 2"] span:nth-child(-n+2):hover::after {
  background-color: var(--hover-color);
}
.wg-steps__map[style*="--wg-steps-total: 3; --wg-steps-current: 2;"]::after {
  width: 100%;
}
.wg-steps__map[style*="--wg-steps-total: 3; --wg-steps-current: 2;"].wg-steps__map--has-conclusion span::after {
  transform: scale(1) !important;
  background-color: #32E39B !important;
  content: "\e808" !important;
}
.wg-steps__map[style*="--wg-steps-current: 3"] span:nth-child(-n+4)::after {
  background-color: var(--primary-color);
}
.wg-steps__map[style*="--wg-steps-current: 3"] span:nth-child(-n+3) {
  cursor: pointer;
}
.wg-steps__map[style*="--wg-steps-current: 3"] span:nth-child(-n+3)::after {
  transform: scale(1);
  background-color: #32E39B;
  content: "\e808";
}
.wg-steps__map[style*="--wg-steps-current: 3"] span:nth-child(-n+3):hover::after {
  background-color: var(--hover-color);
}
.wg-steps__map[style*="--wg-steps-total: 4; --wg-steps-current: 3;"]::after {
  width: 100%;
}
.wg-steps__map[style*="--wg-steps-total: 4; --wg-steps-current: 3;"].wg-steps__map--has-conclusion span::after {
  transform: scale(1) !important;
  background-color: #32E39B !important;
  content: "\e808" !important;
}
.wg-steps__map[style*="--wg-steps-current: 4"] span:nth-child(-n+5)::after {
  background-color: var(--primary-color);
}
.wg-steps__map[style*="--wg-steps-current: 4"] span:nth-child(-n+4) {
  cursor: pointer;
}
.wg-steps__map[style*="--wg-steps-current: 4"] span:nth-child(-n+4)::after {
  transform: scale(1);
  background-color: #32E39B;
  content: "\e808";
}
.wg-steps__map[style*="--wg-steps-current: 4"] span:nth-child(-n+4):hover::after {
  background-color: var(--hover-color);
}
.wg-steps__map[style*="--wg-steps-total: 5; --wg-steps-current: 4;"]::after {
  width: 100%;
}
.wg-steps__map[style*="--wg-steps-total: 5; --wg-steps-current: 4;"].wg-steps__map--has-conclusion span::after {
  transform: scale(1) !important;
  background-color: #32E39B !important;
  content: "\e808" !important;
}
.wg-steps__map[style*="--wg-steps-current: 5"] span:nth-child(-n+6)::after {
  background-color: var(--primary-color);
}
.wg-steps__map[style*="--wg-steps-current: 5"] span:nth-child(-n+5) {
  cursor: pointer;
}
.wg-steps__map[style*="--wg-steps-current: 5"] span:nth-child(-n+5)::after {
  transform: scale(1);
  background-color: #32E39B;
  content: "\e808";
}
.wg-steps__map[style*="--wg-steps-current: 5"] span:nth-child(-n+5):hover::after {
  background-color: var(--hover-color);
}
.wg-steps__map[style*="--wg-steps-total: 6; --wg-steps-current: 5;"]::after {
  width: 100%;
}
.wg-steps__map[style*="--wg-steps-total: 6; --wg-steps-current: 5;"].wg-steps__map--has-conclusion span::after {
  transform: scale(1) !important;
  background-color: #32E39B !important;
  content: "\e808" !important;
}
.wg-steps__map[style*="--wg-steps-current: 6"] span:nth-child(-n+7)::after {
  background-color: var(--primary-color);
}
.wg-steps__map[style*="--wg-steps-current: 6"] span:nth-child(-n+6) {
  cursor: pointer;
}
.wg-steps__map[style*="--wg-steps-current: 6"] span:nth-child(-n+6)::after {
  transform: scale(1);
  background-color: #32E39B;
  content: "\e808";
}
.wg-steps__map[style*="--wg-steps-current: 6"] span:nth-child(-n+6):hover::after {
  background-color: var(--hover-color);
}
.wg-steps__map[style*="--wg-steps-total: 7; --wg-steps-current: 6;"]::after {
  width: 100%;
}
.wg-steps__map[style*="--wg-steps-total: 7; --wg-steps-current: 6;"].wg-steps__map--has-conclusion span::after {
  transform: scale(1) !important;
  background-color: #32E39B !important;
  content: "\e808" !important;
}
.wg-steps__map[style*="--wg-steps-current: 7"] span:nth-child(-n+8)::after {
  background-color: var(--primary-color);
}
.wg-steps__map[style*="--wg-steps-current: 7"] span:nth-child(-n+7) {
  cursor: pointer;
}
.wg-steps__map[style*="--wg-steps-current: 7"] span:nth-child(-n+7)::after {
  transform: scale(1);
  background-color: #32E39B;
  content: "\e808";
}
.wg-steps__map[style*="--wg-steps-current: 7"] span:nth-child(-n+7):hover::after {
  background-color: var(--hover-color);
}
.wg-steps__map[style*="--wg-steps-total: 8; --wg-steps-current: 7;"]::after {
  width: 100%;
}
.wg-steps__map[style*="--wg-steps-total: 8; --wg-steps-current: 7;"].wg-steps__map--has-conclusion span::after {
  transform: scale(1) !important;
  background-color: #32E39B !important;
  content: "\e808" !important;
}
.wg-steps__map[style*="--wg-steps-current: 8"] span:nth-child(-n+9)::after {
  background-color: var(--primary-color);
}
.wg-steps__map[style*="--wg-steps-current: 8"] span:nth-child(-n+8) {
  cursor: pointer;
}
.wg-steps__map[style*="--wg-steps-current: 8"] span:nth-child(-n+8)::after {
  transform: scale(1);
  background-color: #32E39B;
  content: "\e808";
}
.wg-steps__map[style*="--wg-steps-current: 8"] span:nth-child(-n+8):hover::after {
  background-color: var(--hover-color);
}
.wg-steps__map[style*="--wg-steps-total: 9; --wg-steps-current: 8;"]::after {
  width: 100%;
}
.wg-steps__map[style*="--wg-steps-total: 9; --wg-steps-current: 8;"].wg-steps__map--has-conclusion span::after {
  transform: scale(1) !important;
  background-color: #32E39B !important;
  content: "\e808" !important;
}
.wg-steps__map[style*="--wg-steps-current: 9"] span:nth-child(-n+10)::after {
  background-color: var(--primary-color);
}
.wg-steps__map[style*="--wg-steps-current: 9"] span:nth-child(-n+9) {
  cursor: pointer;
}
.wg-steps__map[style*="--wg-steps-current: 9"] span:nth-child(-n+9)::after {
  transform: scale(1);
  background-color: #32E39B;
  content: "\e808";
}
.wg-steps__map[style*="--wg-steps-current: 9"] span:nth-child(-n+9):hover::after {
  background-color: var(--hover-color);
}
.wg-steps__map[style*="--wg-steps-total: 10; --wg-steps-current: 9;"]::after {
  width: 100%;
}
.wg-steps__map[style*="--wg-steps-total: 10; --wg-steps-current: 9;"].wg-steps__map--has-conclusion span::after {
  transform: scale(1) !important;
  background-color: #32E39B !important;
  content: "\e808" !important;
}
.wg-steps__map[style*="--wg-steps-current: 10"] span:nth-child(-n+11)::after {
  background-color: var(--primary-color);
}
.wg-steps__map[style*="--wg-steps-current: 10"] span:nth-child(-n+10) {
  cursor: pointer;
}
.wg-steps__map[style*="--wg-steps-current: 10"] span:nth-child(-n+10)::after {
  transform: scale(1);
  background-color: #32E39B;
  content: "\e808";
}
.wg-steps__map[style*="--wg-steps-current: 10"] span:nth-child(-n+10):hover::after {
  background-color: var(--hover-color);
}
.wg-steps__map[style*="--wg-steps-total: 11; --wg-steps-current: 10;"]::after {
  width: 100%;
}
.wg-steps__map[style*="--wg-steps-total: 11; --wg-steps-current: 10;"].wg-steps__map--has-conclusion span::after {
  transform: scale(1) !important;
  background-color: #32E39B !important;
  content: "\e808" !important;
}
.wg-steps__map[style*="--wg-steps-current: 11"] span:nth-child(-n+12)::after {
  background-color: var(--primary-color);
}
.wg-steps__map[style*="--wg-steps-current: 11"] span:nth-child(-n+11) {
  cursor: pointer;
}
.wg-steps__map[style*="--wg-steps-current: 11"] span:nth-child(-n+11)::after {
  transform: scale(1);
  background-color: #32E39B;
  content: "\e808";
}
.wg-steps__map[style*="--wg-steps-current: 11"] span:nth-child(-n+11):hover::after {
  background-color: var(--hover-color);
}
.wg-steps__map[style*="--wg-steps-total: 12; --wg-steps-current: 11;"]::after {
  width: 100%;
}
.wg-steps__map[style*="--wg-steps-total: 12; --wg-steps-current: 11;"].wg-steps__map--has-conclusion span::after {
  transform: scale(1) !important;
  background-color: #32E39B !important;
  content: "\e808" !important;
}
.wg-steps__map[style*="--wg-steps-current: 12"] span:nth-child(-n+13)::after {
  background-color: var(--primary-color);
}
.wg-steps__map[style*="--wg-steps-current: 12"] span:nth-child(-n+12) {
  cursor: pointer;
}
.wg-steps__map[style*="--wg-steps-current: 12"] span:nth-child(-n+12)::after {
  transform: scale(1);
  background-color: #32E39B;
  content: "\e808";
}
.wg-steps__map[style*="--wg-steps-current: 12"] span:nth-child(-n+12):hover::after {
  background-color: var(--hover-color);
}
.wg-steps__map[style*="--wg-steps-total: 13; --wg-steps-current: 12;"]::after {
  width: 100%;
}
.wg-steps__map[style*="--wg-steps-total: 13; --wg-steps-current: 12;"].wg-steps__map--has-conclusion span::after {
  transform: scale(1) !important;
  background-color: #32E39B !important;
  content: "\e808" !important;
}
.wg-steps__map[style*="--wg-steps-current: 13"] span:nth-child(-n+14)::after {
  background-color: var(--primary-color);
}
.wg-steps__map[style*="--wg-steps-current: 13"] span:nth-child(-n+13) {
  cursor: pointer;
}
.wg-steps__map[style*="--wg-steps-current: 13"] span:nth-child(-n+13)::after {
  transform: scale(1);
  background-color: #32E39B;
  content: "\e808";
}
.wg-steps__map[style*="--wg-steps-current: 13"] span:nth-child(-n+13):hover::after {
  background-color: var(--hover-color);
}
.wg-steps__map[style*="--wg-steps-total: 14; --wg-steps-current: 13;"]::after {
  width: 100%;
}
.wg-steps__map[style*="--wg-steps-total: 14; --wg-steps-current: 13;"].wg-steps__map--has-conclusion span::after {
  transform: scale(1) !important;
  background-color: #32E39B !important;
  content: "\e808" !important;
}
.wg-steps__map[style*="--wg-steps-current: 14"] span:nth-child(-n+15)::after {
  background-color: var(--primary-color);
}
.wg-steps__map[style*="--wg-steps-current: 14"] span:nth-child(-n+14) {
  cursor: pointer;
}
.wg-steps__map[style*="--wg-steps-current: 14"] span:nth-child(-n+14)::after {
  transform: scale(1);
  background-color: #32E39B;
  content: "\e808";
}
.wg-steps__map[style*="--wg-steps-current: 14"] span:nth-child(-n+14):hover::after {
  background-color: var(--hover-color);
}
.wg-steps__map[style*="--wg-steps-total: 15; --wg-steps-current: 14;"]::after {
  width: 100%;
}
.wg-steps__map[style*="--wg-steps-total: 15; --wg-steps-current: 14;"].wg-steps__map--has-conclusion span::after {
  transform: scale(1) !important;
  background-color: #32E39B !important;
  content: "\e808" !important;
}
.wg-steps__map[style*="--wg-steps-current: 15"] span:nth-child(-n+16)::after {
  background-color: var(--primary-color);
}
.wg-steps__map[style*="--wg-steps-current: 15"] span:nth-child(-n+15) {
  cursor: pointer;
}
.wg-steps__map[style*="--wg-steps-current: 15"] span:nth-child(-n+15)::after {
  transform: scale(1);
  background-color: #32E39B;
  content: "\e808";
}
.wg-steps__map[style*="--wg-steps-current: 15"] span:nth-child(-n+15):hover::after {
  background-color: var(--hover-color);
}
.wg-steps__map[style*="--wg-steps-total: 16; --wg-steps-current: 15;"]::after {
  width: 100%;
}
.wg-steps__map[style*="--wg-steps-total: 16; --wg-steps-current: 15;"].wg-steps__map--has-conclusion span::after {
  transform: scale(1) !important;
  background-color: #32E39B !important;
  content: "\e808" !important;
}
.wg-steps__map[style*="--wg-steps-current: 16"] span:nth-child(-n+17)::after {
  background-color: var(--primary-color);
}
.wg-steps__map[style*="--wg-steps-current: 16"] span:nth-child(-n+16) {
  cursor: pointer;
}
.wg-steps__map[style*="--wg-steps-current: 16"] span:nth-child(-n+16)::after {
  transform: scale(1);
  background-color: #32E39B;
  content: "\e808";
}
.wg-steps__map[style*="--wg-steps-current: 16"] span:nth-child(-n+16):hover::after {
  background-color: var(--hover-color);
}
.wg-steps__map[style*="--wg-steps-total: 17; --wg-steps-current: 16;"]::after {
  width: 100%;
}
.wg-steps__map[style*="--wg-steps-total: 17; --wg-steps-current: 16;"].wg-steps__map--has-conclusion span::after {
  transform: scale(1) !important;
  background-color: #32E39B !important;
  content: "\e808" !important;
}
.wg-steps__map[style*="--wg-steps-current: 17"] span:nth-child(-n+18)::after {
  background-color: var(--primary-color);
}
.wg-steps__map[style*="--wg-steps-current: 17"] span:nth-child(-n+17) {
  cursor: pointer;
}
.wg-steps__map[style*="--wg-steps-current: 17"] span:nth-child(-n+17)::after {
  transform: scale(1);
  background-color: #32E39B;
  content: "\e808";
}
.wg-steps__map[style*="--wg-steps-current: 17"] span:nth-child(-n+17):hover::after {
  background-color: var(--hover-color);
}
.wg-steps__map[style*="--wg-steps-total: 18; --wg-steps-current: 17;"]::after {
  width: 100%;
}
.wg-steps__map[style*="--wg-steps-total: 18; --wg-steps-current: 17;"].wg-steps__map--has-conclusion span::after {
  transform: scale(1) !important;
  background-color: #32E39B !important;
  content: "\e808" !important;
}
.wg-steps__map[style*="--wg-steps-current: 18"] span:nth-child(-n+19)::after {
  background-color: var(--primary-color);
}
.wg-steps__map[style*="--wg-steps-current: 18"] span:nth-child(-n+18) {
  cursor: pointer;
}
.wg-steps__map[style*="--wg-steps-current: 18"] span:nth-child(-n+18)::after {
  transform: scale(1);
  background-color: #32E39B;
  content: "\e808";
}
.wg-steps__map[style*="--wg-steps-current: 18"] span:nth-child(-n+18):hover::after {
  background-color: var(--hover-color);
}
.wg-steps__map[style*="--wg-steps-total: 19; --wg-steps-current: 18;"]::after {
  width: 100%;
}
.wg-steps__map[style*="--wg-steps-total: 19; --wg-steps-current: 18;"].wg-steps__map--has-conclusion span::after {
  transform: scale(1) !important;
  background-color: #32E39B !important;
  content: "\e808" !important;
}
.wg-steps__map[style*="--wg-steps-current: 19"] span:nth-child(-n+20)::after {
  background-color: var(--primary-color);
}
.wg-steps__map[style*="--wg-steps-current: 19"] span:nth-child(-n+19) {
  cursor: pointer;
}
.wg-steps__map[style*="--wg-steps-current: 19"] span:nth-child(-n+19)::after {
  transform: scale(1);
  background-color: #32E39B;
  content: "\e808";
}
.wg-steps__map[style*="--wg-steps-current: 19"] span:nth-child(-n+19):hover::after {
  background-color: var(--hover-color);
}
.wg-steps__map[style*="--wg-steps-total: 20; --wg-steps-current: 19;"]::after {
  width: 100%;
}
.wg-steps__map[style*="--wg-steps-total: 20; --wg-steps-current: 19;"].wg-steps__map--has-conclusion span::after {
  transform: scale(1) !important;
  background-color: #32E39B !important;
  content: "\e808" !important;
}
.wg-steps--accordion {
  box-shadow: var(--card-box-shadow);
  border-radius: var(--card-border-radius);
  border: var(--card-border-width) var(--card-border-style) var(--card-border-color);
  background: var(--card-background-color);
}
.wg-steps--accordion .wg-step {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.wg-steps--accordion .wg-step:not(:last-child) {
  border-bottom: var(--card-border-width) var(--card-border-style) var(--card-border-color);
}
.wg-steps--accordion .wg-step__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px;
  background-color: rgba(26, 33, 41, 0.075);
  font-weight: bold;
  width: 100%;
}
.wg-steps--accordion .wg-step__title::after {
  content: "\e808";
  width: var(--font-base-rem);
  height: var(--font-base-rem);
  font-family: "fontello";
  font-size: var(--font-base-rem);
  color: #32E39B;
}
.wg-steps--accordion .wg-step:not([style*="display: none;"]) .wg-step__title::after {
  content: "\e807";
  color: currentColor;
  opacity: 0.2;
}
.wg-steps--accordion .wg-step:not([style*="display: none;"]) ~ .wg-step .wg-step__title::after {
  display: none;
}
.wg-steps--accordion .wg-step__content {
  padding: 14px;
  border-top: var(--card-border-width) var(--card-border-style) var(--card-border-color);
}
.wg-steps--accordion .wg-step__footer {
  padding: 14px;
  border-top: var(--card-border-width) var(--card-border-style) var(--card-border-color);
  background-color: rgba(26, 33, 41, 0.05);
  text-align: right;
}
.wg-steps--accordion .wg-step[style*="display: none;"] {
  display: flex !important;
  margin-bottom: 0;
}
.wg-steps--accordion .wg-step[style*="display: none;"] .wg-step__content,
.wg-steps--accordion .wg-step[style*="display: none;"] .wg-step__footer {
  display: none !important;
}

.wg-form .wg-multiple-upload .upload-box {
  position: relative;
  border: 1px dashed #C8D0D8;
  border-radius: var(--input-border-radius);
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.05);
  background-color: white;
}
.wg-form .wg-multiple-upload .upload-box:before {
  bottom: unset;
  top: 25px;
}
.wg-form .wg-multiple-upload .upload-box input[type=file] {
  display: none;
}
.wg-form .wg-multiple-upload .upload-box__trigger {
  display: block;
  cursor: pointer;
  padding: 14px;
  border-radius: inherit;
}
.wg-form .wg-multiple-upload .upload-box__trigger img,
.wg-form .wg-multiple-upload .upload-box__trigger svg {
  display: inline-block;
  vertical-align: middle;
  height: 30px;
}
.wg-form .wg-multiple-upload .upload-box__trigger img path,
.wg-form .wg-multiple-upload .upload-box__trigger svg path {
  fill: #A0A8B0;
}
.wg-form .wg-multiple-upload .upload-box__trigger span {
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
  color: #A0A8B0;
  font-size: var(--font-size-minimal);
  font-weight: 700;
}
.wg-form .wg-multiple-upload .upload-box__trigger:hover {
  background-color: #F6F6F6;
}
.wg-form .wg-multiple-upload .upload-box.field--error .upload-box__trigger svg path {
  fill: #F9213C;
}
.wg-form .wg-multiple-upload .upload-box.field--error .upload-box__trigger span {
  color: #F9213C;
}
.wg-form .wg-multiple-upload .upload-box .list {
  overflow: auto;
  display: flex;
  flex-wrap: wrap;
  max-height: 300px;
  margin: 0px 0;
  padding: 14px 14px 0;
  border-top: 1px dashed #C8D0D8;
}
.wg-form .wg-multiple-upload .upload-box .list:empty {
  display: none;
}
.wg-form .wg-multiple-upload .upload-box .list li {
  position: relative;
  padding: 14px;
  margin: 0 14px 14px 0;
  width: calc(16.6666666667% - 14px * 2);
  min-width: 113px;
  border-radius: 4px;
  background-color: white;
  border: 1px dashed #C8D0D8;
  border-radius: var(--input-border-radius);
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.05);
  text-align: center;
}
.wg-form .wg-multiple-upload .upload-box .list li .delete {
  z-index: 10;
  position: absolute;
  right: 5px;
  top: 5px;
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  font-size: 12px;
  border-radius: 100%;
  color: white;
  background-color: #444;
}
.wg-form .wg-multiple-upload .upload-box .list li .delete:hover {
  color: #F9213C;
}
.wg-form .wg-multiple-upload .upload-box .list li .thumb {
  height: 100px;
  margin-bottom: 14px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.wg-form .wg-multiple-upload .upload-box .list li .thumb img {
  display: block;
  margin: auto;
  max-width: 100%;
  max-height: 100%;
}
.wg-form .wg-multiple-upload .upload-box .list li .extension {
  overflow: hidden;
  height: 100px;
  width: 75px;
  padding: 5px;
  margin: 0 auto 14px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEsAAABiCAYAAAAY7S4UAAAABGdBTUEAALGPC/xhBQAAA5xJREFUeAHtnTuLFEEUhWd1xScKsoKvYMFNBDEwE5TFTAxEECMDUf+AGviI3Fz0B2hsJkbCIoqJkQgbKLiChopgKuiogZ6zY3dV9/RU1d1uYbv7XLjbtx5z6fo4t6emd+gZDJxNI7wOfwP/Af/TUv+E874P3wH/LzaHrEvwtgKqOu9lrGdX07Q2dBBUBo8CaFRht5AwS97F40usbwu8tk0hw1v4IS/TZ8TX4F+9vraED3GieytO9in6TsN/VYyZuoaY7SvqiunVa2vyx9Ja/HU9wtj6Oqe7Di/eWErwrdTuSvMsFvIAzmpalRFWn+wiFntvtQvuGyxy4mVmgYHV+giLjG7DrwpWOoG7mHopffpg0FdlkREv9PxYdI6NFOszLPLhVoJ7s5NsxKzvsMiHH/cew4+zETLBGtHZjMMT+BHBChFwY9sR8mPRQddVjKSsIo8ZNJ/BZ4vdo1bXYNX+oAws++DP4btHiNzfrsHiXdIm7ACSUGE7/WRdg7XoL65mzNtWzLfNz+PfxmB82R9sWcx3tffw8prqtF8gH7cXndvB8x8tF+A/ubiG7ATy3GSurpUh1/QKzv3SazYasvPMM91QsrWW5h1O6Cj8FHweznc2y13S/Zh/DJ7ZbBaU67nN16xsTXWPZ5DA57JS1l0sw7qgJr5esCaiKQzwdk4nL/CFVTbZkLIMNAUrDZbKMI2TmyVlORahSMoK0akak7KqqEzoE6wJYErdKsMSkGhTyooichMEy7EIRSrDEJ2qMSmrisp4n5Q1ziTcI2WF+RRGBauAI9wQrDCfwqhgFXCEG4IV5uOPTgmWjyMSC1YEkDcsZXkwoqGUFUXkJgiWYxGLVIYxQv64lOXTiMSCFQHkDasMPRjRUMqKIsonSFk5ioRAykqAlE0RrIxE/KgyjDNyM6QsxyIaCVYUUT5BZZijSAikrARI/6ZIWems9G1lCyt9tdtAS2VogCVlCZaFQPpclWE6K70bWlhJWRZa2sEbaAlWOiyVYTorXeAtrLQpNdBSGRpgSVkGWFKWAZaUJVgWAulzVYbprLTPsrDSNctAS2VogCVlGWBJWQZYUpZgWQikz1UZprMa7bPKj6nk84X7blUPox7yaZIf4P6PFN1A+ze8jT9ShNOubXuQYeW5pF6mL4i/s80B/8mJisd53CEoGh+FuwQXpGoGrLyt8NzmEAnYOKxlcDmcU/ICKqwLPwZZt0KG4MAn6C7AN8Fz+wuOHkF2GHfEQQAAAABJRU5ErkJggg==");
  font-size: var(--font-size-subtitle);
  text-align: center;
  line-height: 100px;
  font-weight: 700;
  word-break: break-all;
}
.wg-form .wg-multiple-upload .upload-box .list li p {
  font-size: var(--font-size-minimal);
  color: #26303A;
  word-break: break-all;
}

.wg-view .wg-disclaimer {
  display: block;
  margin-bottom: 14px;
  color: #26303A;
  font-weight: normal;
  font-size: var(--font-size-minimal);
}
.wg-view .wg-disclaimer a {
  display: inline-block;
  color: var(--primary-color);
  cursor: pointer;
}
.wg-view .wg-disclaimer a:hover {
  color: var(--hover-color);
}
.grid__line:not(.grid__line--closed) .grid__container[style*=height]:not(.grid__container--full-height) {
  height: auto !important;
}

.grid__accordion {
  padding: 14px;
  margin: 0;
}

.open-accordion {
  padding: 28px 0;
  text-align: center;
}
.wg-view .wg-post--a.wg-post--header {
  padding-top: 14px;
}
.wg-view .wg-post--a .wg-post__featured-img img {
  display: block;
  margin: 0 auto 14px;
  max-width: 100%;
  border-radius: var(--card-border-radius);
}

.wg-view .wg-post--b.wg-post--header .wg-post__featured-img {
  margin-bottom: 28px;
}
.wg-view .wg-post--b.wg-post--header .wg-post__featured-img img {
  display: block;
  margin: 0 auto;
  width: 100%;
  border-radius: var(--card-border-radius);
  -o-object-fit: cover;
  object-fit: cover;
  min-height: 200px;
}
.wg-view .wg-post--b.wg-post--header .wg-post__featured-img .credit {
  transform: translateY(-100%);
}
.wg-view .wg-post--b.wg-post--header .info > *:last-child {
  margin-bottom: 0 !important;
}

.wg-view .wg-post--c.wg-post--header picture {
  position: relative;
  display: grid;
  width: 100%;
  align-items: flex-end;
  margin: 0 auto 28px;
}
.wg-view .wg-post--c.wg-post--header picture .container {
  z-index: 3;
  grid-row: 1/2;
  grid-column: 1/2;
  padding-top: 14px;
  padding-bottom: 14px;
}
.wg-view .wg-post--c.wg-post--header picture .container .wg-badge {
  margin-bottom: 14px;
}
.wg-view .wg-post--c.wg-post--header picture .container h1 {
  color: white;
  font-size: var(--font-size-title);
}
@media screen and (max-width: 1023px) {
  .wg-view .wg-post--c.wg-post--header picture .container h1 {
    font-size: var(--font-size-feature);
  }
}
.wg-view .wg-post--c.wg-post--header picture:after {
  content: "";
  z-index: 2;
  display: block;
  height: 40%;
  grid-row: 1/2;
  grid-column: 1/2;
  background-image: linear-gradient(180deg, transparent 0%, var(--primary-color) 100%);
}
.wg-view .wg-post--c.wg-post--header picture > img {
  z-index: 1;
  display: block;
  width: 100%;
  border-radius: var(--card-border-radius);
  -o-object-fit: cover;
  object-fit: cover;
  grid-row: 1/2;
  grid-column: 1/2;
  align-self: stretch;
}
.wg-view .wg-post--c.wg-post--header .info > *:last-child {
  margin-bottom: 0 !important;
}

.wg-view .wg-post--d.wg-post--body .wg-post__featured-img img {
  display: block;
  margin: 0 auto 56px;
  max-width: 100%;
  border-radius: var(--card-border-radius);
}
.wg-view .wg-author {
  position: relative;
  margin: 28px 0;
  background-color: white;
  border: 1px solid #A0A8B0;
  border-radius: 3px;
}
@media screen and (max-width: 1023px) {
  .wg-view .wg-author {
    text-align: center;
  }
}
.wg-view .wg-author__head {
  display: block;
  height: 40px;
  padding: 0 14px;
  border-bottom: 1px solid #E1E7EC;
  font-size: var(--font-size-minimal);
  line-height: 40px;
  color: #3D4651;
  font-weight: 700;
  text-transform: uppercase;
}
.wg-view .wg-author .author {
  padding: 14px;
}
.wg-view .wg-author .author:after {
  clear: both;
  content: "";
  display: block;
}
.wg-view .wg-author .author img {
  display: block;
  float: left;
  width: 90px;
  border-radius: 100%;
}
@media screen and (max-width: 1023px) {
  .wg-view .wg-author .author img {
    float: none;
    margin: 0 auto 14px;
  }
}
.wg-view .wg-author .author__info {
  float: left;
  width: calc(100% - 90px);
  padding-left: 14px;
}
@media screen and (max-width: 1023px) {
  .wg-view .wg-author .author__info {
    float: none;
    width: auto;
    padding-left: 0;
  }
}
.wg-view .wg-author .author__info__name {
  display: block;
  margin-bottom: 5px;
  font-size: var(--font-size-small);
  color: #3D4651;
  font-weight: 700;
  text-decoration: none;
}
.wg-view .wg-author .author__info__name:hover {
  text-decoration: underline;
}
.wg-view .wg-author .author__info p {
  margin-bottom: 14px;
  font-size: var(--font-size-minimal);
  line-height: 150%;
  color: #3D4651;
}
.wg-view .wg-author .author__info__social {
  margin-bottom: 14px;
  margin-left: -5px;
}
.wg-view .wg-author .author__info__social * {
  display: inline-block;
  vertical-align: middle;
  height: 23px;
  width: 23px;
  margin-left: 14px;
  border-radius: 100%;
  text-align: center;
  text-decoration: none;
  transition-duration: 200ms;
  transition-property: background-color;
}
.wg-view .wg-author .author__info__social *:first-child {
  margin-left: 0;
}
.wg-view .wg-author .author__info__social * i {
  font-size: var(--font-size-minimal);
  line-height: 23px;
  color: #555F69;
  transition-duration: 200ms;
  transition-property: color;
}
.wg-view .wg-author .author__info__social *:hover {
  background-color: #F2F6F9;
}
.wg-view .wg-author .author__info__social *:hover .icon-facebook {
  color: #335D9C;
}
.wg-view .wg-author .author__info__social *:hover .icon-twitter {
  color: #000000;
}

.wg-view .wg-gallery {
  display: block;
  clear: both;
  margin-bottom: 30px;
  padding: 28px;
  box-shadow: var(--card-box-shadow);
  border-radius: var(--card-border-radius);
  border: var(--card-border-width) var(--card-border-style) var(--card-border-color);
  background: var(--card-background-color);
}
@media screen and (max-width: 1023px) {
  .wg-view .wg-gallery {
    padding: 10px;
  }
}
.wg-view .wg-gallery .photos {
  margin-bottom: 14px;
}
@media screen and (max-width: 1023px) {
  .wg-view .wg-gallery .photos {
    margin-bottom: 0;
  }
}
.wg-view .wg-gallery .photos button.slick-arrow {
  display: block;
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 60px;
  height: 60px;
  border-radius: 60px;
  background-color: white;
  background-repeat: no-repeat;
  background-position: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition-duration: 200ms;
  transition-property: transform, visibility, opacity;
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .wg-view .wg-gallery .photos button.slick-arrow {
    display: none !important;
  }
}
.wg-view .wg-gallery .photos button.slick-arrow:before {
  display: inline-block;
  vertical-align: middle;
  font-size: var(--font-size-subtitle);
  color: #555F69;
  font-family: "fontello";
}
.wg-view .wg-gallery .photos button.slick-arrow.slick-prev {
  left: 30px;
}
.wg-view .wg-gallery .photos button.slick-arrow.slick-prev:before {
  content: "\e806";
}
.wg-view .wg-gallery .photos button.slick-arrow.slick-prev {
  border-radius: var(--card-border-radius);
}
.wg-view .wg-gallery .photos button.slick-arrow.slick-prev:hover {
  transform: translateX(-3px);
}
.wg-view .wg-gallery .photos button.slick-arrow.slick-next {
  right: 30px;
}
.wg-view .wg-gallery .photos button.slick-arrow.slick-next:before {
  content: "\e805";
}
.wg-view .wg-gallery .photos button.slick-arrow.slick-next {
  border-radius: var(--card-border-radius);
}
.wg-view .wg-gallery .photos button.slick-arrow.slick-next:hover {
  transform: translateX(3px);
}
.wg-view .wg-gallery .photos button.slick-arrow:hover {
  box-shadow: 2px 4px 6px, rgba(0, 0, 0, 0.2);
}
.wg-view .wg-gallery .photos .slick-dots {
  text-align: center;
  margin-top: 9px;
}
.wg-view .wg-gallery .photos .slick-dots li {
  display: inline-block;
  vertical-align: middle;
  margin: 0 2.5px;
}
.wg-view .wg-gallery .photos .slick-dots li button {
  display: block;
  width: 10px;
  height: 10px;
  background-color: #E1E7EC;
  border-radius: 6px;
}
.wg-view .wg-gallery .photos .slick-dots li.slick-active button {
  background-color: #C8D0D8;
}
.wg-view .wg-gallery .photos .photo {
  float: none;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  overflow: hidden;
  height: auto;
  text-align: center;
  white-space: nowrap;
}
@media screen and (max-width: 1023px) {
  .wg-view .wg-gallery .photos .photo {
    padding: 5px;
  }
}
.wg-view .wg-gallery .photos .photo:before {
  display: inline-block;
  vertical-align: middle;
  content: "";
  width: 1px;
  height: 483px;
  margin-left: -1px;
}
@media screen and (max-width: 1023px) {
  .wg-view .wg-gallery .photos .photo:before {
    display: none;
  }
}
.wg-view .wg-gallery .photos .photo > span {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
.wg-view .wg-gallery .photos .photo > span img {
  display: block;
  margin-bottom: 0;
}
@media screen and (max-width: 1023px) {
  .wg-view .wg-gallery .photos .photo > span img {
    height: auto;
    width: 100%;
  }
}
.wg-view .wg-gallery .photos .photo > span p {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 20px;
  margin: 0;
  width: 100%;
  white-space: normal;
  border-radius: var(--card-border-radius);
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  text-align: left;
}
.wg-view .wg-gallery .photos .photo > span p .complete,
.wg-view .wg-gallery .photos .photo > span p .parcial {
  font-size: 15px;
  font-weight: 400;
  color: white;
  line-height: 25px;
}
@media screen and (max-width: 1023px) {
  .wg-view .wg-gallery .photos .photo > span p .complete,
  .wg-view .wg-gallery .photos .photo > span p .parcial {
    font-size: 12px;
    line-height: 13px;
  }
}
.wg-view .wg-gallery .photos .photo > span p .complete span,
.wg-view .wg-gallery .photos .photo > span p .parcial span {
  font-size: 11px;
}
.wg-view .wg-gallery .photos .photo > span p .complete a,
.wg-view .wg-gallery .photos .photo > span p .parcial a {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  margin-left: 5px;
  color: var(--primary-dark-color);
  cursor: pointer;
}
.wg-view .wg-gallery .photos .photo > span p .complete a:hover,
.wg-view .wg-gallery .photos .photo > span p .parcial a:hover {
  color: var(--hover-color);
}
.wg-view .wg-gallery .photos .photo > span p .parcial {
  display: block;
}
.wg-view .wg-gallery .photos .photo > span p .complete {
  display: none;
}
.wg-view .wg-gallery .photos .photo > span p {
  background-image: linear-gradient(to top, rgba(229, 229, 229, 0) 0%, rgba(229, 229, 229, 0.01) 1%, rgba(0, 0, 0, 0.8) 100%);
}
.wg-view .wg-gallery .count {
  display: block;
  margin-bottom: 10px;
  text-align: center;
  font-size: var(--font-size-paragraph);
  color: #555F69;
}
.wg-view .wg-gallery .thumbs {
  font-size: 0;
  overflow: hidden;
  height: 75px;
}
@media screen and (max-width: 1023px) {
  .wg-view .wg-gallery .thumbs {
    display: none;
  }
}
.wg-view .wg-gallery .thumbs .slick-track {
  min-width: 100%;
}
.wg-view .wg-gallery .thumbs .thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 75px;
  width: 76px;
  margin-left: 2px;
  cursor: pointer;
}
.wg-view .wg-gallery .thumbs .thumb img {
  display: block;
  max-width: 100%;
  margin-bottom: 0;
  transition-duration: 200ms;
  transition-timing-function: ease-out;
  transition-property: visibility, opacity;
}
.wg-view .wg-gallery .thumbs .thumb:after {
  border-radius: var(--card-border-radius);
  position: absolute;
  display: block;
  z-index: 1;
  height: 2px;
  width: 0;
  bottom: 0;
  left: 0;
  background-color: #C8D0D8;
  transition-duration: 600ms;
  transition-timing-function: ease-out;
  opacity: 0;
  visibility: hidden;
}
.wg-view .wg-gallery .thumbs .thumb.slick-current img {
  opacity: 0.5;
}
.wg-view .wg-gallery .thumbs .thumb.slick-current:after {
  width: 80%;
  opacity: 1;
  visibility: visible;
}
.wg-view .wg-gallery .photos button.slick-arrow {
  font-size: 0;
  box-shadow: var(--card-box-shadow);
  border-radius: var(--card-border-radius);
  border: var(--card-border-width) var(--card-border-style) var(--card-border-color);
  background: var(--card-background-color);
}
.wg-view .wg-gallery .photos button.slick-arrow:before {
  font-size: var(--font-base-rem);
}
.wg-view .wg-gallery:hover .photos button.slick-arrow {
  opacity: 1;
  visibility: visible;
}

.wg-view .wg-comments {
  padding-top: 28px;
  margin-bottom: 28px;
}
.wg-view .wg-comments__head {
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--primary-color);
  font-size: var(--font-size-feature);
  color: #26303A;
}
.wg-view .wg-comments__head strong {
  font-weight: 700;
}
.wg-view .wg-comments p {
  margin-bottom: 28px;
  font-size: var(--font-size-minimal);
  color: #26303A;
}
.wg-view .wg-comments form {
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: 1px dotted #A0A8B0;
}
.wg-view .wg-comments form .field textarea {
  resize: vertical;
  min-height: 114px;
}
.wg-view .wg-comments__comments {
  margin-bottom: 28px;
}
.wg-view .wg-comments__comments:empty {
  border: 0;
}
.wg-view .wg-comments__comments .comment {
  padding: 14px;
  margin-bottom: 14px;
  box-shadow: var(--card-box-shadow);
  border-radius: var(--card-border-radius);
  border: var(--card-border-width) var(--card-border-style) var(--card-border-color);
  background: var(--card-background-color);
}
.wg-view .wg-comments__comments .comment time {
  font-size: var(--font-size-infos);
  color: #555F69;
}
.wg-view .wg-comments__comments .comment p {
  margin-bottom: 14px;
  font-size: var(--font-size-small);
  line-height: 150%;
  color: #26303A;
  word-wrap: break-word;
}
.wg-view .wg-comments__comments .comment p a {
  font-weight: 700;
  text-decoration: none;
  color: var(--primary-color);
}
.wg-view .wg-comments__comments .comment p a:hover {
  color: var(--hover-color) !important;
}
.wg-view .wg-comments__comments .comment__user {
  display: block;
  margin-bottom: 10px;
}
.wg-view .wg-comments__comments .comment__user > * {
  display: inline-block;
  vertical-align: bottom;
}
.wg-view .wg-comments__comments .comment__user strong {
  font-size: var(--font-size-subtitle);
  color: #26303A;
  font-weight: 700;
}
.wg-view .wg-comments__comments .comment__user span {
  font-size: var(--font-size-small);
  line-height: 170%;
  color: #555F69;
  display: block;
}
.wg-view .wg-comments__comments .comment__admin {
  display: block;
  margin-bottom: 10px;
}
.wg-view .wg-comments__comments .comment__admin > * {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
.wg-view .wg-comments__comments .comment__admin span {
  font-size: var(--font-size-small);
  line-height: 170%;
  color: #555F69;
}
.wg-view .wg-comments__comments .comment__admin svg * {
  fill: #26303A;
}
.wg-view .wg-comments__comments .comment__logo {
  border-radius: var(--card-border-radius);
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
}
.wg-view .wg-comments__comments .comment__logo img {
  position: relative;
  height: 30px;
  padding: 5px;
}
.wg-view .wg-comments__comments .comment__response {
  padding-top: 28px;
  padding-left: 42px;
}
.wg-view .wg-comments__comments .comment__response img,
.wg-view .wg-comments__comments .comment__response .comment__admin img,
.wg-view .wg-comments__comments .comment__response .comment__logo img {
  border-radius: var(--card-border-radius);
}
.wg-view .wg-comments__load {
  text-align: center;
}
.wg-view .wg-comments__load .wg-btn {
  min-width: 200px;
}
.wg-view .wg-comments__is-restricted {
  padding-bottom: 32px;
}
.wg-view .wg-comments__is-restricted .wgc-warn {
  padding-bottom: 7px;
}
.wg-view .wg-comments__is-restricted .wgc-actions .wg-btn--clean {
  background: none !important;
  background-color: none !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  margin-left: 28px !important;
}

.wg-view .dark .wg-comments__head,
.wg-view.dark .wg-comments__head {
  color: white;
  border-color: var(--primary-dark-color);
}
.wg-view .dark .wg-comments > p,
.wg-view.dark .wg-comments > p {
  color: white;
}
.wg-view .dark .wg-comments__comments .comment,
.wg-view.dark .wg-comments__comments .comment {
  background: var(--card-dark-background-color);
  border-color: var(--card-dark-border-color);
}
.wg-view .dark .wg-comments__comments .comment .comment__user strong,
.wg-view.dark .wg-comments__comments .comment .comment__user strong {
  color: white;
}
.wg-view .dark .wg-comments__comments .comment .comment__user span,
.wg-view.dark .wg-comments__comments .comment .comment__user span {
  color: #F2F6F9;
}
.wg-view .dark .wg-comments__comments .comment time,
.wg-view .dark .wg-comments__comments .comment p,
.wg-view .dark .wg-comments__comments .comment .wg-share-hrz > a i,
.wg-view .dark .wg-comments__comments .comment .icon-dot-3,
.wg-view.dark .wg-comments__comments .comment time,
.wg-view.dark .wg-comments__comments .comment p,
.wg-view.dark .wg-comments__comments .comment .wg-share-hrz > a i,
.wg-view.dark .wg-comments__comments .comment .icon-dot-3 {
  color: white;
}
.wg-view .dark .wg-comments__comments .comment p a,
.wg-view.dark .wg-comments__comments .comment p a {
  color: var(--primary-dark-color);
}

.wg-view .wg-read-more {
  position: relative;
  margin: calc(var(--gutter) * 2) 0;
  box-shadow: var(--card-box-shadow);
  border-radius: var(--card-border-radius);
  border: var(--card-border-width) var(--card-border-style) var(--card-border-color);
  background: var(--card-background-color);
}
.wg-view .wg-read-more__head {
  display: block;
  overflow: hidden;
  height: 40px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--card-border-radius);
  font-size: var(--font-size-small);
  color: #3D4651;
  line-height: 40px;
  font-weight: 700;
}
.wg-view .wg-read-more__body:after {
  clear: both;
  content: "";
  display: block;
}
.wg-view .wg-read-more__body .box {
  float: left;
  width: 50%;
  padding: 14px;
}
.wg-view .wg-read-more__body .box:after {
  clear: both;
  content: "";
  display: block;
}
@media screen and (max-width: 1023px) {
  .wg-view .wg-read-more__body .box {
    float: none;
    width: 100%;
  }
}
.wg-view .wg-read-more__body .box img {
  display: block;
  float: left;
  width: 90px;
}
.wg-view .wg-read-more__body .box__info {
  float: left;
  width: calc(100% - 90px);
  padding-left: 14px;
}
.wg-view .wg-read-more__body .box__hat {
  display: block;
  margin-bottom: 7px;
  font-size: var(--font-size-minimal);
  font-weight: 700;
  color: #3D4651;
}
.wg-view .wg-read-more__body .box__title {
  display: block;
  font-size: var(--font-size-small);
  color: #555F69;
}
.wg-view .form-message {
  display: flex;
  flex-flow: column;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 0;
  text-align: center;
  position: fixed;
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  bottom: 6vh;
}
.wg-view .form-message.form-message--active {
  opacity: 1;
  visibility: visible;
}
.wg-view .form-message p {
  text-align: left;
  max-width: 500px;
  position: relative;
  padding: 20px 60px;
  margin: 0 auto;
  margin-top: 10px;
  border: 1px solid #3D4651;
  color: white;
  font-size: 14px;
  font-weight: normal;
  display: grid;
  grid-template-columns: auto 40px;
  border-radius: var(--card-border-radius);
  padding: calc(14px + var(--card-border-radius));
  transition-duration: 200ms;
  transform: translateY(40px);
  opacity: 0;
  visibility: hidden;
}
.wg-view .form-message p strong {
  font-weight: bold;
}
.wg-view .form-message p.form-message--up {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.wg-view .form-message p.form-message--success {
  background-color: #32E39B;
  border-color: #32E39B;
  color: #444;
}
.wg-view .form-message p.form-message--warning {
  background-color: #FFD553;
  border-color: #FFD553;
}
.wg-view .form-message p.form-message--error {
  background-color: #F9213C;
  border-color: #F9213C;
}
.wg-view .form-message p.form-message--info {
  font-size: 16px;
  min-width: 676px;
  display: inline-block;
  font-weight: 700;
  text-align: left;
  border-color: #ffffff;
  background-color: #3889E6;
  padding-left: calc(14px + var(--card-border-radius));
  padding-right: calc(14px + var(--card-border-radius));
}
@media screen and (max-width: 768px) {
  .wg-view .form-message p.form-message--info {
    min-width: 100%;
  }
}
.wg-view .form-message p .form-message-dismiss-icon {
  cursor: pointer;
  position: absolute;
  right: 0;
  width: 46px;
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
  height: 100%;
  border-left: solid 1px rgba(255, 255, 255, 0.3);
}
.wg-view .form-message p .form-message-got-it {
  position: relative;
  width: 100%;
  display: block;
  text-align: right;
  cursor: pointer;
  opacity: 0.7;
}
.wg-view .form-message p .form-message-got-it:hover {
  opacity: 1;
}

.wg-view .wg-share-hrz > * {
  display: inline-block;
  vertical-align: middle;
  height: 30px;
  width: 30px;
  margin-left: 14px;
  border-radius: 100%;
  text-align: center;
  text-decoration: none;
}
.wg-view .wg-share-hrz > *:first-child {
  margin-left: 0;
}
.wg-view .wg-share-hrz > * i {
  display: inline-flex;
  font-size: 20px;
  line-height: 30px;
  color: #555F69;
}
.wg-view .wg-share-hrz > *:hover.wg-share {
  background-color: #E1E7EC;
}
.wg-view .wg-share-hrz > *:hover .icon-facebook {
  color: #335D9C;
}
.wg-view .wg-share-hrz > *:hover .icon-twitter {
  color: #000000;
}
.wg-view .wg-share-hrz > *:hover .icon-whatsapp {
  color: #075e54;
}
.wg-view .wg-share-hrz > *:active {
  background-color: #E1E7EC;
}
.wg-view .wg-share-hrz .wg-share-hrz__dots {
  position: relative;
}
.wg-view .wg-share-hrz .wg-share-hrz__dots .wg-share-hrz__dropdown {
  position: absolute;
  z-index: 5;
  right: 14px;
  top: 14px;
  min-width: 145px;
  border-radius: 3px;
  border: 1px solid #A0A8B0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  text-align: left;
}
.wg-view .wg-share-hrz .wg-share-hrz__dots .wg-share-hrz__dropdown a,
.wg-view .wg-share-hrz .wg-share-hrz__dots .wg-share-hrz__dropdown > div > div {
  display: block;
  padding: 0 14px;
  background-color: white;
  line-height: 30px;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}
.wg-view .wg-share-hrz .wg-share-hrz__dots .wg-share-hrz__dropdown a i,
.wg-view .wg-share-hrz .wg-share-hrz__dots .wg-share-hrz__dropdown > div > div i {
  display: inline-block;
  margin-right: 10px;
  font-size: 15px;
  line-height: inherit;
}
.wg-view .wg-share-hrz .wg-share-hrz__dots .wg-share-hrz__dropdown a span,
.wg-view .wg-share-hrz .wg-share-hrz__dots .wg-share-hrz__dropdown > div > div span {
  font-size: 13px;
  line-height: inherit;
  color: #26303A;
}
.wg-view .wg-share-hrz .wg-share-hrz__dots .wg-share-hrz__dropdown a:hover,
.wg-view .wg-share-hrz .wg-share-hrz__dots .wg-share-hrz__dropdown > div > div:hover {
  background-color: #F2F6F9;
}
.wg-view .wg-share-hrz .wg-share-hrz__dots:hover .wg-share-hrz__dropdown {
  opacity: 1;
  visibility: visible;
}
.wg-view .wg-share-hrz.wg-share-hrz--small > * {
  height: 23px;
  width: 23px;
}
.wg-view .wg-share-hrz.wg-share-hrz--small > * i {
  font-size: 13px;
  line-height: 23px;
}
.wg-view .wg-share-hrz.wg-share-hrz--small .wg-share-hrz__dots .wg-share-hrz__dropdown {
  right: 10px;
  top: 10px;
}

.wg-share-email-form {
  padding-top: 14px;
  width: 100dvw;
  max-width: 260px;
}
.wg-share-email-form > p {
  font-weight: bold;
  padding-bottom: 7px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--card-border-color);
  display: flex;
  align-items: center;
  gap: 14px;
}
.wg-share-email-form .submit {
  display: flex;
  justify-content: flex-end;
}
.restrict-area.archives .file__extension {
  font-size: var(--font-size-minimal);
}

.restrict-area .user-files {
  padding: 28px 0;
}
.restrict-area .user-files .wg-text {
  margin-bottom: 28px;
  text-align: center;
}
.restrict-area .user-files ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -14px;
  justify-content: center;
}
.restrict-area .user-files .file {
  width: 33.33%;
  padding: 14px;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .restrict-area .user-files .file {
    width: 50%;
    min-width: 300px;
  }
}
.restrict-area .user-files .file a {
  display: block;
  padding: 14px;
  background-color: white;
  text-decoration: none;
  border: 1px solid #E1E7EC;
  transition-duration: 200ms;
}
.restrict-area .user-files .file a:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.restrict-area .user-files .file a:hover .file__button svg path {
  fill: white;
}
.restrict-area .user-files .file__extension {
  display: block;
  overflow: hidden;
  height: 60px;
  width: 50px;
  padding: 5px;
  margin: 0 auto 14px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 44px 51px;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACwAAAAzCAYAAADsBOpPAAAABGdBTUEAALGPC/xhBQAAASpJREFUaAXtmk0OgjAYRPuhx/Bm7t0Zd+pO3Bl3eAo9l15DKl2UyKjYmJGfZLohE9rpywuBBTWXOLb7Ii+92yVOp08zZzdntrCU5r5hI2OA/gqMsMd89XVN3IB5XeeFD31ZW2kNa3Zvm9flvY/Az7CZs3mXUG17vQVG2MNueWkr6fLeC/CQYYOYBvDQYRvAY4CtgccCG4CnNWxI3k9K58/VO+8c4hBH1ufn9hch07iory9Y3D/12nhLpC7qc56A/21fhmUYDOiRACH0KMN0pVAowyCEHmWYrhQKZRiE0KMM05VCoQyDEHqUYbpSKJRhEEKPMkxXCoUyDELoUYbpSqFQhkEIPcowXSkUyjAIoUfb5Kerd35Gb/5DYTgvUf2oD6c8qtMeAx/xRMoDCbxe7hEe1m8AAAAASUVORK5CYII=");
  font-size: var(--font-size-minimal);
  text-align: center;
  line-height: 51px;
  font-weight: 700;
  word-break: break-all;
  color: #555F69;
}
.restrict-area .user-files .file__title {
  display: block;
  margin-bottom: 14px;
  font-size: var(--font-size-small);
  color: #1A2129;
  font-weight: 700;
}
.restrict-area .user-files .file__date {
  display: block;
  margin-bottom: 14px;
}
.restrict-area .user-files .file__date i {
  display: inline-block;
  vertical-align: middle;
  margin-top: -3px;
  margin-right: 7px;
  color: #6B737F;
}
.restrict-area .user-files .file__date span {
  font-size: var(--font-size-small);
  color: #555F69;
}
.restrict-area .user-files .file__button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  background-color: #E1E7EC;
  text-align: center;
  transition-duration: 200ms;
}
.restrict-area .user-files .file__button img path,
.restrict-area .user-files .file__button svg path {
  fill: #555F69;
}

.restrict-area .user-data {
  padding: 28px 0;
}
.restrict-area .user-data > div {
  margin-bottom: 56px;
}
.restrict-area .user-data .wg-text {
  margin-bottom: 28px;
  text-align: center;
}
.restrict-area .user-data .wg-form .submit {
  text-align: center;
}

.restrict-area .extra-systems {
  padding: 28px 0;
}
.restrict-area .extra-systems .wg-text {
  margin-bottom: 28px;
  text-align: center;
}
.restrict-area .extra-systems .wg-text p {
  color: #555F69;
  font-size: var(--font-size-small);
}
.restrict-area .extra-systems ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -14px;
  justify-content: center;
}
.restrict-area .extra-systems .sys {
  width: 33.33%;
  padding: 14px;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .restrict-area .extra-systems .sys {
    width: 50%;
    min-width: 300px;
  }
}
.restrict-area .extra-systems .sys a {
  display: block;
  padding: 14px;
  background-color: white;
  text-decoration: none;
  border: 1px solid #E1E7EC;
  transition-duration: 200ms;
}
.restrict-area .extra-systems .sys a:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.restrict-area .extra-systems .sys a:hover .sys__button svg path {
  fill: white;
}
.restrict-area .extra-systems .sys__title {
  display: block;
  margin-bottom: 14px;
  font-size: var(--font-size-small);
  color: #1A2129;
  font-weight: 700;
}
.restrict-area .extra-systems .sys__subtitle {
  font-size: var(--font-size-small);
  color: #555F69;
}
.restrict-area .extra-systems .sys__date {
  display: block;
  padding-top: 14px;
}
.restrict-area .extra-systems .sys__date i {
  display: inline-block;
  vertical-align: middle;
  margin-top: -3px;
  margin-right: 7px;
  color: #6B737F;
}
.restrict-area .extra-systems .sys__date span {
  font-size: var(--font-size-small);
  color: #555F69;
}
.restrict-area .extra-systems .sys__button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  background-color: #E1E7EC;
  text-align: center;
  margin-top: 14px;
  transition-duration: 200ms;
}
.restrict-area .extra-systems .sys__button img path,
.restrict-area .extra-systems .sys__button svg path {
  fill: #555F69;
}

.user-data.account-data {
  padding: 28px 0;
}
.user-data.account-data hr {
  margin: 14px 0;
  border-bottom: 1px solid #F0F0F0;
}
.user-data.account-data .personal-data,
.user-data.account-data .password-data {
  max-width: 480px;
  margin: auto;
}
.user-data.account-data .personal-data {
  margin-bottom: 42px;
}

.restrict-area.archives {
  padding-top: 40px;
  padding-bottom: 40px;
  /* TITLE */
}
.restrict-area.archives .archives__title {
  position: relative;
  align-self: flex-end;
  justify-content: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .restrict-area.archives .archives__title {
    justify-content: flex-start;
    padding-right: 50px;
  }
}
@media screen and (min-width: 1024px) {
  .restrict-area.archives .archives__title {
    text-align: center;
  }
  .restrict-area.archives .archives__title h2 {
    font-size: var(--font-size-subtitle);
  }
}
.restrict-area.archives .archives__title h2 {
  color: var(--primary-color);
  font-size: var(--font-size-title);
}
@media screen and (max-width: 1024px) {
  .restrict-area.archives .archives__title h2 {
    font-size: var(--font-size-feature);
  }
}
.restrict-area.archives .archives__title p {
  font-size: var(--font-size);
}
.restrict-area.archives .archives__title b {
  color: var(--primary-color);
}
.restrict-area.archives .archives__title .wg-btn {
  display: none;
  position: absolute;
  bottom: 0;
  top: 0;
  margin: auto;
  padding: 0;
  width: 40px;
  right: 0;
}
@media screen and (max-width: 1024px) {
  .restrict-area.archives .archives__title .wg-btn {
    display: flex;
  }
}
.restrict-area.archives {
  /* FILTERS */
}
.restrict-area.archives .archives__filters {
  align-self: flex-end;
}
@media screen and (max-width: 1024px) {
  .restrict-area.archives .archives__filters {
    display: none;
  }
  .restrict-area.archives .archives__filters.active {
    display: flex;
  }
}
.restrict-area.archives .archives__filters form {
  width: 100%;
  display: flex;
  align-items: flex-end;
}
.restrict-area.archives .archives__filters .fields {
  display: flex;
  align-items: flex-end;
  flex: 1;
}
@media screen and (max-width: 1024px) {
  .restrict-area.archives .archives__filters form {
    display: block;
  }
  .restrict-area.archives .archives__filters .fields {
    flex-wrap: wrap;
    margin-right: -14px;
    margin-bottom: 14px;
  }
}
.restrict-area.archives .archives__filters form.loading {
  opacity: 0.6;
  pointer-events: none;
}
.restrict-area.archives {
  /* .archives__filters form.loading button i:before {
    content: '\e831';
    animation: spin 2s linear infinite;
  } */
}
.restrict-area.archives .archives__filters .field {
  flex: 1px;
  min-width: 113px;
  margin-right: 14px;
}
@media screen and (min-width: 1024px) {
  .restrict-area.archives .archives__filters form .field {
    margin: 0 14px 0 0;
  }
}
.restrict-area.archives .archives__filters .fields .field:last-child:before {
  display: block;
  color: #6B737F;
  content: "\e829";
  right: 20px;
}
.restrict-area.archives .archives__filters .field.keyword {
  flex: 3;
}
.restrict-area.archives .archives__filters .field.category {
  flex: 2;
}
@media screen and (max-width: 1024px) {
  .restrict-area.archives .archives__filters .field.keyword,
  .restrict-area.archives .archives__filters .field.category {
    flex: unset;
    width: 100%;
  }
}
.restrict-area.archives .archives__filters .field.category .select2 .select2-selection .select2-selection__arrow {
  width: calc(20px + var(--input-border-radius));
  border: 0;
}
.restrict-area.archives .archives__filters button.wg-btn {
  padding: 0;
  width: var(--btn--primary-height, 40px);
}
.restrict-area.archives .archives__filters button.wg-btn span {
  display: none;
}
@media screen and (max-width: 1024px) {
  .restrict-area.archives .archives__filters button.wg-btn {
    display: block;
    width: 150px;
    margin: auto;
  }
  .restrict-area.archives .archives__filters button.wg-btn span {
    margin: 0;
  }
  .restrict-area.archives .archives__filters button.wg-btn i {
    display: none;
  }
  .restrict-area.archives .archives__filters button.wg-btn span {
    display: block;
  }
}
.restrict-area.archives {
  /* LIST */
}
.restrict-area.archives .archives__list {
  padding-top: 28px;
  padding-bottom: 52px;
}
.restrict-area.archives .archives__list .result {
  display: none;
  align-items: center;
  margin-bottom: 28px;
  color: #555F69;
}
.restrict-area.archives .archives__list .result__back {
  color: var(--primary-color);
  font-size: 22px;
  margin-right: 14px;
  cursor: pointer;
}
.restrict-area.archives .archives__list li {
  margin-bottom: 14px;
  box-shadow: var(--card-box-shadow);
  border-radius: var(--card-border-radius);
  border: var(--card-border-width) var(--card-border-style) var(--card-border-color);
  background: var(--card-background-color);
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.restrict-area.archives .archives__list .end,
.restrict-area.archives .archives__list .icon-spin2 {
  display: none;
  text-align: center;
  color: #6B737F;
}
.restrict-area.archives .archives__list .icon-spin2:before {
  font-size: 30px;
  animation: spin 1s linear infinite;
}
.restrict-area.archives .archives__list .end {
  color: #6B737F;
  text-transform: uppercase;
  font-size: var(--font-size);
}
.restrict-area.archives .archives__list.loading .icon-spin2 {
  display: block;
}
.restrict-area.archives .archives__list.locked .end {
  display: block;
}
.restrict-area.archives .file {
  display: grid;
  align-items: center;
  grid-template-columns: 60px 1fr auto;
  grid-gap: 14px;
  padding: 14px;
}
@media screen and (max-width: 1024px) {
  .restrict-area.archives .file {
    grid-template-columns: 60px 1fr;
    grid-template-rows: 1fr 40px;
  }
}
.restrict-area.archives .file__title {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.restrict-area.archives .file__title b {
  margin-bottom: 7px;
}
.restrict-area.archives .file__title span {
  display: flex;
  align-items: center;
  color: #A0A8B0;
}
.restrict-area.archives .file__title span i {
  margin-right: 7px;
}
.restrict-area.archives .file > img {
  display: block;
  width: 50px;
}
.restrict-area.archives .file__extension {
  display: block;
  overflow: hidden;
  height: 60px;
  width: 50px;
  padding: 5px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 44px 51px;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACwAAAAzCAYAAADsBOpPAAAABGdBTUEAALGPC/xhBQAAASpJREFUaAXtmk0OgjAYRPuhx/Bm7t0Zd+pO3Bl3eAo9l15DKl2UyKjYmJGfZLohE9rpywuBBTWXOLb7Ii+92yVOp08zZzdntrCU5r5hI2OA/gqMsMd89XVN3IB5XeeFD31ZW2kNa3Zvm9flvY/Az7CZs3mXUG17vQVG2MNueWkr6fLeC/CQYYOYBvDQYRvAY4CtgccCG4CnNWxI3k9K58/VO+8c4hBH1ufn9hch07iory9Y3D/12nhLpC7qc56A/21fhmUYDOiRACH0KMN0pVAowyCEHmWYrhQKZRiE0KMM05VCoQyDEHqUYbpSKJRhEEKPMkxXCoUyDELoUYbpSqFQhkEIPcowXSkUyjAIoUfb5Kerd35Gb/5DYTgvUf2oD6c8qtMeAx/xRMoDCbxe7hEe1m8AAAAASUVORK5CYII=");
  text-align: center;
  line-height: 51px;
  font-weight: 700;
  word-break: break-all;
  color: #555F69;
}
.restrict-area.archives .file .wg-btn {
  height: 67px;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  .restrict-area.archives .file .wg-btn {
    height: 40px;
    grid-column: 1/3;
    grid-row: 2/3;
  }
}
.wg-amp-stories-lightbox {
  position: fixed;
  z-index: 100000;
  display: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: black;
}
.wg-amp-stories-lightbox iframe {
  display: block;
  width: 100%;
  height: 100%;
}
.wg-amp-stories-lightbox .close {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 14px;
  right: 28px;
  width: 30px;
  height: 30px;
  border-radius: 15px;
  background-color: rgba(0, 0, 0, 0.4);
  color: white;
  font-size: 18px;
  line-height: 30px;
  cursor: pointer;
}
@media screen and (max-width: 1023px) {
  .wg-amp-stories-lightbox .close {
    top: 54px;
    right: 13px;
    background-color: none;
  }
}
.wg-amp-stories-lightbox .close:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.twitter-timeline {
  padding-bottom: 42px;
  padding-top: 45px;
}
.twitter-timeline__content-head {
  padding-bottom: 42px;
}
.twitter-timeline__content-head .container .wg-page-title {
  display: flex;
  width: 100%;
  align-items: center;
  border-bottom: 1px solid #666666;
}
.twitter-timeline__content-head .container .wg-page-title__title {
  width: 100%;
  display: grid;
  grid-template-columns: auto auto 105px;
  grid-gap: 16px;
  align-items: center;
}
.twitter-timeline__content-head .container .wg-page-title__title h1 {
  order: -1;
  display: flex;
  align-items: center;
  white-space: pre;
  padding: 10px 0;
}
.twitter-timeline__content-head .container .wg-page-title__live {
  position: relative;
  display: none;
  min-width: 320px;
  align-items: center;
}
.twitter-timeline__content-head .container .wg-page-title__live .live-label {
  padding: 10px 0;
}
.twitter-timeline__content-head .container .wg-page-title__live .redbox {
  width: 100%;
  max-width: 207px;
  color: white;
  background-color: #F9213C;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.2);
  line-height: 16px;
  font-size: 11px;
  padding: 4px;
  border-radius: 12px;
  min-height: 24px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  margin-bottom: 0;
}
.twitter-timeline__content-head .container .wg-page-title__live .redbox svg,
.twitter-timeline__content-head .container .wg-page-title__live .redbox img {
  margin-right: 4px;
  display: block;
  animation: blinker 2s step-start infinite;
  transition: 600ms;
}
@keyframes blinker {
  50% {
    opacity: 0;
  }
}
.twitter-timeline__content-head .container .wg-page-title__live span {
  font-size: var(--font-size-infos);
  color: #777777;
  font-weight: 700;
  padding-top: 1px;
  line-height: 100%;
}
@media screen and (max-width: 768px) {
  .twitter-timeline__content-head .container .wg-page-title {
    padding-bottom: 7px;
  }
  .twitter-timeline__content-head .container .wg-page-title__live, .twitter-timeline__content-head .container .wg-page-title__title {
    display: block;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 768px) and (max-width: 385px) {
  .twitter-timeline__content-head .container .wg-page-title__live .live-label, .twitter-timeline__content-head .container .wg-page-title__title .live-label {
    margin-top: 7px;
  }
}
@media screen and (max-width: 768px) {
  .twitter-timeline__content-head .container .wg-page-title__links {
    text-align: left;
    padding: 10px 0;
  }
}
.twitter-timeline__content-head .container .wg-page-describe {
  font-size: var(--font-size-paragraph);
  line-height: 34px;
  color: #666666;
}
.twitter-timeline__content-body {
  padding: 14px;
  position: relative;
  padding-bottom: 42px;
}
.twitter-timeline__content-body.boxed {
  max-width: 690px;
  margin: 0 auto;
}
.twitter-timeline__content-body .tweet-list * .hashtag {
  font-weight: 700;
}
.twitter-timeline__content-body .tweet-list .wg-content-list-twitter ul li {
  transition: 200ms;
  opacity: 0;
  animation: fadein 2s forwards;
  position: relative;
  border-bottom: none;
  padding-bottom: 0;
}
.twitter-timeline__content-body .tweet-list .wg-content-list-twitter ul li .tweet-time {
  color: #666666;
  position: absolute;
  max-width: 42px;
  left: 0;
  top: 0;
  font-size: var(--font-size-infos);
  transition: 200ms;
}
.twitter-timeline__content-body .tweet-list .wg-content-list-twitter ul li .tweet-content {
  border-bottom: 1px dotted #999;
  padding-bottom: 14px;
  margin-left: 70px;
  display: flex;
}
.twitter-timeline__content-body .tweet-list .wg-content-list-twitter ul li .tweet-content .info__share {
  margin-top: 14px;
}
.twitter-timeline__content-body .tweet-list .wg-content-list-twitter ul li .tweet-content .info__image img {
  max-width: 100%;
}
.twitter-timeline__content-body .tweet-list .wg-content-list-twitter ul li .tweet-content .info__title {
  font-weight: 400;
}
.twitter-timeline__content-body .tweet-list .wg-content-list-twitter ul li .tweet-content .info__media-thumbnail {
  position: relative;
  height: 405px;
  width: 100%;
}
.twitter-timeline__content-body .tweet-list .wg-content-list-twitter ul li .tweet-content .info__media-thumbnail img {
  max-width: 100%;
}
.twitter-timeline__content-body .tweet-list .wg-content-list-twitter ul li .tweet-content .info__media-thumbnail .icon-play {
  position: absolute;
  width: 100px;
  height: 100px;
  border: solid 2px white;
  border-radius: 100px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.2);
  transition: 200ms;
}
.twitter-timeline__content-body .tweet-list .wg-content-list-twitter ul li .tweet-content .info__media-thumbnail .icon-play:before {
  content: "";
  width: 34px;
  height: 53px;
  border-left: 2px solid white;
  border-radius: 5px;
  position: absolute;
  top: 23px;
  left: 37px;
}
.twitter-timeline__content-body .tweet-list .wg-content-list-twitter ul li .tweet-content .info__media-thumbnail .icon-play:after {
  content: "";
  position: absolute;
  top: 27px;
  left: 19px;
  width: 42px;
  height: 42px;
  transform: rotate(45deg) skew(-5deg, -5deg);
  border-top: 2px solid white;
  border-right: 2px solid white;
  border-radius: 5px;
}
.twitter-timeline__content-body .tweet-list .wg-content-list-twitter ul li .tweet-content .info__media-thumbnail .icon-play:hover {
  background-color: rgba(0, 0, 0, 0.5);
}
.twitter-timeline__content-body .tweet-list .wg-content-list-twitter ul li .tweet-content .info__media-content.hidden {
  display: none;
}
.twitter-timeline__content-body .tweet-list .wg-content-list-twitter ul li .tweet-content .link {
  word-wrap: break-word;
  color: #777777;
  opacity: 0.6;
  transition: 100ms;
}
.twitter-timeline__content-body .tweet-list .wg-content-list-twitter ul li .tweet-content .link:hover {
  opacity: 1;
}
.twitter-timeline__content-body .tweet-list .wg-content-list-twitter ul li.error {
  text-align: center;
  width: 100%;
}
.twitter-timeline__content-body .tweet-list .wg-content-list-twitter ul li.error .info p {
  font-size: 20px;
  padding-bottom: 28px;
  color: #666666;
}
.twitter-timeline__content-body .tweet-list .wg-content-list-twitter ul li:last-child .tweet-content {
  border: none;
}
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.twitter-timeline__content-body .tweet-list .wg-content-list-twitter .wg-content-list-twitter__load[disabled] {
  text-align: center;
  cursor: default;
}
.twitter-timeline__content-body .tweet-list .wg-content-list-twitter .wg-content-list-twitter__load[disabled]:before {
  display: inline-block;
  vertical-align: middle;
  content: "\e831";
  font-family: "fontello";
  font-size: 13px;
  line-height: 13px;
  color: white;
  animation: spinner 1s linear infinite;
}
.twitter-timeline__content-body .tweet-list .wg-content-list-twitter .empty-list-message {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  font-size: 20px;
  padding-bottom: 28px;
  color: #666666;
}
.twitter-timeline .twitter-timeline-loader {
  opacity: 0;
  visibility: hidden;
  transition: 400ms;
  z-index: 1000;
  background: #F9213C;
  color: white;
  font-size: 15px;
  max-width: 220px;
  width: 100%;
  padding: 4px;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.6;
  height: 40px;
  border-radius: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}
.twitter-timeline .twitter-timeline-loader:hover {
  opacity: 1;
  transition: 400ms;
}
.twitter-timeline .twitter-timeline-loader.active {
  top: 15px;
  transition: 400ms;
  opacity: 1;
  visibility: visible;
}
.twitter-timeline .twitter-timeline-loader img,
.twitter-timeline .twitter-timeline-loader svg {
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  .twitter-timeline .twitter-timeline-loader {
    right: 14px;
  }
}
.twitter-timeline .wg-btn,
.twitter-timeline .wg-badge {
  color: var(--btn--primary-text-color);
  background-color: var(--primary-color);
  border-color: var(--btn--primary-border-color);
}
.twitter-timeline .wg-btn:active, .twitter-timeline .wg-btn--active,
.twitter-timeline .wg-badge:active,
.twitter-timeline .wg-badge--active {
  background-color: var(--primary-color);
}
.twitter-timeline .wg-btn:hover, .twitter-timeline .wg-btn--hover,
.twitter-timeline .wg-badge:hover,
.twitter-timeline .wg-badge--hover {
  background-color: var(--hover-color);
  color: var(--btn--primary-dark-text-color);
}
.twitter-timeline .wg-btn--secondary,
.twitter-timeline .wg-badge--secondary {
  color: var(--btn--secondary-text-color);
  background-color: var(--secondary-color);
  border-color: var(--btn--secondary-border-color);
}
.twitter-timeline .wg-btn--secondary:active, .twitter-timeline .wg-btn--secondary.wg-btn--active, .twitter-timeline .wg-btn--secondary.wg-badge--active,
.twitter-timeline .wg-badge--secondary:active,
.twitter-timeline .wg-badge--secondary.wg-btn--active,
.twitter-timeline .wg-badge--secondary.wg-badge--active {
  background-color: var(--secondary-color);
}
.twitter-timeline .wg-btn--secondary:hover, .twitter-timeline .wg-btn--secondary.wg-btn--hover, .twitter-timeline .wg-btn--secondary.wg-badge--hover,
.twitter-timeline .wg-badge--secondary:hover,
.twitter-timeline .wg-badge--secondary.wg-btn--hover,
.twitter-timeline .wg-badge--secondary.wg-badge--hover {
  background-color: var(--hover-color);
  color: var(--btn--secondary-dark-text-color);
}
.twitter-timeline .wg-content-list * .hashtag {
  color: var(--primary-color);
}
.twitter-timeline .wg-content-list ul li:not([class]) {
  border-color: var(--card-border-color);
  background-color: var(--card-background-color);
}
.twitter-timeline .wg-content-list ul li .info__category {
  color: var(--primary-color);
}
.twitter-timeline .wg-content-list ul li .info__category:after {
  background-color: #C8D0D8;
}
.twitter-timeline .wg-content-list ul li .info__title {
  color: #26303A;
}
.twitter-timeline .wg-content-list ul li .info time,
.twitter-timeline .wg-content-list ul li .info .icon-lock, .twitter-timeline .wg-content-list ul li .info__resume, .twitter-timeline .wg-content-list ul li .info__share i {
  color: #6B737F;
}
.twitter-timeline .wg-content-list ul li .info .info__category:hover,
.twitter-timeline .wg-content-list ul li .info .info__related:hover {
  color: var(--hover-color);
}
.twitter-timeline .wg-content-list ul li .info .info__link:hover .info__title,
.twitter-timeline .wg-content-list ul li .info .info__link:hover .info__resume {
  color: var(--hover-color);
}
.twitter-timeline * .hashtag {
  color: var(--primary-color);
}
.twitter-timeline.widget--skin-dark * .wg-page-title .wg-page-title__title * {
  color: white;
}
.twitter-timeline.widget--skin-dark * .tweet-list .wg-content-list .tweet-time,
.twitter-timeline.widget--skin-dark * .tweet-list .wg-content-list .tweet-content .info .info__title {
  color: white !important;
}
.twitter-timeline.widget--skin-dark .wg-btn,
.twitter-timeline.widget--skin-dark .wg-badge {
  color: var(--btn--primary-dark-text-color);
  background-color: var(--primary-dark-color);
  border-color: var(--btn--primary-dark-border-color);
}
.twitter-timeline.widget--skin-dark .wg-btn:active, .twitter-timeline.widget--skin-dark .wg-btn--active,
.twitter-timeline.widget--skin-dark .wg-badge:active,
.twitter-timeline.widget--skin-dark .wg-badge--active {
  background-color: var(--primary-dark-color);
}
.twitter-timeline.widget--skin-dark .wg-btn:hover, .twitter-timeline.widget--skin-dark .wg-btn--hover,
.twitter-timeline.widget--skin-dark .wg-badge:hover,
.twitter-timeline.widget--skin-dark .wg-badge--hover {
  background-color: var(--hover-color);
  color: var(--btn--primary-dark-text-color);
}
.twitter-timeline.widget--skin-dark .wg-btn--secondary,
.twitter-timeline.widget--skin-dark .wg-badge--secondary {
  color: var(--btn--secondary-dark-text-color);
  background-color: var(--secondary-dark-color);
  border-color: var(--btn--secondary-dark-border-color);
}
.twitter-timeline.widget--skin-dark .wg-btn--secondary:active, .twitter-timeline.widget--skin-dark .wg-btn--secondary.wg-btn--active, .twitter-timeline.widget--skin-dark .wg-btn--secondary.wg-badge--active,
.twitter-timeline.widget--skin-dark .wg-badge--secondary:active,
.twitter-timeline.widget--skin-dark .wg-badge--secondary.wg-btn--active,
.twitter-timeline.widget--skin-dark .wg-badge--secondary.wg-badge--active {
  background-color: var(--secondary-dark-color);
}
.twitter-timeline.widget--skin-dark .wg-btn--secondary:hover, .twitter-timeline.widget--skin-dark .wg-btn--secondary.wg-btn--hover, .twitter-timeline.widget--skin-dark .wg-btn--secondary.wg-badge--hover,
.twitter-timeline.widget--skin-dark .wg-badge--secondary:hover,
.twitter-timeline.widget--skin-dark .wg-badge--secondary.wg-btn--hover,
.twitter-timeline.widget--skin-dark .wg-badge--secondary.wg-badge--hover {
  background-color: var(--hover-color);
  color: var(--btn--secondary-dark-text-color);
}
.twitter-timeline.widget--skin-dark .wg-content-list * .hashtag {
  color: var(--primary-dark-color);
}
.twitter-timeline.widget--skin-dark .wg-content-list ul li:not([class]) {
  border-color: var(--card-dark-border-color);
  background-color: var(--card-dark-background-color);
}
.twitter-timeline.widget--skin-dark .wg-content-list ul li .img i {
  background-color: rgba(255, 255, 255, 0.2);
  color: #555F69;
}
.twitter-timeline.widget--skin-dark .wg-content-list ul li .info__category {
  color: var(--primary-dark-color);
}
.twitter-timeline.widget--skin-dark .wg-content-list ul li .info__category:after {
  background-color: #26303A;
}
.twitter-timeline.widget--skin-dark .wg-content-list ul li .info__resume, .twitter-timeline.widget--skin-dark .wg-content-list ul li .info__title {
  color: white;
}
.twitter-timeline.widget--skin-dark .wg-content-list ul li .info time, .twitter-timeline.widget--skin-dark .wg-content-list ul li .info__share i {
  color: #C8D0D8;
}
.twitter-timeline.widget--skin-dark .wg-content-list ul li .info .icon-lock {
  color: white;
}
.twitter-timeline.widget--skin-dark .wg-content-list ul li .info .info__category:hover,
.twitter-timeline.widget--skin-dark .wg-content-list ul li .info .info__related:hover {
  color: var(--hover-color);
}
.twitter-timeline.widget--skin-dark .wg-content-list ul li .info .info__link:hover .info__title,
.twitter-timeline.widget--skin-dark .wg-content-list ul li .info .info__link:hover .info__resume {
  color: var(--hover-color);
}
.twitter-timeline.widget--skin-dark * .hashtag {
  color: var(--primary-dark-color) !important;
}

/* live mode */
.twitter-timeline.live .twitter-timeline__content-head .container .wg-page-title__live {
  display: flex;
}
@media screen and (max-width: 425px) {
  .twitter-timeline.live .twitter-timeline__content-head .container .wg-page-title__live {
    display: block;
  }
}

.wg-view .wg-event-info {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 10000;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  text-align: center;
  visibility: hidden;
  opacity: 0;
}
.wg-view .wg-event-info .mask {
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
}
.wg-view .wg-event-info .panel {
  display: flex;
  flex-direction: column;
  position: relative;
  visibility: hidden;
  opacity: 0;
  max-width: 600px;
  max-height: calc(100% - 28px);
  margin: 0 14px;
  background-color: white;
  border-radius: var(--card-border-radius, 3px);
  white-space: normal;
  text-align: left;
  transition-duration: 200ms;
  transition-delay: 200ms;
  transition-property: transform;
  transform: translateY(-60px);
}
.wg-view .wg-event-info .panel__head {
  box-sizing: border-box;
  height: 60px;
  width: 100%;
  padding: 0 20px;
}
.wg-view .wg-event-info .panel__head .category {
  font-size: var(--font-size-minimal);
  line-height: 60px;
  color: #26303A;
  text-transform: uppercase;
  font-weight: bold;
}
.wg-view .wg-event-info .panel__head .close {
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  height: 60px;
  width: 60px;
  border-left: 1px solid white;
  background: url("../img/close-icon.png") no-repeat center;
  transition-duration: 200ms;
  font-size: var(--font-size-subtitle);
  cursor: pointer;
}
.wg-view .wg-event-info .panel__head .close:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
.wg-view .wg-event-info .panel__body {
  box-sizing: border-box;
  padding: 20px;
  overflow: auto;
}
.wg-view .wg-event-info .panel .event__title {
  display: block;
  margin-bottom: 5px;
  font-size: var(--font-size-subtitle);
  font-weight: bold;
  color: #26303A;
}
.wg-view .wg-event-info .panel .event__range {
  display: block;
  margin-bottom: 28px;
  font-size: var(--font-size-minimal);
  color: #555F69;
}
.wg-view .wg-event-info .panel .event__description {
  margin-bottom: 28px;
  font-size: var(--font-size-minimal);
  line-height: normal;
  color: #3D4651;
}
.wg-view .wg-event-info .panel .event__description .wg-text *:last-child {
  margin-bottom: 0;
}
.wg-view .wg-event-info .panel .event__people > p {
  margin-bottom: 14px;
  font-weight: 700;
  color: #1A2129;
}
.wg-view .wg-event-info .panel .event__people ul {
  display: flex;
  align-items: flex-start;
  padding-bottom: 14px;
  margin-bottom: 14px;
  overflow: auto;
}
.wg-view .wg-event-info .panel .event__people ul li {
  display: flex;
  flex-flow: column;
  align-items: center;
  min-width: 100px;
  margin-left: 14px;
  text-align: center;
}
.wg-view .wg-event-info .panel .event__people ul li img {
  margin-bottom: 7px;
  border-radius: 50%;
}
.wg-view .wg-event-info .panel .event__people ul li span {
  color: #1A2129;
}
.wg-view .wg-event-info .panel .event__people ul li small {
  color: #A0A8B0;
}
.wg-view .wg-event-info .panel .event__people ul li:first-child {
  margin-left: 0;
}
.wg-view .wg-event-info .panel .event__entrance {
  white-space: nowrap;
  box-sizing: border-box;
  height: 75px;
  margin-bottom: 30px;
  background-color: #F0F0F0;
}
.wg-view .wg-event-info .panel .event__entrance:before {
  display: inline-block;
  vertical-align: middle;
  content: "";
  height: 100%;
}
.wg-view .wg-event-info .panel .event__entrance > * {
  display: inline-block;
  vertical-align: middle;
  padding-left: 15px;
  white-space: normal;
}
.wg-view .wg-event-info .panel .event__entrance > * > * {
  display: inline-block;
  vertical-align: middle;
}
.wg-view .wg-event-info .panel .event__entrance > * i {
  width: 20px;
  height: 21px;
  margin-right: 10px;
  background-position: center;
  background-repeat: no-repeat;
}
.wg-view .wg-event-info .panel .event__entrance > * span {
  font-size: 13px;
  color: #666666;
  line-height: 15px;
}
.wg-view .wg-event-info .panel .event__entrance > *.event__time {
  width: 60%;
}
.wg-view .wg-event-info .panel .event__entrance > *.event__time i {
  background-image: url("../img/clock-icon.png");
}
.wg-view .wg-event-info .panel .event__entrance > *.event__price {
  width: 40%;
}
.wg-view .wg-event-info .panel .event__entrance > *.event__price i {
  background-image: url("../img/card-icon.png");
}
.wg-view .wg-event-info .panel .event__link > * {
  margin: 0 28px 7px 0;
}
.wg-view .wg-event-info .panel .event__link > *:not(.wg-btn) {
  display: inline-block;
  vertical-align: middle;
  margin: 0 28px 0 0;
}
.wg-view .wg-event-info .panel .event__link > *:not(.wg-btn).link {
  font-size: var(--font-size-infos);
  text-transform: uppercase;
}
.wg-view .wg-event-info .panel .event__link > *:not(.wg-btn).link > * {
  display: inline-block;
  vertical-align: middle;
}
.wg-view .wg-event-info .panel .event__link > *:not(.wg-btn).link i {
  margin-left: 14px;
}
.wg-view .wg-event-info.active {
  visibility: visible;
  opacity: 1;
}
.wg-view .wg-event-info.active .panel {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}