@font-face {
    font-family: "Roboto Regular";
    src: url("../fonts/Roboto-Regular.ttf");
}

@font-face {
    font-family: "Roboto Medium";
    src: url("../fonts/Roboto-Medium.ttf");
}

@font-face {
    font-family: "Roboto Light";
    src: url("../fonts/Roboto-Light.ttf");
}

@font-face {
    font-family: "Roboto Bold";
    src: url("../fonts/Roboto-Bold.ttf");
}

body {
    font-family: Roboto Regular;
}

.padding-zero {
    padding: 0;
}

#header {
    background-color: #000000;
}

a:hover,
a {
    text-decoration: none;
}
#playlist {
    flex-grow: 1;
    border: none;
    margin: 0;
    width: 100%;
    padding: 0;
    height: 100vh;
}
#playlist_content img {
    max-width: 60px;
}
.wrapper {
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.spacer {
    flex: 1;
}
.header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.header>div {
    width: auto;
}

.left-menu-ul svg {
    height: 45px;
    width: 45px;
    fill: #ffffff;
    transition: 0.2s;
    margin-right: 5px;
}

.left-menu-ul a {
    font-family: Roboto Regular;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    color: #ffffff;
    transition: 0.2s;
    font-size: 20px;
}

.left-menu-ul li {
    margin-left: 15px;
}

.left-menu-ul li:hover svg {
    fill: #0066df;
}

.left-menu-ul li:hover a {
    color: #0066df;

}

#footer {
    text-align: center;
    background-color: #0075ff;
    padding: 20px 0 30px 0;
}

.footer-up-div-ul a {
    color: #ffffff;
    transition: 0.2s;
    display: table;
    width: 100%;
}

.footer-lower-div {
    color: #ffffff;
    margin-top: 10px;
}

.footer-lower-div a {
    color: #ffffff;
    font-family: "Roboto Bold";
}

.footer-up-div-ul li {
    position: relative;
}

.footer-up-div-ul li::after {
    content: "";
    height: 100%;
    width: 2px;
    position: absolute;
    right: -3px;
    top: 0;
    background: #ffffff;
}

.footer-up-div-ul li:last-child::after {
    display: none;
}


  .card {
    background: white;
    padding: 60px;
    border-radius: 4px;
    box-shadow: 0 2px 3px #C8D0D8;
    display: inline-block;
    margin: 0 auto;
  }


  .videoWrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
  }
  .my-video-dimensions {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: 768px !important;
    max-height: 432px  !important;
  }