﻿.pre-loader__block {
  position: absolute;
  top: 50vh;
  left: 0;
  right: 0;
}

.pre-loader__wrap {
  position: relative;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100%;
}
.pre-loader__wrap .pre-loader__content {
  top: calc(50% - 35px);
  left: calc(50% - 35px);
  position: absolute;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pre-loader__wrap .pre-loader__content .pre-loader {
  position: relative;
  border-radius: 50%;
  border-top: 5px solid #321fdb;
  border-left: 5px solid #321fdb;
  border-right: 5px solid #321fdb;
  border-bottom: 5px solid transparent;
  width: 70px;
  height: 70px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.noborder {
  border: 0px solid black;
}

table, td, th {
  border: 1px solid black;
}

td {
  vertical-align: top;
  padding: 2px;
}
td.property {
  width: 100%;
}
td.property.auto {
  width: auto;
}

.block-space {
  width: 16px;
  display: inline-block;
}

.link {
  cursor: pointer;
  color: #0066dc;
  text-decoration: underline;
}
.link:hover, .link:active, .link:focus {
  color: #0066dc;
}
.link:visited {
  color: #5511AA;
}

* {
  font-size: 16px;
}

h1 {
  font-size: 32px;
}
