.youtube {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
}

.youtube__btn {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    border: none;
    border-radius: 50%;
    font-size: 1rem;
}

.youtube__icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.youtube__icon svg {
    width: 3em;
    height: 3em;
}

.youtube__icon span {
    display: flex;
}

.youtube__iframe-wrapper {
    display: flex;
    position: absolute;
    width: 100%;
    height: 100%;
}

.youtube__iframe {
    width: 100%;
    height: 100%;
}

.youtube__btn[aria-expanded="true"] {
    top: 100%;
    right: 0;
    background-color: red;
    color: var(--white);
    font-size: 0.6rem;
    width: 3rem;
    height: 3rem;
    border-radius: 0;
}

.youtube__btn[aria-expanded="true"] .youtube__play {
    display: none;
}

.youtube__btn[aria-expanded="false"] .youtube__close {
    display: none;
}