/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

/* Don't kill focus outline for keyboard users: http://24ways.org/2009/dont-lose-your-focus */
a:hover, a:active {
    outline: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

body {
  font-family: 'Roboto', sans-serif;
  overflow: hidden;
  font-weight: 500;
  height: 100vh;
  display: flex;
  flex-direction: column;
  margin: 0;
}

a {
  text-decoration: none;
  color: #1679DD;
}

a:visited {
  text-decoration: none;
  color: #1679DD;
}

.main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: black; 
}

.modal {
  position: relative;
  background-color: #FFF;
  text-align: center;
  padding: 20px;
  border-radius: 12px;
  max-width: 70vw;
}

.modal::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid white;
  width: 0;
  height: 0;
}

.modal__header {
  font-size: 20px;
  margin-bottom: 19px;
}

.modal__description {
  font-size: 17px;
  color: #454545;
  margin-bottom: 15px;
}

.modal__divider {
  border-bottom: 2px solid #ECECEC;
  margin-bottom: 20px;
}

.modal__btn {
  font-size: 20px;
}


.controls {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: black;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.controls__timeline {
  width: 100%;
  height: 4px;
}

.controls__btns {
  padding: 7px 12px 12px;
  width: calc(100% - 24px);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.controls__time {
  color: #FFF;
  font-size: 20px;
}