/* General Variables */

:root {
  --thinfont: 400;
  --smallfontsize: 11px;
  --thickfont: 500;
  --largefontsize: 10px;
  --introfontsize: 14px;
  --copyrightfont: 12px;
  --titlefont: 500;
  --titlefontsize: 13px;
  --subinfofontsize: 12px;
  --projectfontsize: 10px;
  --boxshadowsize: 0px 0px 1px 0px #00000044;
  --quickanimation: 100ms;
  --mediumanimation: 400ms;
  --slowanimation:600ms;
}


body{
  font-family: "Montserrat", sans-serif;
}


#wholeapp{
  cursor:grab;
}


#blocker{
  user-select: none;
  position:absolute;
  width:100vw;
  height:100vh;
  background-color: #ffffff4b;
  z-index: 999;
}

.progressbarwrapper{
  position: absolute;
  z-index: 999999;
  width:100%;
  height:auto;
  display:flex;
  align-items: center;
  background: #006e64;
}


/* Small updates to leaflet camera icon*/

.leaflet-marker-icon{
  user-select: none !important;
}


/* Implementation of company logo*/

.logocontainer{
  display:flex;
  height:50px;
  width:75px;
  margin-left:10px;
  background-image: url(./img/Nea_logo_cropped.png);
  background-position: center center;
  background-size: 100%;
  background-repeat: no-repeat;
}

.titlewrapper{
  display:flex;
  align-items: center;
  box-shadow: var(--boxshadowsize);
}
.titleinfo{
  text-transform: uppercase;
  font-weight: 500; 
  flex:1;
  text-align: center;
}

.initialhidden{
  display:none !important;
}

.subdiv{
  transition: 700ms;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transform:translateX(-150%);
}

/* Implementation of mini map*/

.mapcontainer{
  position:absolute;
  right:0;
  width:auto;
  height:auto;
  z-index: 99;
  display:flex;
  transform:translate(0px);
  -webkit-transition: var(--mediumanimation);
  transition: var(--mediumanimation);
}

.hidemap{
  background-color: rgb(255, 255, 255);
  color:rgb(224, 224, 224);
  border-radius: 0px 0px 0px 5px;
  text-align: center;
  line-height: 35px;
  height:35px;
  width:35px;
  right:350px;
  z-index: 99;
  user-select: none;
  cursor: pointer;
  filter: drop-shadow(0 0 0.15rem #88888844);
}

.hidemap:hover{
  background-color: #006e64;
  color:white;
}

.hideinfo{
  bottom:0;
  background-color: rgb(255, 255, 255);
  color:rgb(224, 224, 224);
  border-radius: 0px 5px 5px 0px;
  text-align: center;
  line-height: 35px;
  height:35px;
  width:35px;
  right:350px;
  z-index: 4;
  user-select: none;
  cursor: pointer;
  filter: drop-shadow(0 0 0.15rem #88888844);
}

.hideinfo:hover{
  background-color: #006e64;
  color:white;
}

.hidewrapperright{
  display:flex;
  flex-direction: column;
  align-items: end;
  width:40px;
  
}

.hidewrapperleft{
  display:flex;
  flex-direction: column;
  align-items: start;
  width:40px;
}


.hidetype{
  color: rgb(182, 182, 182);
  font-size: var(--smallfontsize);
  font-weight: var(--thinfont);
  text-transform: uppercase;
  padding-top:15px;
  padding-bottom:15px;
  width:30px;
  background-color: rgb(255, 255, 255);;
  height:auto;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  display:flex;
  justify-content: center;
  align-items: center;
  user-select: none;

}


.zoompointer{
  color: rgb(182, 182, 182);
  font-size: 5px;
  font-weight: 500;
  text-transform: uppercase;
  padding-top:10px;
  padding-bottom:10px;
  width:75%;
  background-color: rgb(255, 255, 255);;
  height:auto;
  text-orientation: mixed;
  display:flex;
  justify-content: center;
  align-items: center;
  user-select: none;
  filter: drop-shadow(0 0 0.15rem #88888844);
}

.zoompointer:hover{
  background-color: #006e65;
  color:white;
  cursor: pointer;
}

.curveleft{
  border-radius: 0px 0px 5px 0px;
}

.curveright{
  border-radius: 0px 0px 0px 5px;
}

#map {
  width: 400px;
  height: 400px;
  z-index: 99;
  border-radius: 0px 0px 0px 5px;
  filter: drop-shadow(0 0 2rem rgba(0, 0, 0, 0.356));
}

/* Additions to the template */

/* Signature */

.signaturecontainer{
   width:auto;
   height:auto;
   z-index: 99;
   position: absolute;
   bottom:0;
   right:50%;
   display: flex;
   flex-direction: column;
   transform: translate(50%);
   filter: drop-shadow(0 0 2rem rgba(0, 0, 0, 0.356));
}



.signatureitems{
  font-size: var(--smallfontsize);
  font-weight: var(--thickfont);
  border-radius: 5px 5px 0px 0px;
  background-color: rgb(255, 255, 255);
  display:flex;
  align-items: center;
  padding-left:10px;
  padding-right:10px;
  gap:15px;
  
}

.signaturetitlecontainer{
  font-size: var(--smallfontsize);
  width:100%;
  display:flex;
  align-items: center;
  justify-content: center;
}

.signaturetext{
  text-transform: uppercase;
  color:white;
  font-size: 10px;
  border-radius: 5px 5px 0px 0px;
  background-color: #006e64;
  height:100%;
  padding:8px;
   z-index: 5;
  user-select: none;
}

.signaturebox{
  width:auto;
  display:flex;
  gap:10px;
  padding:10px;
}

.signatureboxtext{
  align-items: center;
  display:flex;
  min-width: 50px;
}

.iconcontainer{
  width:35px;
  height: 35px;
  background-color: rgb(255, 255, 255);
  display:flex;
  align-items: center;
  justify-content: center;
}

.icon{
  border-radius: 5px;
  width:80%;
  height:80%;
  background-color: aqua;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 80%;
}



.title{
  font-size: var(--projectfontsize);
  font-weight: var(--titlefont);
}

.subtitle{
  font-size: var(--largefontsize);
  font-weight: var(--thickfont);
}


.webmodellag{
  display:flex;
  flex-direction: column;
  min-height: 50px;
  position: relative;
  box-shadow: inset 0 0 5px #b8b8b881;
}

.webmodellagnull{
  position: absolute;
  z-index: 1;
  font-size: 8px;
  text-align: center;
  width: 100%;
  font-weight: var(--thickfont);
  text-transform: uppercase;
  color: gray;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 50%;
  
}

.onoff {
  display:flex;
  height: 50px;
  text-align: start;
  box-shadow: var(--boxshadowsize);
  align-items: center;
  z-index: 99;
  position: relative;
 width:100%;
 background-color: white;
 user-select: none;

}

.onoff2 {
  display:flex;
  justify-content: center;
  height: 50px;
  text-align: start;
  line-height: 50px;
  box-shadow: var(--boxshadowsize);
  z-index: 99;
  position: relative;

}

.combinedwrapperbtnrow{
  width:90%;
  display:flex;
}

.directionboxouter{
  display:flex;
  justify-content: center;
  align-items: center;
  width:100%;
  height:50px;
}

.directionboxinner{
  color:grey;
  box-shadow:  0 0 5px #b1b1b16e;
  user-select: none;
  display:flex;
  justify-content: center;
  align-items: center;
  width:35px;
  height:35px;
  border-radius: 5%;
  border:solid 1px rgb(211, 211, 211);
  background-color: #ffffff;
}

.directionboxinner:hover{
transition: 50ms;
background-color: #e6e6e6;
 transform:scale(1.05);
}


.spacer{
  width:25px;
}

.infotext {
  color: rgb(122, 122, 122);
  font-size: var(--smallfontsize);
  font-weight: var(--thinfont);
  width:55%;
}

.visitoogle{
  height:100%;
  display:flex;
  align-items: center;
}

.toogleswitch {
  position: relative;
  display: inline-block;
  width: 76px;
  height: 20px;
}

.toogleswitch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.introfull{
  position:absolute;
  width:100vw;
  height:100vh;
  user-select: none;
  background-color: #e0e0e069;
  z-index: 99;
}

.introparent{
  width:100vw;
  height:100vh;
  display:flex;
  align-items: center;
  justify-content: center;
}

.introcontainer{
  transition: 500ms;
  position: absolute;
  background-color:rgb(255, 255, 255);
  filter: drop-shadow(0 0 2rem rgba(0, 0, 0, 0.5));
  width:15vw;
  min-width: 350px;
  max-width: 650px;
  height:auto;
  border-radius: 10px;
  display:none;
  flex-direction: column;
  align-items: center;
  overflow:hidden;
  z-index: 99;
 
}

.intronotbtns{
  display:flex;
  flex-direction: column;
  align-items: center;
}

.infotop{
  width:100%;
  background-color: white;
  display:flex;
  align-items:center;
  justify-content: center;
  box-shadow: 0px 0px 5px rgba(104, 104, 104, 0.253)
}

.introcontainertopparent{
  width:75%;
  display:flex;
  flex-direction: column;
  align-items:center;
  justify-content: center;
  height:auto;
}

.introcontainertop{
  width:100%;
  padding:3%;
  height:auto;
  line-height: 25px;
  font-size: var(--introfontsize);
  font-weight: 500;
  min-height: 75px;
  display:flex;
  align-items:center;
  justify-content: center;
  text-align: center;
}

.introcontainercoreparent{
  width:85%;
  display:flex;
  flex-direction: column;
  align-items:center;
  justify-content: center;
  height:auto;
  gap:25px;
  padding-bottom: 50px;
  padding-top: 15px;
}

.introcontainercore{
  color: rgb(122, 122, 122);
  width:100%;
  font-size: var(--titlefontsize);
  line-height: 30px;
  font-weight: var(--thinfont);
  display:flex;
  align-items:center;
  justify-content: center;
}

.introcontainercore2{
  color: rgb(122, 122, 122);
  width:100%;
  font-size: 11px;
  line-height: 22px;
  font-weight: var(--thinfont);
  display:flex;
  align-items:center;
  justify-content: center;
  
}

.introcontainerbottom{
  background-color: #BFC853;
  width:100%;
  min-height:50px;
  display:flex;
}

.introcontainerbottomleftparent{
  color: white;
  font-size: var(--titlefontsize);
  line-height: 30px;
  font-weight: var(--thinfont);
  background-color: var(--main-bg-color);
  width:100%;
  height:50px;
  display:flex;
  justify-content: center;
  align-items: center;
}
.introcontainerbottomleft{
  width:50%;
  height:50px;
  display:flex;
  justify-content: center;
  align-items: center;
}

.introcontainerbottomrightparent{
  color: white;
  font-size: var(--titlefontsize);
  line-height: 30px;
  font-weight: var(--thinfont);
  background-color: rgba(48, 112, 35,0.5);
  width:100%;
  height:50px;
  display:flex;
  justify-content: center;
  align-items: center;
}
.introcontainerbottomright{
  width:50%;
  height:50px;
  display:flex;
  justify-content: center;
  align-items: center;
}



.introbtn{
  cursor: pointer;
  transition: var(--mediumanimation);
}

.introbtn:hover{
  transform:scale(1.1);
};

.backgroundblue{
  background-color: #84AFD3;
}

.backgroundgreen{
  background-color: #BFC853;
}

.backgrounddarkgreen{
  background-color: #174524;
}

.backgroundorange{
  background-color: #D94C30;
}

.backgroundyellow{
  background-color: #F2D82D;
}

.backgroundlightblue{
  background-color: #84AFD3;
}

.backgroundred{
  background-color: #6b1a16;
}

.backgroundblue2{
  background-color: #84AFD3;
}


.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transition: var(--slowanimation);
  transition: var(--slowanimation);
 
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 32px;
  bottom: 2px;
  background-color: white;
  -webkit-transition: var(--slowanimation);
  transition: var(--slowanimation);
  
}

input:checked + .slider {
  background-color: #ccc;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(-30px);
  -ms-transform: translateX(-30px);
  transform: translateX(-30px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 80px;

}

.slider.round:before {
  border-radius: 50%;

}

/* SolarPanels on / off */

.informationwrapper{
  position:absolute;
  bottom:0;
  display:flex;
  width:auto;
  transition: var(--mediumanimation);
  z-index: 99;
}


.information {
  height: auto;
  z-index: 5;
  width: 250px;
  border-radius: 0px 0px 0px 0px;
  background-color: rgb(255, 255, 255);
  filter: drop-shadow(0 0 2rem rgba(0, 0, 0, 0.356));
  cursor: pointer;
  padding: 5px;
  box-shadow: inset 0 0 10px #e1e1e1;
}

.copyright {
  font-size: var(--copyrightfont);
  font-weight: var(--thickfont);
  text-decoration: none;
  color:white;
  border-radius: 5px 0px 0px 0px;
  position: absolute;
  padding: 10px 20px 10px 20px;
  bottom: 0;
  right: 0;
  z-index: 5;
  
}

.projekttitel {
  font-size: var(--smallfontsize);
  font-weight: var(--thinfont);
  border-radius: 5px 5px 0px 0px;
  position: absolute;
  padding: 10px 20px 10px 20px;
  bottom: 0;
  right: 50%;
  transform: translate(50%, 0%);
  z-index: 5;
  background-color: rgb(255, 255, 255);
  filter: drop-shadow(0 0 2rem rgba(0, 0, 0, 0.356));
}

.infoholder {
  color: rgb(122, 122, 122);
  font-size: var(--smallfontsize);
  font-weight: 500;
  line-height: 50px;
  height: 50px;
  display: flex;
  box-shadow: var(--boxshadowsize);
  z-index: 99;
  position: relative;
}

.infoex {
  text-align: start;
  line-height: 50px;
  width: 50%;

}

.titleexinfo {
  color: rgb(122, 122, 122);
  height: 50px;
  text-transform: uppercase;
  text-align: center;
  line-height: 50px;
  z-index: 5;
  position: relative;
}

.sectioninfo {
  color: rgb(66, 66, 66);
  background-color: #f8f8f8;
  height: 35px;
  font-weight: var(--thickfont);
  text-transform: uppercase;
  text-align: center;
  line-height: 35px;
  z-index: 5;
  display:flex;
  align-items: center;
  justify-content: center;
}


#cameraposition {
  color: black;
  background-color: rgba(39, 118, 155, 0.247);
  font-size: var(--smallfontsize);
  font-weight: var(--thinfont);
  line-height: 50px;
  height: 50px;
  width: 50%;
  text-align: center;
  align-items: center;
  justify-content: center;
}

#afstandwind {
  color: black;
  background-color: rgba(78, 87, 78, 0.247);
  font-size: var(--smallfontsize);
  font-weight: var(--thinfont);
  line-height: 50px;
  height: 50px;
  width: 50%;
  text-align: center;
  align-items: center;
  justify-content: center;
}

#terrainheight {
  color: black;
  background-color: rgba(102, 102, 102, 0.15);
  font-size: var(--smallfontsize);
  font-weight: var(--thinfont);
  line-height: 50px;
  height: 75px;
  width: 50%;
  text-align:center;
}



.btnrowtest {
  user-select: none;
  cursor:pointer;
  border-radius: 5px 5px 0px 0px;
  filter: drop-shadow(0 0 2rem rgba(0, 0, 0, 0.356));
  background-color: #f8f8f8;
  display:flex; 
  width: 225px;
  height: 50px;
  position: absolute;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  text-align: center;
   bottom: 0;
  z-index: 5;
  align-items: center;
  justify-content: center;
  transition: var(--mediumanimation);
}

.extrainfo{
  margin:0;
  display:flex;
  align-items: center;
  justify-content: center;
  width:75%;
  text-align: center;
  text-transform: uppercase;
}

.btnspecs {
  display: flex;
  justify-content: center;
  align-items: center;
  width:25%;
  height: 50%;
  width: 50%;
}

/* Changes to the template existing elements */

#popupbody {
  display: none !important;
}

#popup {
  display: none !important;
}

.switch {
  display: none !important;
}

.switch input {
  display: none !important;
}

#stop-button {
  display: none !important;
}

#current-location {
  display: none !important;
}

.expand {
  display: none !important;
}
.expand input {
  display: none !important;
}

#settings {
  display: none !important;
}

#narrativebox {
  display: none !important;
}

#navigation {
  display:none!important;
  left:0 !important;
  top: 5px !important;
}

:root {
  --main-bg-color: rgb(61, 88, 70, 1);
}


.btncontainertop{
  display:flex;
  align-items: center;
  width:80px;
  height:auto;
  padding-top:25px;
  padding-bottom:15px;
  top:0;
  left:0;
  position: absolute;
  z-index: 99;
  background-color: rgb(255, 255, 255,0);
  border-radius: 0px 0px 5px 0px;
  transition: 500ms;
  filter:drop-shadow(0 0 0.15rem #88888844);
}

.btncontainerwrapper{
  display:flex;
  flex-direction: column;
  gap:10px;
  align-items: center;
  width:80%;
  height:80%;
  padding-left:10px;
}

.topbtn{
  display:flex;
  align-items: center;
  justify-content: center;
  border-radius: 5%;
  width:50px;
  height:50px;
  color:whitesmoke;
  background-color: var(--main-bg-color);
  cursor: pointer;
  transition: var(--quickanimation);
  font-size: 11px;
  user-select: none;
}

.topbtn:hover{
  transform:scale(1.1);
}

.botbtn{
  display:flex;
  align-items: center;
  justify-content: center;
  border-radius: 5%;
  width:35px;
  height:35px;
  color:whitesmoke;
  background-color: var(--main-bg-color);
  cursor: pointer;
  transition: var(--quickanimation);
  font-size: 8px;
  user-select: none;
}

.botbtn:hover{
  transform:scale(1.05);
}


.initialhidden{
  display:none;
}



.subdiv{
  transition: 700ms;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transform:translateX(-150%);
}

.visitoogle{
  height:100%;
  display:flex;
  align-items: center;
}

.toogleswitch {
  position: relative;
  display: inline-block;
  width: 76px;
  height: 20px;
}

.toogleswitch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.introfull{
  position:absolute;
  width:100vw;
  height:100vh;
  user-select: none;
  background-color: #e0e0e069;
  z-index: 99;
}

.introparent{
  width:100vw;
  height:100vh;
  display:flex;
  align-items: center;
  justify-content: center;
}

.introcontainer{
  position: absolute;
  background-color:rgb(255, 255, 255);
  filter: drop-shadow(0 0 2rem rgba(0, 0, 0, 0.5));
  width:15vw;
  min-width: 350px;
  max-width: 650px;
  height:auto;
  border-radius: 10px;
  display:flex;
  flex-direction: column;
  align-items: center;
  overflow:hidden;
  z-index: 99;
}

.pointparent{
  position:absolute;
  width:100vw;
  height:100vh;
  user-select: none;
  background-color: #e0e0e069;
  z-index: 99;
  display:none;
  align-items: center;
  justify-content: center;
}

.importparent{
  position:absolute;
  width:100vw;
  height:100vh;
  user-select: none;
  background-color: #e0e0e069;
  z-index: 99;
  display:none;
  align-items: center;
  justify-content: center;
}

.pointsection{
  gap:5px;
  box-shadow: var(--boxshadowsize);
  padding:10px;
  display:flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width:85%;
  background-color: white;
}

.importsection{
  overflow:hidden;
  gap:5px;
  box-shadow: var(--boxshadowsize);
  padding:10px;
  display:flex;
  flex-direction: column;
  width:85%;
  background-color: white;
}

.importcontrolpanel{
  overflow:hidden;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  border:1px solid #eaeaea;
  border-radius:3px;
  background-color: #f2f2f200;
  box-shadow: inset 0 0 2px #b8b8b881;
}


.inputfield{
  width: 100%;
  height: 100%;
  text-align: center;
  line-height: 75px;
  cursor: pointer;
}

.pointcontainer{
  position: absolute;
  background-color:rgb(255, 255, 255);
  filter: drop-shadow(0 0 2rem rgba(0, 0, 0, 0.5));
  width:auto;
  min-width: auto;
  max-width: 650px;
  height:auto;
  border-radius: 5px;
  display:flex;
  flex-direction: column;
  align-items: center;
  overflow:hidden;
  z-index: 99;
}

.pointcontainertopparent{
  background-color: #f8f8f8;
  width:100%;
  display:flex;
  flex-direction: column;
  align-items:center;
  justify-content: center;
  height:auto;
}

.pointtop{
  width:100%;
  background-color: white;
  display:flex;
  align-items:center;
  justify-content: center;
  box-shadow: 0px 0px 5px rgba(104, 104, 104, 0.253)
}

.pointcontainertop{
  background-color: white;
  box-shadow: var(--boxshadowsize);
  width:95%;
  margin:3%;
  height:auto;
  line-height: 25px;
  font-size: 12px;
  font-weight: 500;
  min-height: 50px;
  display:flex;
  align-items:center;
  justify-content: center;
  text-align: center;
}

.pointcontainercoreparent{
  background-color: #f8f8f8;
  width:350px;
  display:flex;
  flex-direction: column;
  align-items:center;
  justify-content: center;
  height:auto;
  gap:10px;
  padding-bottom: 35px;
}

.pointcontainercore{
  color:rgb(122, 122, 122);
  font-size: var(--smallfontsize);
  font-weight: var(--thinfont);
  width:80%;
  display:flex;
  align-items:center;
  justify-content: center;
}

.storedphotossection{
  gap:5px;
  box-shadow: var(--boxshadowsize);
  padding:15px;
  display:flex;
  flex-direction: column;
  align-items: center;
  width:85%;
  background-color: white;
  overflow-x:hidden;
  overflow-y: auto;
  max-height: 250px;
}


.storedphotoparent{
  display: flex;
  width: 100%;
  background-color: #ffffff;
  padding: 5px;
  height: 35px;
  border-radius: 5px;
  gap: 5px;
  box-shadow: var(--boxshadowsize);
  min-height: 35px;
}

.photoid{
  font-size: 12px;
  font-weight: 400;
  flex:1;
  background-color: #ffffff;
  display:flex;
  align-items: center;
  justify-content: center;
  max-width: 25px;
}

.photoname{
  font-size: 11px;
  font-weight: 400;
  flex:1;
  background-color: #ffffff;
  display:flex;
  padding-left:5px;
  padding-right:25px;
  align-items: center;
  white-space: nowrap; 
  overflow: hidden;
}

.photonote{
  flex:1;
  background-color: #6a7473;
  display:flex;
  align-items: center;
  justify-content: center;
}

.photodeletewrapper{
  box-shadow: var(--boxshadowsize);
  overflow:hidden;
  cursor: pointer;
  border-radius: 5px;
  flex:1;
  max-width: 30px;
  background-color: #ffffff;
  display:flex;
  align-items: center;
  justify-content: center;
}


.photodeletewrapper:hover :first-child{
  color:white;
  background-color: red;
  
}

.photodelete{
  color:red;
  width:100%;
  height:100%;
  overflow:hidden;
  display:flex;
  align-items: center;
  justify-content: center;
 
}

.photosetwrapper{
  box-shadow: var(--boxshadowsize);
  overflow:hidden;
  cursor: pointer;
  border-radius: 5px;
  flex:1;
  max-width: 30px;
  background-color: #ffffff;
  display:flex;
  align-items: center;
  justify-content: center;
}

.photosetwrapper:hover :first-child{
  color:white;
  background-color: green;
}

.photoset{
  color:green;
  width:100%;
  height:100%;
  overflow:hidden;
  display:flex;
  align-items: center;
  justify-content: center;
  
}

.inputbox{
  width:95%;
  height:35px;
}

.inputbox2{
  width:95%;
  height:35px;
  text-align: center;
}

/* Small changes to the upload icon */
input[type=file]::file-selector-button {
  background-color: white;
  color:black;
  border-style: solid;
  border-width: 1px;
  border-radius: 5px;
  height:35px;
  width:100px;
  box-shadow: var(--boxshadowsize);
  -webkit-transition: var(--quickanimation);
  transition: var(--quickanimation);
}

input[type=file]::file-selector-button:hover {
  color:white;
  background-color: var(--main-bg-color);
}


.intronotbtns{
  display:flex;
  flex-direction: column;
  align-items: center;
 
}

.intronotbottomtns{
  display:flex;
  flex-direction: column;
  align-items: center;
  filter: drop-shadow(0 0 2rem rgba(0, 0, 0, 0.25));
}

.infotop{
  width:100%;
  background-color: white;
  display:flex;
  align-items:center;
  justify-content: center;
  box-shadow: 0px 0px 5px rgba(104, 104, 104, 0.253)
}

.introcontainertopparent{
  width:100%;
  display:flex;
  flex-direction: column;
  align-items:center;
  justify-content: center;
  height:auto;
}

.introcontainertop{
  width:100%;
  padding:3%;
  height:auto;
  line-height: 25px;
  font-size: var(--introfontsize);
  font-weight: 500;
  min-height: 75px;
  display:flex;
  align-items:center;
  justify-content: center;
  text-align: center;
}

.introcontainercoreparent{
  width:85%;
  display:flex;
  flex-direction: column;
  align-items:center;
  justify-content: center;
  height:auto;
  gap:25px;
  padding-bottom: 50px;
  padding-top: 15px;
}

.introcontainercore{
  color: rgb(122, 122, 122);
  width:100%;
  font-size: var(--subinfofontsize);
  line-height: 30px;
  font-weight: var(--thinfont);
  display:flex;
  align-items:center;
  justify-content: center;
}

.introcontainercore2{
  color: rgb(122, 122, 122);
  width:100%;
  font-size: 11px;
  line-height: 22px;
  font-weight: var(--thinfont);
  display:flex;
  align-items:center;
  justify-content: center;
  
}

.introcontainerbottom{
  background-color: #BFC853;
  width:100%;
  min-height:50px;
  display:flex;
  overflow: hidden;
}

.introcontainerbottomleftparent{
  color: white;
  font-size: var(--subinfofontsize);
  line-height: 30px;
  font-weight: var(--thinfont);
  background-color: var(--main-bg-color);
  width:100%;
  height:50px;
  display:flex;
  justify-content: center;
  align-items: center;
}
.introcontainerbottomleft{
  width:50%;
  height:50px;
  display:flex;
  justify-content: center;
  align-items: center;
}

.introcontainerbottomrightparent{
  color: white;
  font-size: var(--subinfofontsize);
  line-height: 30px;
  font-weight: var(--thinfont);
  background-color: rgba(48, 112, 35,0.5);
  width:100%;
  height:50px;
  display:flex;
  justify-content: center;
  align-items: center;
}
.introcontainerbottomright{
  width:50%;
  height:50px;
  display:flex;
  justify-content: center;
  align-items: center;
}


.downloadbtn{
  width:50%;
  height:50px;
  display:flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(97, 138, 125, 0.5);
}


.introbtn{
  cursor: pointer;
  transition: var(--mediumanimation);
}

.introbtn:hover{
  transform:scale(1.005);
};