@keyframes logotype-first {
  from {transform: rotateZ(10deg);}
  to {transform: rotateZ(190deg);}
}

@keyframes logotype-second {
  from {transform: rotateZ(0deg);}
  to {transform: rotateZ(-180deg);}
}

@font-face {
  font-family: SlowflakeSans-Medium;
  src: url(SnowflakeSans-Medium.woff2);
}

@font-face {
  font-family: SlowflakeSans-Book;
  src: url(SnowflakeSans-Book.woff2);
}

body {
  font-family: 'SlowflakeSans-Book','SlowflakeSans-Medium';
  margin: 0 auto;
}

body > .row {
  height: 100vh;
}

body > .row::after {
  content: "©2025 VML";
  color: black;
  text-align: center;
  display: block;
  background-color: #ff580a;
  box-shadow: 
  0px 1px 5px 0px rgba(0, 0, 0, 0.2),
  0px 2px 2px 0px rgba(0, 0, 0, 0.14), 
  0px 3px 1px -2px rgba(0, 0, 0, 0.12);
  height: 30px;
  margin-top: 15px;
  padding-top: 5px;
}

#SelfServiceApp {
  min-height: calc(100vh - 45px);
  position: relative;
}

#SelfServiceApp > div {
  padding: 60px 80px;
}

@media only screen and (max-width : 1000px) {
  #SelfServiceApp > div {
    padding: 30px 40px;
  }
}
@media only screen and (max-width : 600px) {
  #SelfServiceApp > div {
    padding: 15px 20px;
  }
  #SelfServiceApp {
    background-image: none;
  }
}

h1 a {
  color: #0a47ed;
  text-decoration: none;
  font-weight: bold;
  position: relative;
}
.gear {
  font-size: 0;
}
h1 a:hover {
  border-bottom: 2px solid #0a47ed;
}

h1 a:hover .gear::before {
  animation: 1.5s ease-out logotype-first;
}

h1 a:hover .gear + .gear::before {
  animation: 1.5s ease-out logotype-second;
}

.gear::before {
  display: inline-block;
  background: url("../assets/settings.svg") top center no-repeat;
  content: "";
  width: 24px;
  height: 24px;
}
.gear:first-child::before {
  position: relative;
  top: 5px;
  transform: rotateZ(10deg);
}

.header {
  padding-bottom: 50px;
}

.header img {
  width: 150px;
}

.header h1 {
  font-weight: 500;
  margin: 10px 0;
}

.header::after {
  clear: both;
}

.modal {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%); 
  max-height: 80%;
  max-width: 90%;
   
}

.modal-content {
  height: 300px;
  width: 500px;
}

  section p {
    margin: 10px 0;      
  }

  p a,
  p a:active {
    color: #0a47ed;
    text-decoration: none;
    border-bottom: 1px solid #0a47ed;
    animation: 1.5s ease-out show-up;
  }

.page-container h2 {
  background: no-repeat url("../assets/VML_Bullet.png") left center;
      background-size: 15px 15px;
      padding-left: 25px;
}
    


.loader {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.modal-content {
    height: 100%;
    width: 100%;
    padding: 20px;
}

.page-container {
    padding: 10px 20px 10px 20px;
    margin: 10px 20px 10px 20px;
}
