/* CSS */
.infoMsg, .success, .warning, .errorMsg, .validation {
border: 1px solid;
margin: 10px 0;
padding:15px 10px 15px 50px;
background-repeat: no-repeat;
background-position: 10px center;
-webkit-box-sizing: border-box; -moz-box-sizing: border-box; -ms-box-sizing: border-box; box-sizing: border-box;
}
.infoMsg {
color: #00529B;
background-color: #BDE5F8;
background-image: url('../images/info.png');
}
.success {
color: #4F8A10;
background-color: #DFF2BF;
background-image:url('../images/success.png');
}
.warning {
color: #9F6000;
background-color: #FEEFB3;
background-image: url('../images/warning.png');
}
.errorMsg {
color: #D8000C;
background-color: #FFBABA;
background-image: url('../images/error.png');
}

.rabatRed {
  color: #D8000C;
  font-weight: 700;
}



/* https://cssbuttons.io/ */
.Documents-btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: fit-content;
  height: 45px;
  border: none;
  padding: 0px 15px;
  border-radius: 5px;
  background-color: rgb(1, 25, 77);
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  margin-bottom: 20px;
}

.Documents-btn:hover {
 text-decoration: none;
}
.folderContainer {
  width: 40px;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  position: relative;
}
.fileBack {
  z-index: 1;
  width: 80%;
  height: auto;
}
.filePage {
  width: 50%;
  height: auto;
  position: absolute;
  z-index: 2;
  transition: all 0.3s ease-out;
}
.fileFront {
  width: 85%;
  height: auto;
  position: absolute;
  z-index: 3;
  opacity: 0.95;
  transform-origin: bottom;
  transition: all 0.3s ease-out;
}
.text {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.Documents-btn:hover .filePage {
  transform: translateY(-5px);
   text-decoration: none;
}
.Documents-btn:hover {
  background-color: #01246e;
   text-decoration: none;
}
.Documents-btn:active {
  transform: scale(0.95);
   text-decoration: none;
}
.Documents-btn:hover .fileFront {
  transform: rotateX(30deg);
   text-decoration: none;
}
      
