.page_in_progress {
  text-align: center;
  margin: 30px auto;
  padding: 10px;
  max-width: 400px;
}
.page_in_progress img {
  width: 100%;
}
.page_in_progress h5 {
  font-size: 16px;
  font-weight: bold;
  line-height: 22px;
  margin-top: 10px;
  opacity: 0.7;
  text-align: center;
}

.markdown_widget {
  font-size: 14px;
  margin: 20px auto;
  text-align: justify;
}
.markdown_widget a {
  border-bottom: 1px solid rgba(0, 0, 0, 0);
  color: blue;
  text-decoration: none;
  transition: 0.2s all;
}
.markdown_widget a:hover {
  border-color: blue;
}
.markdown_widget a.image-link {
  border: 0;
  margin-right: 10px;
}
.markdown_widget h3 {
  margin-bottom: 15px;
}
.markdown_widget ul {
  list-style-type: square;
}
.markdown_widget ul li, .markdown_widget ol li {
  margin-bottom: 10px;
}
.markdown_widget blockquote {
  background: #ffedc5;
  border-radius: 4px;
  font-size: 13px;
  padding: 15px 20px;
}
.markdown_widget blockquote p {
  font-size: 13px;
  margin-bottom: 0;
}
.markdown_widget code {
  background: #eee;
  border-radius: 3px;
  border: 1px solid #ccc;
  color: #007bff;
  display: inline-block;
  font-size: 1em;
  line-height: 20px;
  margin: 1px;
  padding: 0 5px;
}

.spoiler_widget .title {
  background: #EEE;
  border-left: 10px solid #ddd;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 20px;
  padding: 10px 15px;
  position: relative;
}
.spoiler_widget .title .arrow {
  background-image: url("/static/img/spoiler.svg");
  background-size: 24px;
  height: 24px;
  opacity: 0.3;
  position: absolute;
  right: 15px;
  transition: 0.3s all;
  top: calc(50% - 12px);
  width: 24px;
}
.spoiler_widget .title:hover .arrow {
  opacity: 0.6;
}
.spoiler_widget > .content {
  display: none;
}
.spoiler_widget.opened > .content {
  display: block;
}
.spoiler_widget.opened .title > .arrow {
  transform: rotate(180deg);
}

.code_widget_wrapper {
  position: relative;
  transition: 0.3s all;
}
.code_widget_wrapper .code_widget {
  border-radius: 4px;
  font-family: "PT Sans";
  font-size: 14px;
  margin: 10px auto;
  max-height: auto;
  overflow: hidden;
  text-align: justify;
  transition: 0.3s all;
}
.code_widget_wrapper .code_widget pre > code {
  padding: 10px;
  border-radius: 4px;
}
.code_widget_wrapper .code_switch_button {
  cursor: pointer;
  display: none;
  font-size: 12px;
  font-weight: 600;
  position: absolute;
  right: 1px;
  top: -22px;
  transition: 0.3s all;
  user-select: none;
}
.code_widget_wrapper .code_switch_button:hover {
  color: blue;
}
.code_widget_wrapper .code_shadow {
  background: linear-gradient(rgba(0, 0, 0, 0), #333);
  border-radius: 4px;
  bottom: 0;
  display: none;
  height: 200px;
  left: 0;
  position: absolute;
  right: 0;
}

.code_widget_wrapper_spoiler {
  margin-top: 30px;
}
.code_widget_wrapper_spoiler .code_switch_button {
  display: block;
}

.constructor_menu {
  background: #141618;
  padding: 15px;
  margin: 10px auto;
  max-width: 1000px;
}
.constructor_menu a {
  border-bottom: 1px solid transparent;
  color: white;
  font-family: "PT Sans";
  margin-right: 10px;
  text-decoration: none;
  transition: 0.3s all;
}
.constructor_menu a:hover {
  border-color: white;
}

#floating_widgets_menu {
  background: black;
  border-radius: 4px;
  display: none;
  list-style-type: none;
  margin: 0;
  padding: 10px 0;
  position: absolute;
  z-index: 100;
}
#floating_widgets_menu:before {
  background-color: #000;
  content: " ";
  display: block;
  height: 12px;
  left: calc(50% - 6px);
  position: absolute;
  top: -6px;
  transform: rotate(45deg);
  width: 12px;
}
#floating_widgets_menu a {
  color: white;
  display: block;
  font-size: 12px;
  font-weight: 600;
  padding: 7px 20px;
  text-decoration: none;
  transition: 0.3s all;
}
#floating_widgets_menu a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.admin_widget_wrapper {
  margin-bottom: 10px;
  min-height: 85px;
  outline: 1px dashed #ddd;
  position: relative;
}
.admin_widget_wrapper .frame_link {
  background: #00587A;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 18px;
  border-radius: 20px;
  color: white;
  font-size: 14px;
  font-weight: bold;
  height: 40px;
  line-height: 40px;
  position: absolute;
  text-align: center;
  width: 40px;
  z-index: 10;
  cursor: pointer;
  transition: 0.3s all;
  background-image: url("/static/img/gear.svg");
  right: -50px;
}
.admin_widget_wrapper .frame_link:hover {
  transform: scale(1.05);
}
.admin_widget_wrapper .add_after_link {
  background: #00587A;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 18px;
  border-radius: 20px;
  color: white;
  font-size: 14px;
  font-weight: bold;
  height: 40px;
  line-height: 40px;
  position: absolute;
  text-align: center;
  width: 40px;
  z-index: 10;
  cursor: pointer;
  transition: 0.3s all;
  background-image: url("/static/img/return.svg");
  right: -50px;
  top: 45px;
}
.admin_widget_wrapper .add_after_link:hover {
  transform: scale(1.05);
}
.admin_widget_wrapper .order_label {
  background: #00587A;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 18px;
  border-radius: 20px;
  color: white;
  font-size: 14px;
  font-weight: bold;
  height: 40px;
  line-height: 40px;
  position: absolute;
  text-align: center;
  width: 40px;
  z-index: 10;
  left: -50px;
}

.mfp-iframe-holder .mfp-content {
  max-width: 1200px !important;
}
.mfp-iframe-holder .mfp-content .mfp-iframe {
  border-radius: 7px;
}

.formula_widget {
  text-align: center;
}

.gallery img {
  max-width: 100%;
  border-radius: 3px;
}
.gallery .image-title {
  font-weight: bold;
  font-size: 13px;
}

.image_widget_wrapper img {
  max-width: 100%;
  border-radius: 3px;
}
.image_widget_wrapper .image-title {
  font-weight: bold;
  font-size: 13px;
}

.fancybox-caption {
  font-weight: 600;
}

.fancybox-content {
  border-radius: 5px;
  overflow: hidden !important;
}

.sidebar .subscribe-form input {
  background: #eee;
  border-bottom-left-radius: 40px;
  border-top-left-radius: 40px;
  border: 0;
  color: black;
  font-size: 14px;
  height: 40px;
  line-height: 40px;
  padding: 0.5rem 1.5rem;
}
.sidebar .subscribe-form button {
  border-bottom-right-radius: 40px;
  border-top-right-radius: 40px;
  border: none;
  color: white;
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  padding: 0.5rem 1.5rem;
  background: #2b1eb0;
}
.sidebar .other_articles {
  padding: 0;
  list-style-type: none;
}
.sidebar .other_articles li {
  margin-bottom: 15px;
}
.sidebar .other_articles li a {
  color: #333333;
  font-size: 15px;
  font-weight: 600;
  line-height: 20px;
  text-decoration: none;
  transition: 0.3s all;
  display: block;
}
.sidebar .other_articles li a:hover {
  color: #2b1eb0;
}

.position-sticky {
  top: 0;
}

.sidebar {
  padding-top: 10px;
}

.page-tag {
  background: #ddd;
  border-radius: 15px;
  color: black;
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  font-weight: 600;
  padding: 7px 17px;
  transition: 0.3s all;
}
.page-tag:hover {
  background: #2b1eb0;
  color: white;
  text-decoration: none;
}

/*# sourceMappingURL=page.css.map */
