* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: #999999;
    font-family: NunitoSans-Regular;
    max-height: 100vh !important;
    max-width: 100vw !important;
}

a{
    text-decoration: none;
}

:root {
    --main-color: #72BAB0;
}

@font-face{
    font-family: NunitoSans-Bold;
    src: url('../fonts/nunitosans_bold.ttf');
}

@font-face{
    font-family: NunitoSans-Light;
    src: url('../fonts/nunitosans_light.ttf');
}

@font-face{
    font-family: NunitoSans-LightItalic;
    src: url('../fonts/NunitoSans-LightItalic.ttf');
}

@font-face{
    font-family: NunitoSans-Regular;
    src: url('../fonts/NunitoSans-Regular.ttf');
}

@font-face{
    font-family: NunitoExtraLight;
    src: url('../fonts/nunitosans_extralight.ttf');
}

@font-face{
    font-family: NunitoSans-SemiBold;
    src: url('../fonts/nunitosans_semibold.ttf');
}

.wrapper {
    position: relative;
    display: inline-block;
    width: 436px;
    height: 545px;
    grid-auto-columns: 100%;
    background: rgb(255, 255, 255);
    text-align: left;
}
  
/* ARQUITECTURA CENTRAL */

.interactiu-wrapper{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-self: center;
    align-items: center;
    height: 100%;
    width: 100%;
    max-width: 100vw !important;
    max-height: 100vh !important;
    transform-origin: center;
    background-color: #cccccc;
}


.svg-container{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    align-content: center;
    width: 100%;
    height: 100%;
    background-color: white;
}

.btn, .mainBtn, .closeBtn{
    cursor: pointer;
}

.textPart{
    opacity: 0;
}

svg{
    font-size: 16px;
}


.footer-info{
    cursor: pointer;
    position: absolute;
    bottom: 10px;
    right: 10px;
  }
  
    
  /*-info-*/
  
  .blackBack{
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    background-color: rgba(0, 0, 0, 0.233);
    opacity: 0;
    transition: all 0.3s;
  }
  
  .info-wrapper{
    pointer-events: none;
    position: absolute;
    left: 0; 
    right: 0; 
    margin-left: auto; 
    margin-right: auto; 
    top: 0;
    bottom: 0;
    margin-top: auto; 
    margin-bottom: auto;
    width: 95%;
    height: 95%;
    z-index: 100000;
    background-color: rgb(255, 255, 255);
    border-radius: 2px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.348667);
    opacity: 0;
    transition: all 0.3s;
  }
  
  .info-texts-wrapper{
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    padding: 20px;
    align-items: flex-start;
    align-content: flex-start;
    justify-content: space-between;
  }
  
  .top-info-texts-wrapper{
    width: 100%;
  }
  
  .times svg {
    width: 15px;
    height: 15px;
    cursor: pointer;
  }
  
  .title{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    font-family: NunitoSans-SemiBold;
    font-size: 20px;    
  }
  
  .bolder{
    font-weight: 700;
  }
  .credits{    
    padding-top: 22px;
    font-size: 16px;
  }
  
  .copyright{
    font-size: 11px;
  }
  
  
  
  
  /*FIN INFO*/

  
/*LOADER*/

.loader-wrapper{
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  background-color: #f3f3f3;
  z-index: 1000;
}

.circle-wrap {
  margin: 150px auto;
  width: 130px;
  height: 130px;
  background: #fefcff;
  border-radius: 50%;
  border: 1px solid #cdcbd0;
}

.circle-wrap .circle .mask,
.circle-wrap .circle .fill {
  width: 130px;
  height: 130px;
  position: absolute;
  border-radius: 50%;
}

.circle-wrap .circle .mask {
  clip: rect(0px, 130px, 130px, 65px);
}

.circle-wrap .inside-circle {
  width: 122px;
  height: 122px;
  border-radius: 50%;
  background: #f3f3f3;
  line-height: 120px;
  text-align: center;
  margin-top: 4px;
  margin-left: 4px;
  color: #020202;
  position: absolute;
  z-index: 100;
  font-weight: 700;
  font-size: 2em;
}

.mask .fill {
  clip: rect(0px, 65px, 130px, 0px);
  background-color: #141414;
}

.mask.full,
.circle .fill {
  animation: fill ease-in-out 2s;
  transform: rotate(0deg);
}

@keyframes fill{
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(180deg);
  }
}
