/* VIDEO TYPE */

.dd-type-of-content-video {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 15px;
}

/* VIDEO TYPE ITSELF */

.dd-type-of-content-video-itself {
    width: calc(100% - 20px);
    max-height: 450px;
    border-radius: 1rem;
    border: 1px solid rgb(255, 255, 255);
}

/* VIDEO TYPE ITSELF BUTTONS */

.dd-type-of-content-video-buttons {
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.dd-type-of-content-video-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 0;
    color: white;
    background-color: rgb(30,30,30);
    border-top: 1px solid rgba(255,255,255,0.07);
    border-bottom: 1px solid rgba(255,255,255,0.03);
    cursor: pointer;
}

.dd-type-of-content-video-button:hover {
    background-color: rgb(255, 0, 0);
}

.dd-type-of-content-video-button:active {
    background-color: rgb(226, 0, 0);
}

.dd-type-of-content-video-button-text {
    color: white;
    font-weight: 400;
}