
   
/* sound start*/

/* soundcite - v0.5.1 - 2017-07-10
 * Copyright (c) 2017 Tyler J. Fisher and Northwestern University Knight Lab
 */

/*PLAYER CHROME*/

@-webkit-keyframes spin {
    from { -webkit-transform: rotate(0deg); opacity: 0.4; }
    50%  { -webkit-transform: rotate(180deg); opacity: 1; }
    to   { -webkit-transform: rotate(360deg); opacity: 0.4; }
}

@-moz-keyframes spin {
    from { -moz-transform: rotate(0deg); opacity: 0.4; }
    50%  { -moz-transform: rotate(180deg); opacity: 1; }
    to   { -moz-transform: rotate(360deg); opacity: 0.4; }
}

@-ms-keyframes spin {
    from { -ms-transform: rotate(0deg); opacity: 0.4; }
    50%  { -ms-transform: rotate(180deg); opacity: 1; }
    to   { -ms-transform: rotate(360deg); opacity: 0.4; }
}

@-o-keyframes spin {
    from { -o-transform: rotate(0deg); opacity: 0.4; }
    50%  { -o-transform: rotate(180deg); opacity: 1; }
    to   { -o-transform: rotate(360deg); opacity: 0.4; }
}

@keyframes spin {
    from { transform: rotate(0deg); opacity: 0.2; }
    50%  { transform: rotate(180deg); opacity: 1; }
    to   { transform: rotate(360deg); opacity: 0.2; }
}



.soundcite-loaded {
    padding: 2px 16px 2px 0px;
    display: inline-block;
    cursor: pointer;
    width: 82%;
    margin-left: 62px;
    background: #fff4f6;

}

.soundcite-loaded:before {
    display: inline-block;
    content: "";
    vertical-align: -10%;
    margin-right: 0.25em;
}

.soundcite-loading:before {
    margin-right: 0.5em;
    font-size: 0.9em;
    position: relative;
    top: -.05em;
    height: 0.75em;    
    width: 0.75em;
    border: 2px solid #000;
    border-right-color: transparent;
    border-radius: 50%;
    -webkit-animation: spin 1s linear infinite;
    -moz-animation: spin 1s linear infinite;
    -ms-animation: spin 1s linear infinite;
    -o-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
}

.soundcite-play {
    position:relative;
}

.soundcite-play:before {
    content: ' ';
    position: absolute;
    width: 54px;
    height: 54px;
    border-radius: 100%;
    border: 1px solid #ff4960;
    top: 2px;
    left: -65px;
    background: url(assets/triangulo.png) no-repeat center center / 25px auto;
    background-color: #ff4960;
    box-shadow: 2px 2px 2px rgba(0,0,0,0.3);
}

.soundcite-pause {
    position: relative;
}

.dissapear {
    content: ' ';
    position: absolute;
    visibility: hidden;
    background: url(assets/pausa.png) no-repeat center center / 25px auto;
    
}
.soundcite-pause:before {
    content: ' ';
    position: absolute;
    width: 54px;
    height: 54px;
    border-radius: 100%;
    border: 1px solid #ff4960;
    top: 2px;
    left: -65px;
    background: url(assets/pausa.png) no-repeat center center / 25px auto;
    background-color: #ff4960;
    box-shadow: 2px 2px 2px rgba(0,0,0,0.3);
}



/*sound end*/

/* ------------ */
/*@media (max-width: 1024px) */
