
/* Video */
[data-comp="portable-video"] .icon-wrapper {
	position: absolute;
	inset: 0;
	z-index: 2;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    justify-content: center;
    align-items: center;
    display: flex;
}
[data-comp="portable-video"] .icon-wrapper i {
	font-size: 4.8em;
	position: absolute;
	transition: opacity 0.7s;
    width: 1em;
    height: 1em;
    cursor: pointer;
    pointer-events: none;
    opacity: 0;
}
[data-comp="portable-video"] .icon-wrapper i span {
    pointer-events: none;
}

[data-comp="portable-video"][data-state="playing"] .icon-wrapper {
    top: 0;
    right: 0;
    translate: none;
    left: auto;
    width: 5rem;
    height: 5rem;
    margin: 3rem;
}
[data-comp="portable-video"][data-state="playing"] .icon-stop {
    opacity: 1;
    pointer-events: all;
}
[data-comp="portable-video"][data-state="playing"]:before {
    opacity: 0;
}
[data-comp="portable-video"][data-state="pause"] .icon-play1 {
    opacity: 1;
    pointer-events: all;
}
[data-comp="portable-video"][data-state="pause"]:before {
    content: "";
    width: 100%;
    height: 100%;
    z-index: 2;
    display: inline-block;
    position: absolute;
    background: linear-gradient(0deg, rgba(30, 47, 82, 0.65) 0%, rgba(30, 47, 82, 0.65) 100%);
    ;
    background-blend-mode: multiply, normal;
    transition: opacity .7s;
    opacity: .15;
    pointer-events: none;
}
@media only screen
and (min-width : 769px)
and (max-width : 1440px) {
}
@media only screen
and (min-width : 0)
and (max-width : 768px) {
}


/* @end */