/**
 * Theme Name:  Buro
 */
.Regular {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
}
.Bold {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
}
.Medium {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
}
.pointer:hover {
  cursor: pointer;
}
.pointer:hover * {
  cursor: pointer;
}
.overflow {
  overflow: hidden;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}
.image-cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  display: block;
}
.block {
  display: block;
  float: left;
}
.block100 {
  display: block;
  float: left;
  width: 100%;
}
.transition {
  transition: all 0.2s linear;
}
@keyframes spin {
  from {
    transform: rotate(0) translate(-50%, -50%);
  }
  to {
    transform: rotate(360deg) translate(-50%, -50%);
  }
}
@keyframes rot {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}
@keyframes bouncy {
  from,
  to {
    transform: scale(1, 1);
  }
  25% {
    transform: scale(0.9, 1.1);
  }
  50% {
    transform: scale(1.1, 0.9);
  }
  75% {
    transform: scale(0.95, 1.05);
  }
}
.bouncy {
  animation: bouncy 0.6s;
  animation-duration: 0.6s;
  animation-fill-mode: both;
}
.loader {
  position: relative;
  width: 100%;
  height: 58px;
  float: left;
  display: none;
}
.loader:before {
  content: '';
  display: block;
  padding-top: 100%;
}
.circular {
  animation: rot 2s linear infinite;
  height: 58px;
  transform-origin: center center;
  width: 58px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -29px;
  right: 0;
}
.path {
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  stroke: #0D84FB;
  animation: dash 1.5s ease-in-out infinite;
  stroke-linecap: round;
}
button {
  display: block;
  float: left;
  border: 0;
  padding: 0;
  transition: all 0.2s linear;
}
button:focus {
  outline: 0;
}
button:active {
  outline: 0;
}
button:hover {
  transition: all 0.2s linear;
}
.btn {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  float: left;
  height: 57px;
  background: #0D84FB;
  border-radius: 8px;
  font-size: 17px;
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  padding: 0 30px;
  white-space: nowrap;
  position: relative;
}
.btn:hover {
  background: #E1F0FF;
  color: #0D84FB;
}
.btn:after {
  content: '';
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  border: solid 2px;
  border-color: #fff transparent transparent transparent;
  border-radius: 100%;
  transition: 0.3s ease;
  animation: spin 1s infinite;
  transform-origin: 0 0;
}
.btn.load {
  background: #0D84FB;
  pointer-events: none;
}
.btn.load span {
  opacity: 0;
}
.btn.load:after {
  display: block;
}
.btn.border-btn {
  background: none;
}
.buttons {
  display: block;
  float: left;
}
.buttons .btn {
  margin-right: 20px;
}
.buttons .btn:last-child {
  margin-right: 0;
}
.show-more {
  display: block;
  float: left;
  width: 100%;
  margin-top: 30px;
}
.show-more-btn {
  height: 58px;
  background: #ebebeb;
  border-radius: 8px;
  font-size: 17px;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  transition: all 0.2s linear;
}
.show-more-btn:hover {
  cursor: pointer;
}
.show-more-btn:hover * {
  cursor: pointer;
}
.show-more-btn:hover {
  background: #DBDBDB;
}
.dark .show-more-btn {
  background: #434343;
}
.dark .show-more-btn:hover {
  background: #ebebeb;
  color: #1d1d1d;
}
.mobile .show-more-btn:hover,
.table .show-more-btn:hover {
  background: #ebebeb;
}
.mobile .btn:hover,
.table .btn:hover {
  background: #0D84FB;
  color: #fff;
}
.mobile .dark .show-more-btn:hover,
.table .dark .show-more-btn:hover {
  background: #434343;
  color: #fff;
}
@media screen and (max-width: 480px) {
  .buttons {
    display: -ms-flexbox;
    display: flex;
  }
  .buttons .btn {
    padding: 0 15px;
    width: 100%;
  }
}
@media screen and (max-width: 350px) {
  .buttons .btn {
    margin-right: 12px;
  }
}
