/* BASE */

:root{


  --gradientBackground: linear-gradient(45deg, rgba(70,16,138,1) 0%, rgba(58,5,93,1) 50%, rgba(18,5,77,1) 100%);
  --transparentGradientBackground: linear-gradient(45deg, rgba(70,16,138,.8) 0%, rgba(58,5,93,.8) 50%, rgba(18,5,77,.8) 100%);
  --solidBackground:rgb(70,16,138);

  --solidMainColor: rgba(255, 81, 0, 1);
  --transparentMainColor: rgba(255, 81, 0, 0.6);

  --solidSecondColor:rgba(255, 255, 255);
  --transparentSecondColor:rgba(255, 255, 255, .6);

  --textColor1:white;
  --textColor2:black;

  --specialFont: 'Bruno Ace SC', cursive;
  --generalFont: 'Nunito', sans-serif;
}

.material-symbols-outlined {
  font-variation-settings:
  'FILL' 1,
  'wght' 300,
  'GRAD' 0,
  'opsz' 48
}

/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, .2);
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: rgb(70,16,138, .4);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: rgb(70,16,138, .7);
}

body, header, div, a, p, span, img, section, ul ol, li, button, table, td, th, tr{
    box-sizing: border-box;
}
ul{
  padding:0px;
}

.loadingScreen, .loadingScreen2{
  position:fixed;
  top:0;
  left:0;
  z-index:10;
  height:100vh;
  width:100vw;
  background: linear-gradient(-68deg, #e6d7ff, #e7d1ff);
  display:flex;
  justify-content:center;
  align-items:center;
}
.loadingScreen2{
  z-index:2;
}

.loader {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  position: relative;
  background: var(--transparentMainColor);
  transform:rotate(-45deg);
}
.loader:before , .loader:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--solidMainColor);
  animation: slide 1s infinite linear alternate;
  opacity: 0.5;
}
.loader:after {
  animation: slide2 1s infinite linear alternate;
  opacity: 1;
}

/* KEYFRAMES */

@keyframes slide {
  0% , 20% {  transform: translate(0, 0)  }
  80% , 100% { transform: translate(15px, 15px) }
}
@keyframes slide2 {
  0% , 20% {  transform: translate(0, 0) }
  80% , 100% { transform: translate(-15px, -15px) }
}

.loader2 {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-block;
  border-top: 4px solid #FFF;
  border-right: 4px solid transparent;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}
.loader2::after {
  content: '';  
  box-sizing: border-box;
  position: absolute;
  left: 0;
  top: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border-bottom: 4px solid #FF3D00;
  border-left: 4px solid transparent;
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
} 

body {
    margin: 0;
    padding: 0;
    font-family: var(--generalFont);
    overflow: hidden;
    overflow-x: hidden;
    font-size: 18px;
    height: calc(var(--vh, 1vh) * 100); /* Changed from height: 100% to height: 100vh */
    -webkit-overflow-scrolling: touch;
    /* background: linear-gradient(-68deg, #5c0f8b, #4801ff); */
    background: linear-gradient(-68deg, #e6d7ff, #e7d1ff);
    color: black;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top:75px;
    transition:.3s;
}

/* body {
	background: linear-gradient(-45deg, #ff5100, #4801ff, #5c0f8b);
	background-size: 300% 300%;
	animation: gradient 30s ease infinite;
} */

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

header{
  position:fixed;
  top:0;
  left:0;
  background:rgba(255, 255, 255, .2);
  z-index:2;
  width:100%;
  height:75px;
  display:flex;
  justify-content:flex-start;
  align-items:center;
  padding:15px 8%;
  backdrop-filter: blur(6px);
  transition:.3s;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
header .logo{
  height:100%;
  filter:invert(100%);
}
#backButton{
  position:static;
  top:15px;
  left:30px;
  margin-top:0;
  display:none;
  padding:10px 25px;
  margin-right:20px;
  text-decoration:none;
  /* background:#dec4f9; */
}
#backButton.active{
  display:flex;
}
#backButton .material-symbols-outlined{
  margin:0px;
}

.errorMessage{
  background:rgba(240, 52, 52, .8);
  display:flex;
  justify-content:center;
  align-items:center;
  position:fixed;
  z-index:3;
  padding:10px 25px;
  color:white;
  left:0;
  right:0;
  bottom:-100%;
  margin:auto;
  width:min(400px, 100%);
  text-align:center;
  border-radius:5px;
  transition:.5s;
}
.errorMessage.active{
  bottom:30px;
}

/* LANDING PAGE */

.fullWidthPage{
  padding:15px 8%!important;
  height:100vh;
  margin-top:-75px;
}
.fullWidthPage .innerPage{
  max-width:100%;
  height:100%;
  display:flex;
  flex-direction:row;
  gap:50px;
}
.fullWidthPage .mainTitle{
  font-size:35px;
  line-height:45px;
  text-align:left;
  font-weight:bold;
}
.fullWidthPage .startButton{
  height:100%;
  text-decoration:none;
  color:black;
}
.fullWidthPage .startButton span:not(.material-symbols-outlined){
  white-space: normal;
  font-weight:bold;
}
.fullWidthPage .startButton p{
  text-transform:none;
  letter-spacing: normal;
  margin:0px;
}
.fullWidthPage .buttonsContainer{
  display:flex;
  flex-direction:row;
  flex-wrap:wrap;
  align-items:flex-start;
  justify-content:flex-start;
  width:60%;
  gap:20px;
}
.fullWidthPage .buttonsContainer .startButton{
  width:100%;
  align-items:center;
  justify-content:flex-start;
  flex-direction:row;
  text-align:left;
  gap:20px;
  margin-right:0px;
}
.fullWidthPage .buttonsContainer .startButton .material-symbols-outlined{
  margin:0px;
}
.innerPageHeader{
  max-width:100%;
  width:40%;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
}
.innerPageHeader .mainIcon{
  margin-bottom:35px;
}
.wideHeader .innerPageHeader{
  width:50%;
}
.wideHeader .buttonsContainer{
  width:50%;
}
.innerPageHeader .generalbtn{
  margin:none;
  text-decoration:none;
}
.innerPageHeader .generalbtn .material-symbols-outlined{
  margin-right:10px;
}
.innerPageHeader p span{
  font-size:25px;
  font-weight:bold;
}
.startButton.horizontalCard{
  border:2px solid rgba(0, 0, 0, .5)!important;
}
.horizontalCard{
  display:flex;
}
.horizontalCard .cardInfo{
  flex:1;
}
.horizontalCard .cardInfo span{
  font-weight:900!important;
}
.innerPageHeader ul{
  padding-inline-start:40px;
  margin-bottom:0px;
}
hr{
  border-color:rgba(0, 0, 0, .1);
  width:100%;
}
.page.hasScroll{
  overflow:auto;
  /* margin-top:0px; */
}
.page.hasScroll.active, .fullWidthPage.active{
  display:block!important;
}
.page.hasScroll .innerPage{
  height:auto;
  max-width:calc(100% - 16%);
}

.mediumTitle{
  font-size:30px;
  margin:0px;
  text-align:center;
}
.mainIcon.small{
  width:85px;
  height:85px;
  font-size:50px;
}

.infoBoxesContainer{
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top:35px;
}
.infoBoxesContainer .infoBox{
  width:calc(50% - 10px);
  flex:auto;
  height:auto;
  padding:20px 15px;
  margin:0px;
}
.infoBoxesContainer .infoBox p{
  margin:0px;
}
.infoBoxesContainer .infoBox .material-symbols-outlined{
  margin-right:20px;
}
.infoBox ul{
  list-style:none;
}
/* END LANDING PAGE */

.page{
  height:100vh;
  width:100%;
  padding:25px;
  display:none;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  /* background:rgba(255, 255, 255, .1); */
  margin-top:-75px;
  /* transition:.3s; */
  overflow-y:auto;
}
.innerPage{
  width:100%;
  min-height:700px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  max-width:800px;
  margin:auto;
}
.page.wide{
  padding:50px 8% 65px 8%;
  justify-content:space-between;
  flex-direction:row;
  align-items:flex-start;
  position:relative;
  height:calc(100% - 75px);
  margin-top:0px;
  flex-wrap:wrap;
  min-height: auto;
}

.page.active{
  display:flex;
}

.page .leftSection{
  width:calc(75% - 15px);
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:center;
  transition:.3s;
}
.page .rightSection{
  width:calc(25% - 15px);
  height:100%;
  position:relative;
  /* right:calc((100% - 1600px) / 2); */
  display:flex;
  flex-direction:column;
  overflow-y:auto;
  transition:.3s;
}
.sidebar{
  /* background:rgba(255, 255, 255, .2); */
  border-radius:10px;
  position:sticky;
  top:0;
  right:0;
  height:auto;
  width:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:flex-start;
  overflow-x:hidden;
  margin-bottom:25px;
}
.sidebar .infoBox{
  flex:none;
  width:100%;
  /* border-radius:0px; */
  /* background:rgba(255, 255, 255, .1); */
  margin-bottom:30px;
  transition:.3s;
}
.sidebar .infoBox:last-child{
  margin-bottom:0px;
}
.sidebarButtonsContainer{
  position:static;
  width:100%;
  bottom:0;
  display:flex;
  height:65px;
  background:#dec4f9;
  border-radius:10px;
  overflow:hidden;
  margin-top:auto;
}
.sidebarButtonsContainer .generalbtn{
  margin-top:auto;
  padding:15px 10px 15px 10px;
  flex:1;
  margin:0px;
  margin-bottom:0px !important;
  box-shadow:none;
  border-radius:0px;
  background:transparent;
}
.sidebarButtonsContainer .generalbtn:last-child{
  background:rgb(70,16,138, 1);
  color:white;
}
.sidebarButtonsContainer .generalbtn:hover{
  transform:none;
  opacity:1;
}
.sidebarButtonsContainer .generalbtn:first-child:hover{
  background:rgba(0, 0, 0, .1);
}
.sidebarButtonsContainer .generalbtn:last-child:hover{
  opacity:.7;
}
.generalTitle{
  margin-top:0px;
}
.generalbtn.nextButton{
  margin-bottom:15px;
  background:rgb(70,16,138, 1);
  color:white;
}
.generalbtn.nextButton:hover{
  background:rgb(70,16,138, 1);
  opacity:.7;
}
.sidebarTitle{
  background:#dec4f9;
  height:120px;
  border-radius:10px;
  width:100%;
  margin-top:0px;
  display:flex;
  justify-content:center;
  align-items:center;
  margin-bottom:30px;
  font-size:25px;
  transition:.3s;
  padding:10px 0px;
} 
#scadentarIntermediar, #scadentarFinal{
  height:100%;
}
.mainTitle{
  font-size:60px;
  font-weight:normal;
  text-align: center;
  margin:0px 0px 8px 0px;
  transition:.3s;
}
.spacedParagraph{
  letter-spacing:1.7px;
  /* text-transform:uppercase; */
  text-align:center;
  margin-top:0px;
  transition:.3s;
}
.centeredText{
  text-align:center;
}
.bottomText{
  margin-top:35px;
  font-size:15px;
  line-height:21px;
  color:rgba(0, 0, 0, .7);
  width:100%;
}
.mb{
  margin-bottom:20px;
}
.mainIcon{
  font-size:80px; 
  height:150px;
  width:150px;
  border-radius:100%;
  background:rgba(255, 255, 255, .2);
  display:flex;
  justify-content:center;
  align-items:center;
  margin-bottom:20px;
  transition:.3s;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.boxesContainer{
  width:100%;
  display:flex;
  justify-content:space-between;
  column-gap: 30px;
  transition:.3s;
}
.infoBox{
  padding:20px;
  border-radius:10px;
  overflow:hidden;
  background:rgba(255, 255, 255, .2);
  display:flex;
  justify-content:space-between;
  align-items:center;
  color:black;
  flex:1;
  height:120px;
  transition:.3s;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
.infoBoxData{
  display:flex;
  flex-direction:column;
  margin-right:25px;
  width:calc(100% - 100px);
}
.infoBoxTitle{
  font-size:16px;
  white-space: nowrap;
  transition:.3s;
}
.infoBoxValue{
  font-size:30px;
  font-weight:bold;
  white-space: nowrap;
  transition:.3s;
  text-transform: capitalize;
}
.infoBoxSubTitle{
  font-size:16px;
  white-space: nowrap;
  transition:.3s;
}
.infoBoxIcon{
  height:75px;
  width:75px;
  border-radius:100%;
  display:flex;
  justify-content:center;
  align-items:center;
  background:rgba(255, 255, 255, .2);
  font-size:35px;
  transition:.3s;
  margin-right:15px;
  font-weight:bold;
}
.buttonsContainer{
  width:100%;
  margin-top:30px;
  display:flex;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;
}
.startButton{
  background:rgba(255, 255, 255, .2);
  /* border:1px solid white; */
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  padding:30px;
  border-radius:10px;
  margin:0px 30px;
  cursor:pointer;
  width:300px;
  transition:.3s;
  text-transform:uppercase;
  letter-spacing:1.7px;
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
.startButton span{
  white-space: nowrap;
}
.startButton:hover{
  background:rgba(255, 255, 255, .3);
  transform:scale(1.01);
}
.startButton .material-symbols-outlined{
  font-size:40px;
  margin-bottom:20px;
}
.generalbtn{
  padding:15px 35px;
  background:rgba(255, 255, 255, .2);
  border-radius:10px;
  border:0px;
  outline:none;
  cursor:pointer;
  transition:.3s;
  text-transform:uppercase;
  color:black;  
  font-size:18px;
  display:block;
  margin-top:30px;
  letter-spacing:1.7px;
  display:flex;
  justify-content:center;
  align-items:center;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  text-decoration: none;
}
.generalbtn:hover{
  background:rgba(255, 255, 255, .3);
  transform:scale(1.01);
}
.generalbtn .material-symbols-outlined{
  margin-left:10px;
  display:block;
}
.generalField{
  padding:10px;
  font-size:18px;
  border-radius:5px;
  border:none;
  margin:15px 0px;
}
.generalField:focus, .generalField:active{
  outline:none;
}
.bigText{
  font-size:25px;
  text-align:center;
  line-height:50px;
}
.textField{
  border:none;
  background:transparent;
  width:120px;
  border-bottom:1px solid black;
  font-size:inherit;
  text-align:center;
}
#input-valoare_rambursare{
  margin-right:8px;
}
.textField:focus, .textField:active{
  outline:none;
  box-shadow:none;
}
[data-type='currency']{
  text-align:right;
}

.overlay{
  position:fixed;
  top:0;
  left:0;
  height:100vh;
  width:100vw;
  background:rgba(0, 0, 0, .8);
  display:flex;
  justify-content:center;
  align-items:center;
  display:none;
}
.infoModal{
  background:white;
  padding:25px;
  border-radius:15px;
  width:100%;
  max-width:450px;
  position:relative;
}
.closeModal{
  position:absolute;
  top:25px;
  right:25px;
  color:black;
  cursor:pointer;
  font-size:28px;
}
.infoModalTitle{
  font-size:21px;
  font-weight:bold;
}


/* //////////////////////// TABLE ////////////////////////// */
.tooltipIcon{
  display:inline-block;
  margin-left:8px;
  position:relative;
  font-size:inherit;
  cursor:pointer;
  top:2px;
}
.mt-0{
  margin-top:0!important;
}
.tableWrapper{
  border-radius:15px;
  overflow:hidden;
  margin-top:30px;
  position:relative;
  height:100%;
  transition:.3s;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
.tableScroll{
  height:100%;
  overflow:auto;
}
table {
  font-family: Arial, Helvetica, sans-serif;
  border-collapse: collapse;
  width: 100%;
  background:linear-gradient(-68deg,#e6d7ff,#e7d1ff);
  flex:1;
}

#tabelScadentarIntermediar{
  margin-top:0;
}

table td{
  /* border: 1px solid #ddd; */
  padding: 18px 25px 14px 10px;
  color:black;
  text-align:center;
}
table td:not(:first-child){
  text-align:right;
}
table thead{
  position:Sticky;
  top:0;
}
table th{
  padding: 24px 10px 20px 25px;
  color:black;
  text-align: center;
  background:#dec4f9;
}
table tr:first-child, table tr:last-child{
  background:rgba(255, 255, 255, .1);
}

.highlight {
  background-color: rgba(255, 255, 255, .1) !important;
}
.activeCell {
  background-color: rgba(255, 255, 255, .2) !important;
}

.hidden{
  display:none!important;
}

#finalPage{
  height:100%;
}
#finalPage .spacedParagraph{
  text-align:left;
}
#finalPage .mainTitle{
  margin-bottom:30px;
}
#finalPage .innerPage{
  align-items:flex-start;
}
#finalPage .buttonsContainer{
  justify-content:flex-start;
  gap:20px;
}
#finalPage .buttonsContainer .generalbtn{
  margin:0px;
}
.resetButton{
  background:rgb(70,16,138, 1);
  color:white;
}
.resetButton:hover{
  background:rgb(70,16,138, 1);
  opacity:.7;
}

@media (max-width: 1700px) {
  .infoBoxIcon{
    width:60px;
    height:60px;
  }
  .infoBoxTitle{
    font-size:14px;
  }
  .infoBoxValue{
    font-size:25px;
  }
  .infoBoxSubTitle{
    font-size:14px;
  }
  .sidebarTitle{
    font-size:25px;
    height:100px;
  } 
  .infoBox{
    height:100px;
  }
}
@media (max-width: 1500px) {
  .infoBoxIcon{
    width:50px;
    height:50px;
    font-size:25px
  }
  .infoBoxTitle{
    font-size:12px;
  }
  .infoBoxValue{
    font-size:20px;
  }
  .infoBoxSubTitle{
    font-size:12px;
  }
  .sidebarTitle{
    font-size:20px;
    height:90px;
  } 
  .infoBox{
    height:90px;
  }
  table{
    font-size:16px;
  }
}
@media (max-width: 1350px) {
  header{
    padding:15px 30px;
  }
  .page.wide{
    padding:30px 30px 45px 30px;
  }
  .mainIcon{
    height:120px;
    width:120px;
    font-size:60px;
  }
  .mainTitle{
    font-size:45px;
  }
  .spacedParagraph{
    font-size:16px;
  }
  .startButton{
    padding:30px;
    margin:0px 15px;
    width:250px;
  }
  .startButton span{
    font-size:16px;
  }
  .startButton .material-symbols-outlined{
    font-size:40px;
    margin-bottom:20px;
  }
  .generalbtn {
    font-size:16px;
  }
}
@media (max-width: 1200px) {
  #tipReducereAnticipata .innerPageHeader{
    align-items:center
  }
  #tipReducereAnticipata .innerPageHeader span, #tipReducereAnticipata .innerPageHeader .mainTitle, #tipReducereAnticipata .innerPageHeader p{
    text-align:center;
  }
  .page.hasScroll .innerPage{
    max-width:100%;
  }
  .infoBoxesContainer .infoBox{
    width:100%;
  }
  .infoBoxesContainer .infoBox .infoBoxIcon{
    width:50px;
    height:50px;
    font-size:25px;
  }
  .fullWidthPage{
    overflow:auto;
    margin-top:0px;
  }
  .fullWidthPage .innerPage{
    flex-direction:column;
    height:auto;
    padding-top:25px;
    gap:0px;
    padding-bottom:50px;
  }
  .innerPageHeader, .wideHeader .innerPageHeader{
    width:100%;
  }
  .fullWidthPage .buttonsContainer{
    width:100%;
  }
  .fullWidthPage .buttonsContainer .startButton{
    margin:0px;
  }
  .infoBoxIcon{
    width:35px;
    height:35px;
    font-size:16px
  }
  .boxesContainer{
    column-gap: 15px;
  }
  .page .leftSection{
    width:calc(75% - 7.5px);
  }
  .page .rightSection{
    width:calc(25% - 7.5px);
  }
  .tableWrapper{
    margin-top:15px;
  }
  .sidebar .infoBox{
    margin-bottom:15px;
  }
  .sidebarTitle{
    margin-bottom: 15px;
  } 
  table{
    font-size:14px;
  }
  table td{
    /* border: 1px solid #ddd; */
    padding: 13px 20px 9px 5px;
  }
  table th{
    padding: 19px 5px 15px 20px;
  }
}
@media (max-width: 991px) {
  .page{
    overflow:auto;
  }
  .page.wide.active{
    display:block!important;
  }
  .page .leftSection{
    width:100%;
    height:auto;
  }
  .page .rightSection{
    width:100%;
    height:auto;
  }
  .sidebar{
    margin-top:15px;
    flex-direction:row;
    column-gap: 15px;
    height:auto;
  }
  .sidebarTitle{
    display:none;
  }
  .sidebar .infoBox{
    flex:1;
  }
  .sidebar .infoBox:last-child{
    margin-bottom:15px;
  }
  .tableWrapper{
    height:350px;
  }
  #scadentarIntermediar .sidebar{
    flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  .innerPage{
    justify-content:flex-start;
    padding-top:50px;
    min-height: fit-content;
  }
  .fullWidthPage{
    padding:0px 25px;
  }
  .fullWidthPage .innerPage{
    padding-top:0px;
  }
  .fullWidthPage .mainTitle{
    font-size:25px; 
    line-height:30px;
  }
  .tableWrapper{
    margin-top:0px;
  }
  .sidebar{
    flex-wrap:wrap;
  }
  .sidebar .infoBox, .infoBox{
    width:calc(50% - 7.5px);
    flex:none;
    margin-bottom:15px;
    height:75px;
  }
  .boxesContainer{
    flex-wrap:wrap;
  }
  header{
    padding:10px 15px;
    height:55px;
  }
  .page{
    padding-top:55px;
  }
  #backButton{
    padding:7px 25px;
  }
  .mainTitle{
    font-size:35px;
    line-height:40px;
    margin-bottom:15px;
  }
  .generalbtn{
    font-size:14px;
    padding:12px 35px
  }
  .startButton span{
    font-size:14px;
  }
  .startButton .material-symbols-outlined{
    font-size:30px;
  }
  .page.wide{
    padding:15px 15px 20px 15px;
  }
  #finalPage{
    padding:25px;
  }
  .page{
    justify-content:flex-start;
  }
  .startButton{
    width:min(350px, 100%);
    padding:15px;
    flex-direction:row;
    align-items:center;
    margin-bottom:15px;
  }
  .startButton .material-symbols-outlined{
    margin-bottom: 0px;
    margin-right:15px;
  }
}
@media (max-width: 576px) {
  /* .sidebar .infoBox, .infoBox{
    width:100%;
  } */
  .fullWidthPage .startButton p{
    margin-top:5px;
  }
}
@media (max-width: 400px) {
  .infoBoxIcon{
    display:none;
  }
  .infoBoxesContainer .infoBox{
    flex-direction:column;
    align-items:center;
    justify-content:center;
  }
  .infoBoxesContainer .infoBox .infoBoxData{
    margin-right:0px;
    width:100%;
  }
  .infoBoxesContainer .infoBox .infoBoxIcon{
    display:flex;
    margin-right:0px;
    margin-bottom:25px;
  }
}





