/* FONTS */
/* MIXIN */
/* COMMON */
body,
html {
  height: 100%;
}
body {
  overflow-x: hidden;
}
img,
img.scale-with-grid {
  outline: 0px none;
  max-width: 100%;
  height: auto;
}
.img-circle {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
/* BUTTONS */
.btn-xs-block {
  display: block;
  width: 100%;
  margin-top: 10px;
}
@media (min-width: 576px) {
  .btn-xs-block {
    display: inline-block;
    width: auto;
  }
}
/* DIVIDER */
.divider-text {
  position: relative;
  text-align: center;
  margin-top: 15px;
  margin-bottom: 15px;
}
.divider-text span {
  padding: 7px;
  font-size: 12px;
  position: relative;
  z-index: 2;
}
.divider-text:after {
  content: "";
  position: absolute;
  width: 100%;
  border-bottom: 1px solid #ddd;
  top: 55%;
  left: 0;
  z-index: 1;
}
/* LOGO */
.logo {
  display: inline-block;
  line-height: 1;
  /*
    vertical-align: middle;
    background: url(../images/logo-puolustusvoimat-big.png);
    background-repeat: no-repeat;
    background-size: cover;
    &.default-logo {
        max-width: 182px;
        min-width: 182px;
        width: 182px;
        max-height: 40px;
        min-height: 40px;
        height: 40px;
    }
    
    &.fi { background-image: url(../images/pv-logo-fi.svg),none; }
    &.sv { background-image: url(../images/pv-logo-sv.svg),none; }
    &.en {
        background-image: url(../images/pv-logo-en.svg),none;
        max-width: 260px;
        min-width: 260px;
        width: 260px;
    }
    */
}
/* CONTENT - LAYOUT */
.wrapper {
  margin-top: 60px;
}
/* FORM */
form .card-header .fa {
  transition: 0.3s transform ease-in-out;
}
form .card-header .collapsed .fa {
  transform: rotate(90deg);
}
form .form-group .col-form-label {
  font-weight: bold;
}
form .form-group.required .control-label:after,
form .form-group.required label:after {
  content: " *";
  color: red;
}
