*{
    --mainColor: #c22fba;
    --secondaryColor: #d5d738;
    --textShadow: 0 .2rem .2rem #a3239c, 0 .2rem .2rem #000;
}

.duinColor{
    color: var(--mainColor);
}

::-webkit-scrollbar{
    width: 6px;
}
::-webkit-scrollbar-button{

}
::-webkit-scrollbar-thumb{
    background: var(--mainColor);
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--mainColor);
}
::-webkit-scrollbar-track{

}
::-webkit-scrollbar-track-piece{
    background: white;
}
::-webkit-scrollbar-corner{

}
::-webkit-resize{

}

::-moz-selection { /* Code for Firefox */
    color: white;
    background: var(--grey);
}

::selection {
    color: white;
    background: var(--grey);
}




.gradient-box {
    color: #000;
    background: rgb(255, 255, 255,1);
    border-radius: 0px;
}
.gradient-box:before {
    background: linear-gradient(120deg,  var(--secondaryColor) 20%, var(--mainColor) 40%);
    margin: -10px;
}
#closeIcon img{
    filter: brightness(0);
}
a{
    color: var(--mainColor);
}

.arrowscene{
    filter: invert(41%) sepia(69%) saturate(6832%) hue-rotate(286deg) brightness(86%) contrast(89%);
}


.langSelector{
    text-shadow: var(--textShadow);
    text-transform: uppercase;
    font-size: 16px;
}
.langText>div{
    font-size: 16px;
    padding: 6px !important;
}
html[lang="es"] .langText.es{
    font-weight: bold;
}
html[lang="cat"] .langText.cat{
    font-weight: bold;
}

.centering{
    justify-content: center;
}

@media only screen and (max-width: 768px) {
    #modalHotspotDivContent{
        min-width: fit-content;
        padding: 2vh 3vw;
        padding-top: 40px;

        box-sizing: border-box;
    }
    .gradient-box{
        background: rgb(255, 255, 255,1);
    }
    .centering{
        height: inherit;
    }
    #modalHotspotInnerDivContent{
        overflow: auto;
        max-height: calc(100vh - 50px);
        padding-right: 10px;
    }
    .mainGeneral, .mainQuote{
        width: 100%;
        top: unset;
        position: relative;
        transform: none;
    }
}

@media only screen and (max-width: 992px){
    .device .centering{
        height: inherit;
    }
}