* {
    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;
    font-weight: 700;
    src: url('../fonts/nunitosans_semibold.ttf');
}

.wrapper {
    position: relative;
    display: inline-block;
    width: 528px;
    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: flex-start;
    height: 100%;
    width: 100%;
    max-width: 100vw !important;
    max-height: 100vh !important;
    transform-origin: center;
    background-color: #fff;
}


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

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

.textPart{
    opacity: 0;
}

svg{
    font-size: 13px;
}


.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;
  }
  
  .closep, .zona{
    cursor: pointer;
  }

  .imgorg{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  
  /*FIN INFO*/